/*Übersicht
    00 - Allgemeines
    01 - Navigation
    02 - Startbildschirm
    03 - Footer
*/


:root{
    --dark-green: #025043;
    --light-green: #D8F196;
    --white: #FAFCF5;
    --red: #ff5959;
    --dark-gray:rgb(43, 43, 43);

    --gapS:24px;
    --gapM:32px;
    --gapL:48px;
    --gapXL:64px;
    --gapXXL:96px;

    --navHeight: 100px;

    --extraSmallFont: 20px;
    --smallFont: 24px;
    --mediumFont: 30px;
    --BigFont: 72px;


    --mobileBigFont: 36px;
}

@font-face {
    font-family: 'DM-Sans';
    src: url('/fileadmin/font/DMSans.ttf') format('truetype');
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'DM-Sans';
    src: url('/fileadmin/font/DMSans-Italic.ttf') format('truetype');
    font-style: italic;
    font-display: swap
}


*{
    font-family: DM-Sans;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    box-sizing: border-box;
}

::cue {
  color: var(--white);
  font-size: 0.9em;
  background: rgba(0,0,0,0.5);
}

.extbase-debugger{
    overflow: visible !important;
}

::-webkit-scrollbar {
    display: none;
}

.desk{
    display: flex;
}

.mob{
    display: none;
}

body{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--gapXL);
}

main{
    position: relative;
    margin-bottom: var(--navHeight);
}

h1{
    font-size: clamp(50px, 5vw, var(--BigFont));
    line-height: 1;
}

h3{
    font-size: clamp(30px, 3vw, var(--BigFont));
    line-height: 1.1;
    word-spacing: 10px;
    letter-spacing: -1px;
    font-weight: 400;
    color: var(--dark-gray);
}

p{
    font-size: clamp(16px, 2vw, var(--smallFont));
    line-height: 1.3;
    word-spacing: 4px;
    text-wrap: balance;
    font-weight: 400;
    margin: 0;
    color: var(--dark-gray);
    text-wrap: balance;
}

.content-elements{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10vh;
    top: var(--navHeight);
}

video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 1 !important;
}

/*01 Navigation */
nav{
    z-index: 100;
    padding: 0 0 0 var(--gapL);
    position: fixed;
    left: 0;
    width: auto;
    right: 0;
    height: var(--navHeight);
    display: flex;
    justify-content: space-between;
    background-image:linear-gradient(180deg,  var(--dark-green) 0%,  var(--dark-green) 100%, transparent 100%);
}

.mobileMenuOverlay{
    display: none;
    z-index: 100;
    height: 0px;
    position: fixed;
    overflow: hidden;
    top: var(--navHeight);
    height: 0px;
    background-color: var(--light-green);
    transition: height .3s ease-in;
    justify-content: space-between;
    align-items: center;
}

.mobileMenuOverlay.switched{
    background-color: var(--dark-green);
}

.mobileMenuOverlay.switched .mobileNavLinks, .mobileMenuOverlay.switched .profileLinks{
    transform: translateX(-100%);
}

.mobileMenuOverlay.switched .profileSwitch{
    outline: 1px solid var(--light-green);
}

.mobileMenuOverlay .mobileNavLinks{
    width: 100vw;
    position: relative;
    align-self: center;
    top: -20%;
    gap: 12px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.profileSwitch {
    background-color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--gapS);
    z-index: 10;
    color: var(--light-green);
    padding: 0 15px;
    min-height: 40px;
    min-width: 100px;
}

.mobileLoginLogoff{
    position: absolute;
    left: 50vw;
    transform: translate(-50%, -100%);
    bottom: var(--gapS);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gapS);
    color: var(--light-green);
}

.mobileLoginLogoffLoggedIn{
    position: absolute;
    bottom: 15%;
    display: flex;
    gap: var(--gapS);
    color: var(--light-green);
    width: 100vw;
    left: 0;
    justify-content: space-between;
    padding: 0 var(--gapS);
    flex-direction: column-reverse;
    align-items: center;
}

.userMenu{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--gapS);
}

.profile {
    height: auto;
}

.profileHover{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 14px;
    margin-left: 10px;
}

.pLine{
    height: 2px;
    width: 0px;
    background-color: var(--dark-green);
    border-radius: 5px;
    transition: width .3s ease, background-color .3s ease;
}

.pLine:nth-child(1){
    transition: width .3s ease .2s;
}

.pLine:nth-child(2){
    transition: width .3s ease .1s;
}

.profile:hover .pLine{
    width: 30px;
    background-color: var(--light-green);
}

.profile:hover .pLine:nth-child(2){
    width: 25px;
}

.userMenu .profile:first-child{
    outline: 1px solid var(--dark-green);
    min-height: 40px;
    border-radius: var(--gapS);
    padding: 0px 10px;
}

.mobileMenuOverlay .navLink{
    width: 100%;
    font-size: var(--mediumFont);
    color: var(--dark-green);
}

.logo{
    display: flex;
    gap: var(--gapS);
    align-items: center;
}

.logo img{
    width: clamp(120px, 10vw, 160px);
    height: auto;
    object-fit: contain;
}

.powered, .powered a{
    text-decoration: none;
    color: var(--light-green);
    font-style: normal;
    font-size: clamp(14px, 1vw, 16px);
}

.underLink{
    margin-left: 3px;
    position: relative;
    text-decoration: none;
}

.underLink::before{
    position: absolute;
    left: auto;
    right: 0;
    background-color: var(--light-green);
    bottom: 0px;
    height: 2px;
    border-radius: 2px;
    width: 0px;
    content: '';
    transition: width .3s ease;
}

.underLink:hover::before{
    width: 100%;
    left: 0;
    right: auto;
}

.navLinks .profile{
    width: clamp(100px, 10vw, 200px);
    position: relative;
}

.navLinks, .profileLinks{
    display: flex;
    justify-content: flex-end;
}

.profileLink.logOff{
    gap: 10px;
}

.navLink.active, .profileLink.active{
    font-style: italic;
    text-decoration: underline;
    font-weight: 900;
}

.navLink::before, .profileLink::before, .profile::before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    height: 100%;
    width: 0%;    
    background-color: var(--light-green);
    transition: width 0.4s ease-in-out;
    z-index: -1;
}

.profileLink::before{
    background-color: var(--dark-green) !important;
}

.profile::before{
    width: 100%;
    left: auto;
    right: 0;
}

.profile:hover::before{
    width: 0%;
}

.navLink:hover::before, .profileLink:hover::before{
    width: 100%;    
}

.navLink, .profileLink{
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: center;
    text-align: center;
    color: var(--light-green);
    border-left: 1px solid var(--light-green);
    height: 100%;
    font-size: clamp(14px, 1vw, 16px);
    width: clamp(100px, 10vw, 200px);
    white-space: nowrap;
    text-decoration: none;
    transition: none;
    transform-origin: right center;
    z-index: 1;
}

.profileLinks{
    background-color: var(--light-green);
}

.mobileMenuOverlay.switched .profileLink.profileLink{
    color: var(--light-green);
}

.profileLink.profileLink{
    color: var(--dark-green);
    border-left: 1px solid var(--dark-green);
}

.navLinks.hidden .navLink{
    width: 0px;
}

.profileLinks  .profileLink{
    width: 0px;
}

.profileLinks.active .profileLink{
    width: clamp(100px, 10vw, 200px);
}

.navLink:hover{
    color: var(--dark-green);
}

.profileLink.profileLink.profileLink:hover{
    color: var(--light-green);
}

.profile{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    color: var(--dark-green);
    text-decoration: none;
    font-size: clamp(14px, 1vw, 16px);
    cursor: pointer;
    border-left: 1px solid var(--dark-green);
}

.profile:hover{
    color: var(--light-green);
    transition: color .5s ease;
}

.profile.log{
    border-left: 1px solid var(--light-green);
}

.profile img{
    height: clamp(30px, 3vw, 50px);
    width: auto;
    outline: 1px solid var(--light-green);
    border-radius: 50%;
    object-fit: contain;
    transform-origin: bottom center;
}

.profileLink img{
    height: 25px;
    width: auto;
    object-fit: contain;
    transform-origin: bottom center;
}

.profile:hover img, .profileLink:hover img{
    animation: wiggle 1s ease-in-out;
}

@keyframes wiggle {
    0%{transform: rotate(0deg);}
    25%{transform: rotate(10deg);}
    50%{transform: rotate(-10deg);}
    75%{transform: rotate(10deg);}
    100%{transform: rotate(0deg);}
}

/* 02 - Startbildschirm*/

.homeScreen{
    position: relative;
    left: 0;
    width: auto;
    right: 0;
    height: calc(100vh - var(--navHeight));
    overflow: hidden;
}

.homeScreen .background{
    width: 100%;
    height: 100%;
}

.background{
    width: auto;
    position: absolute;
    left: 0;
    top: 0;
    height: 100vw;
}

.background img{
    width: 100%;
    object-fit: cover;
}

.homeScreen .background img{
    height: 100%;
}

.background .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(18deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 40%;
}

.content{
    display: flex;
    padding: 0 var(--gapL);
    position: relative;
    left: 0;
    right: 0;
    width: auto;
    justify-content: space-between;
    height: 100%;
    padding-bottom: var(--gapL);
    align-items: flex-end;
}

.homeText{
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: clamp(50px, 5vw, 120px);
    line-height: clamp(50px, 8vw, 120px);
    color: var(--light-green);
    margin: 0;
}

.line{
    display: flex;
    justify-content: space-between;
    gap: var(--gapL);
}

.word{
    position: relative;
    display: inline-block;
}

.imgWord{
    position: relative;
    display: inline-block;
    flex-grow: 1;
    height: clamp(50px, 8vw, 120px);
    width: clamp(200px, 20vw, 400px);
    overflow: hidden;
    border-radius: 24px;
}

.imgWord img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gslide-media.fullscreen video{
    border-radius: 0;
}

.homeVideoContainer{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--gapM);
     width: calc((100% / 12) * 3 );
}

.homeVideo{
    outline: 2px solid var(--light-green);
    text-decoration: none;
    position: relative;
    width: 100%;
    background-color: var(--light-green);
    height: 250px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: var(--gapM);
}

.homeVideo video{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homeVideo video::-webkit-media-controls {
    display: none;
  }

.hover-overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: transparent;
    transition: background-color .4s ease-in-out;
    z-index: 1;
}

.hover-overlay svg{
    height: 100%;
    z-index: 2;
}

.homeVideo:hover .hover-overlay{
    background-color: var(--dark-green);
}

.homeVideo .hover-overlay svg .path1{
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset .4s ease-in-out;
}

.homeVideo:hover .hover-overlay svg .path1{
    stroke-dashoffset: 0;
}

.homeVideo .hover-overlay svg .path2{
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    transition: stroke-dashoffset .3s ease-in-out .2s;
}

.homeVideo:hover .hover-overlay svg .path2{
    stroke-dashoffset: 0;
}

.videoText{
    font-size: 24px;
    position: relative;
    z-index: 1;
    color: var(--light-green);
}

.videoThumbnail{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playBtn{
    position: relative;
    width: 70px;
    height: 70px;
    object-fit: contain;
    z-index: 1;
    outline: 2px solid var(--light-green);
    border-radius: 50%;
}

/* 03 - Teasertext*/

.bigText{
    left: 0;
    right: 0;
    width: auto;
    position: relative;
    height: auto;
    padding: var(--gapXL) var(--gapL);
    display: flex;
    flex-direction: column;
    gap: var(--gapXL);
}

.bigText h1, .aboutHeadline p{
    margin: 0 0 var(--gapL);
    font-size: clamp(30px, 3vw, var(--BigFont));
    line-height: 1.1;
    word-spacing: 10px;
    letter-spacing: -1px;
    font-weight: 400;
    color: var(--dark-gray);
}

.blocks{
    display: flex;
    width: 100%;
    gap: var(--gapL);
}

.blocks > p, .blocks > div, .blocks > a{
    flex: 1;
}

.CTA {
    position: relative;
    text-decoration: none;
    background-image: linear-gradient(70deg, var(--dark-green) 0%, var(--light-green) 0%);
    display: flex;
    align-items: center;
    padding: var(--gapS);
    border-radius: var(--gapS);
    height: 80px;
}

.CTA:hover h5{
    color: var(--light-green);
}

.innerBlock{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.divideLine{
    width: 100%;
    height: 1px;
    background-color: var(--dark-gray);
}

.stats{
    display: flex;
    height: var(--smallFont);
    flex-wrap: wrap;
    gap: 10px;
}

.stats span{
    background-color: var(--light-green);
    padding: 4px 11px;
    height: 30px;
    max-height: none;
    border-radius: var(--gapS);
}

.stroke-overlay{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    background-color: transparent;
    z-index: 1;
}

.CTA .stroke-overlay svg .path1, .btn .stroke-overlay svg .path1{
    stroke-dasharray: 1000;
    stroke: var(--dark-green);
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset .4s ease-in-out;
}

.CTA:hover .stroke-overlay svg .path1, .btn:hover .stroke-overlay svg .path1{
    stroke-dashoffset: 0;
}

.CTA .stroke-overlay svg .path2, .btn .stroke-overlay svg .path2{
    stroke: var(--dark-green);
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    transition: stroke-dashoffset .3s ease-in-out .2s;
}

.CTA:hover .stroke-overlay svg .path2, .btn:hover .stroke-overlay svg .path2{
    stroke-dashoffset: 0;
}

h5{
    font-size: var(--mediumFont);
    line-height: 1.2;
    word-spacing: 10px;
    letter-spacing: -1px;
    font-weight: 400;
    color: var(--dark-green);
    transition: color .5s ease;
    transform-origin: 0 0;
}

.teaser{
    margin-top: var(--gapXXL);
    display: flex;
    flex-direction: column;
    gap: var(--gapXL);
    padding: 0 var(--gapM);
    position: relative;
    z-index: 1;
}

.teaserTop{
    display: flex;
    width: 100%;
    height: auto;
    gap: var(--gapS);
}

.teaserTop p{
    flex: 6;
}

.teaserTop img{
    flex: 4;
    height: 30vh;
    object-fit: cover;
    border-radius: var(--gapS);
}

.teaserAccordion{
    display: flex;
}

.teaserTopics{
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.teaserTopic{
    border-radius: 16px;
    height: 40px;
    width: calc(100% - var(--gapM));
    display: flex;
    align-items: center;
    background-color: var(--light-green);
    color: var(--dark-green);
    padding: 0 12px;
    position: relative;
    cursor: pointer;
    transition: width .2s ease;
}

.teaserTopic:hover{
    width: calc(100% - 12px);
}

.teaserTopic.open{
    width: 100%;
    border-radius: 16px 0 0 16px;
}

.teaserDescriptions{
    min-height: 100%;
    flex: 7;
}

.teaserDescription{
    display: none;
    position: relative;
}

.teaserDescription.open{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: var(--gapS);
    background-color: var(--light-green);
    border-radius: 0 var(--gapS) var(--gapS) var(--gapS);
}

.teaserTopic.open .corner{
    opacity: 1;
}

.corner{
    display: block;
    position: absolute;
    right: 0;
    bottom: -16px;
    height: 16px;
    width: 16px;
    opacity: 0;
    transition: opacity 0s ease .3s;
}

.corner.lastCorner{
    transform: rotate(90deg);
    bottom: auto;
    top: -16px;
}

.corner svg{
    position: inherit;
    fill: var(--light-green);
    height: 100%;
    width: 100%;
}

.ptHeader{
    left: var(--gapM);
    margin-bottom: var(--gapM);
    position: relative;
}

.practicalTrainings{
    display: flex;
    position: relative;
    gap: var(--gapM);
    height: 30vh;
    width: auto;
    left: var(--gapM);
}

.practicalTraining{
    display: flex;
    flex-direction: column;
    padding: var(--gapS);
    justify-content: space-between;
    border-radius: var(--gapS);
    background-color: var(--dark-green);
    color: var(--light-green);
    height: 100%;
    width: calc(30vw - 2*var(--gapM));
}

.topRow, .bottomRow{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.bottomRow{
    align-items: flex-end;
}

.topRow p{
    font-size: var(--mobileBigFont);
    font-weight: 600;
    color: var(--light-green);
}

.topRow .infos{
    display: flex;
    flex-direction: column;
    color: var(--light-green);
    text-align: right;
}

.bottomRow .place{
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 60%;
}

.bottomRow .place svg{
    height: 20px;
    width: 20px;
    fill: none;
    stroke: var(--light-green);
    stroke-width: 3px;
}

.bottomRow a{
    width: auto;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 6px 0 12px;
    border-radius: 16px;
    background-color: var(--light-green);
    color: var(--dark-green);
    text-decoration: none;
}

.submitOverlay{
    height: 30px;
    width: 30px;
    margin-left: 5px;
}

.buyCourseSubmit svg .path1{
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset .3s ease .1s;
}

.buyCourseSubmit:hover svg .path1{
    stroke-dashoffset: 0;
}

.buyCourseSubmit svg .path2{
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    transition: stroke-dashoffset .2s ease .2s;
}
.buyCourseSubmit:hover svg .path2{
    stroke-dashoffset: 0;
}

.booked{
    display: flex;
    gap: 6px;
    height: 30px;
    align-items: center;
    outline: 1px solid var(--light-green);
    padding: 0 6px;
    border-radius: 12px;
    white-space: nowrap;
}

.booked svg{
    height: 25px;
    width: 25px;
    fill: var(--light-green);
}

.submitOverlay svg{
    fill: none;
    stroke: var(--dark-green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 35px;
}

/*Forum*/

.forumTeaser{
    padding: var(--gapXXL) var(--gapS);
    left: var(--gapM);
    width: calc(100% - 2* var(--gapM));
    border-radius: var(--gapS);
    overflow: hidden;
    position: relative;
}

.forumTeaserContent{
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: var(--gapM);
    z-index: 2;
}

.forumTeaserContent h3{
    color: var(--light-green);
}

.forumTeaserContent p{
    color: var(--white);
    max-width: 60%;
    text-align: center;
}

.forumTeaserBackground{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.forumTeaserOverlay{
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.forumTeaserBackground img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.forumTeaserTags{
    display: flex;
    flex-wrap: wrap;
    max-width: 60%;
    gap: var(--gapS);
    justify-content: center;
}

.fTT{
    height: 40px;
    display: flex;
    align-items: center;
    background-color: var(--light-green);
    border-radius: 12px;
    padding: 0 12px;
}

.icon svg{
    width: 50%;
    height: 50%;
}


/* 04 - Image Galerie */
.imgGal{
    height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-self: center;
}

.slider{
    width: 100vw;
    pointer-events: auto;
    cursor: none;
}

.slider-wrapper{
    display: flex; 
    width: max-content;
}

.slider-item{
    display: inline-block;
    width: 46vw;
    padding: 0 3vw;
}

.slider-item figure{
    position: relative;
    padding-bottom: 50%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--gapS);
}

.slider-item figure img{
    position: absolute;
    width: 100%;
    height: 100%; /* Füge das hinzu */
    object-fit: cover;
}

.slider-progress{
    position: absolute;
    bottom: 0;
    left: var(--gapS);
    right: var(--gapS);
    width: auto;
    height: 2px;
    margin: 2em;
    background-color: var(--light-green);
}

.slider-progress-bar{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--dark-green);
    transform: scaleX(0%);
    transform-origin: left;
}

.sliderCursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;              /* Größe des Cursor-Kreises */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6); /* halbtransparenter Kreis */
  backdrop-filter: blur(4px);                 /* optional: weiches Glas-Feeling */
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10; /* sicherstellen, dass der Cursor über den Bildern liegt */
}

.sliderCursor img {
  width: 45px;              /* Pfeilgröße */
  height: 45px;
  transform-origin: center center;
  transition: transform 0.2s ease;
}

/* 05 - Preise */

.prices{
    display: flex;
    justify-content: space-between;
    position: relative;
    left: 0;
    right: 0;
    width: auto;
    height: auto;
}

.price-content{
    display: flex;
    flex-direction: column;
    gap: var(--gapXXL);
    align-items: flex-start;
    flex: calc(8 / 12);
    padding: var(--gapXL) 0 var(--gapXL) var(--gapXL) ;
}

.price-content h1{
    color: var(--dark-green);
}

.price-text p{
    font-size: var(--extraSmallFont);
    margin: 0;
}

.courses{
    position: sticky;
    top: var(--navHeight);
    height: calc(100vh - var(--navHeight));
    width: calc((7 / 12)* 100%);
    display: flex;
    flex-direction: column;
    right: 0;
    justify-content: space-between;
    align-items: normal;
}

.course{
    position: relative;
    box-sizing: border-box;
    margin: 0 0 0 20px;
    flex: 1;
    color: var(--dark-green);
    padding: var(--gapS);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: auto;
    right: 0;
    left: 0;
    transition: margin .5s ease;
    text-decoration: none;
}

.course .backgroundContent{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--gapS);
    z-index: -1;
}

.course .backgroundContent img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course .backgroundContent .backgroundOverlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(216, 241, 150, 1) 0%, rgba(2, 80, 67, 0.25) 100%);
    pointer-events: none;
}

.course:hover{
    margin: 0px 0px;
}

.course:hover .btn, .course:hover .btn{
    background-color: var(--light-green);
    color: var(--dark-green);
}

.course:hover .btn .stroke-overlay svg .path1, .course:hover .btn .stroke-overlay svg .path2{
    stroke-dashoffset: 0;
}

.course.free{
    background-color: var(--white);
    border: 1px solid var(--dark-green);
}

.top-content, .bottom-content{
    display: flex;
    justify-content: space-between;
}

.top-content{
    color: var(--light-green);
    align-items: flex-start;
}

.bottom-content{
    align-items: flex-end;
    justify-content: flex-end;
}

.tags{
    display: flex;
    position: relative;
    gap: 15px;
    row-gap: 15px;
    flex-wrap: wrap;
    max-width: 80%;
    justify-content: flex-end;
}

.tags .hl{
    position: absolute;
    top: -35px;
    right: 5px;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 600;
    color: var(--dark-green);
}

.tag{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    color: var(--light-green);
    position: relative;
    padding: 0 10px;
    background-color: var(--dark-green);
    border: 1px solid var(--dark-green);
    border-radius: var(--gapS);
    font-size: clamp(14px, 1vw, 16px);
}

span.tag::before, .stats span::before {
    content: '•';
    padding-right: 9px;
}

.tag.soon::before{
    content: "bald";
    font-size: 9px;
    background-color: rgb(223, 6, 6);
    color: white;
    padding: 3px 6px;
    border-radius: var(--gapS);
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(20%, 60%);
}

.tag .info{
     position: absolute;
    left: -10px;
    bottom: -10px;
    width: 20px;
    height: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    background-color: rgb(0, 174, 255);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.tag .info span{
    font-size: 12px;
}

.tag .info .infoText{
    display: none;
}

.tag:hover .info .infoText{
    display: block;
    position: absolute;
    top: -98px;
    left: -190px;
    background-color: rgb(0, 174, 255);
    padding: 12px;
    border-radius: 12px;
}

.price{
    line-height: 0.5;
}

.top-content .column .price:nth-child(2){
    margin-top: var(--gapS);
}

.price:nth-child(3){
    line-height: 1.2;
}

.price span{
    font-size: clamp(var(--extraSmallFont), 2vw, var(--mediumFont));
}

.btn{
    position: relative;
    border-radius: var(--gapS);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding: 0px 70px 0 15px;
    background-color: var(--dark-green);
    color: var(--light-green);
    border: 1px solid var(--dark-green);
}

.btn:hover{
    background-color: var(--light-green);
}

.FAQ{
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.Q{
    display: flex;
    flex-direction: column;
    background-color: var(--light-green);
    padding: 10px var(--gapS);
    cursor: pointer;
    border-radius: var(--gapS);
    color: var(--dark-green);
}

.Q,.F{
    width: 100%;
    display: flex;
    align-items: center;
}

.A{
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.Q.open .A{
    height: 200px;
    padding: 10px;
}

.Q .A{
    height: 0px;
    padding: 0px;
    transition: height .5s ease, padding .5s ease;
}

.pricesOverlay{
    position: absolute;
    bottom: var(--gapS);
    left: var(--gapS);
    height: 100px;
    width: 100px;
}

.pricesOverlay svg{
    fill: none;
    stroke: var(--dark-green);
    stroke-width: 50px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.course svg .path1{
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset .3s ease .1s;
}

.course:hover svg .path1{
    stroke-dashoffset: 0;
}

.course svg .path2{
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    transition: stroke-dashoffset .2s ease .2s;
}
.course:hover svg .path2{
    stroke-dashoffset: 0;
}

/*03 - Footer*/

footer{
    border-top: 1px solid var(--dark-green);
    height: fit-content;
    display: flex;
    left: 0;
    right: 0;
    width: auto;
    flex-direction: column;
    padding: var(--gapS);
    background-color: var(--light-green);
    color: var(--dark-green);
    justify-content: space-between;
}

.footer-top{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-end;
}

.footer-bottom .powered,.footer-bottom  .powered a{
    color: var(--dark-green);
}

.footer-bottom .underLink::before{
    background-color: var(--dark-green);
}

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

footer a, footer span{
    display: block;
    text-align: left;
    text-decoration: none;
    padding: 4px 0;
}

footer span a{
    padding: 0;
}

footer a span {
    display: flex;
    transition: transform .2s ease;
    white-space: nowrap;
    color: var(--dark-green);
    align-items: center;

}

footer a span::after, footer a span::before{
    content: '\219D';
    overflow: hidden;
    transition: width .2s ease;
    display: inline-block;
}

footer a span::after{
    margin-left: 4px;
    width: 15px;
}

footer a span::before{
    margin-right: 4px;
    width: 0px;
}

footer a:hover span::after{
    width: 0px;
}

footer a:hover span::before{
    width: 15px;
}

.column:has(.nws){
    gap: 10px;
}

.nws{
    position: relative;
    display: flex;
}

.nws form{
    display: flex;
    width: 100%;
    align-items: center;
    gap: var(--gapS);
}

footer input{
    border: 0px;
    background: none;
    z-index: 20;
    position: relative;
    flex: 1;
    outline: 1px solid var(--dark-green);
}

input:focus-visible {
    outline: 0;
}

footer button{
    border: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    padding: 6px;
    background: none;
    transform: rotate(0deg);
    transition: transform .2s ease, outline .2s ease;
}

footer button:hover{
    outline: 1px solid var(--dark-green);
    transform: rotate(-45deg);
    transform-origin: center center;
    border-radius: 50%;
}

.deactivate{
    display: none;
}

/* 04 - Kursinhalt */

/* 04.01 - Kurseinstieg */

.courseHeader{
    margin-bottom: -10vh;
    position: relative;
}

.cH-Headline{
    width: 100%;
    height: 35vh;
    display: flex;
    position: relative;
    align-items: flex-end;
    background-color: var(--dark-green);
    color: var(--light-green);
    padding: var(--gapS);
}

.cH-background{
    position: absolute;
    left: -10%;
    top: -80%;
    width: 110%;
    opacity: 35%;
    pointer-events: none;
}

/* 04.02 - Kursstuktur */

.courseStructure{
    display: flex;
    left: 0;
    right: 0;
    width: auto;
    padding: var(--gapL);
    justify-content: space-between;
    gap: var(--gapL);
    z-index: 1;
}

.accordion{
    flex: calc(1/3 * 2);
    display: flex;
    flex-direction: column;
}

.courseStructure .homeVideo{
    flex: calc(1/3 * 1);
}

.accordion .topic{
    display: flex;
    flex-direction: column;
    margin-bottom: var(--gapS);
    cursor: pointer;
}

.accordion .topic .infos{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-green);
}

.topic > .infos {
    border-bottom: 1px solid var(--dark-green);
}

.infos > .time{
    display: flex;
    align-items: center;
    gap: var(--gapS);
}

.topic > .infos span{
    font-size: var(--smallFont);
}

.infos .arrow{
    border-top: 2px solid var(--dark-green);
    border-left: 2px solid var(--dark-green);
    transform: rotate(45deg);
    transform-origin: top left;
    width: 9px;
    height: 9px;
}

.topic.open .infos .arrow{
    transform: rotate(225deg) translate(-7px, -8px);
}

.subs{
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    height: 0;
    transition: height .4s ease;
}

.open .subs{
    height: auto;
}

.subTopic{
    text-decoration: none;
    width: 100%;
    position: relative;
    height: 50px;
    border-bottom: 1px solid var(--light-green);
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.subTopic .description{
    display: none;
}

.videoPlayer.teaserNoAccess .subTopic::after{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: url('/fileadmin/icons/lock.svg');
    background-size: contain;
}

#videoTitle{
    font-weight: 500;
    color: var(--dark-green);
}

.teaserNoAccess{
    margin-bottom: var(--gapXL);
}

.subTopic.active {
  background-color: #d8f196;  /* Helles Grün als Highlight */
  font-weight: bold;
  border-left: 4px solid #a0c000;
  padding-left: 10px;
}

.videoPlayer.teaserNoAccess .topic:first-child .subTopic:first-child::after{
    background: none;
}

.subTopic .infos span{
    font-family: var(--extraSmallFont);
}

.courseStructure .homeVideo{
    position: sticky;
    top: calc(75px + var(--navHeight) + var(--gapS));
}

/* 04.03 - Kurs Erfolge */

.imgGal.learnings{
    box-sizing: border-box;
    overflow: hidden;   /* Verhindert, dass der Inhalt überläuft */
    left: 0;
    right: 0;
    width: auto;
    position: relative;
    height: 85vh;
    margin-bottom: 10vh;
}

.slider-wrapper.learningsContainer{
    width: max-content;
    display: flex;
    gap: var(--gapL);
    padding: 0 var(--gapL);
    will-change: transform;
}

.learning{
    width: 30vw;
    border-radius: var(--gapS);
    display: flex;
    height: 75vh;
    border: 1px solid var(--dark-green);
    flex-direction: column;
    padding: var(--gapS);
    justify-content: space-between;
    transform: translateY(0);
    opacity: 1;
    overflow: hidden;
    transition: transform 0.3s, opacity 0.3s;
}

.learning h5{
    color: var(--light-green);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.learning img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    height: 60%;
    width: 100%;
    object-fit: cover;
}

.learning p{
    font-size: var(--extraSmallFont);
}

/* 05 - About */

.aboutHeader{
    position: relative;
    left: 0;
    right: 0;
    width: auto;
    height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20vh;
}

.aboutHeaderText{
    display: flex;
    flex-direction: column;
    z-index: 2;
    color: var(--light-green);
    transform: translateY(-10vh);
}

.aboutHeaderText h1, .aboutHeaderText h5{
    color: var(--light-green);
    margin: 0;
}

.aboutHeaderText h5:last-child{
    text-align: right;
}

.aboutHeaderText h1{
    font-size: 120px;
}

.aboutBackground{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


.aboutBackground video{
    width: 100%;
    z-index: -1;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    position: relative;
    border-radius: 0px;
}

.aboutBackground::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .1;
}

.aboutBackground video::-webkit-media-controls{
    display: none !important;
    opacity: 0;
}

.aboutUsVideo{
    position: absolute;
    left: 50%;
    bottom: -10%;
    transform: translateX(-50%) scale(1);
    width: 48vw;
    height: 27vw;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    outline: 2px solid var(--light-green);
}

.aboutUsVideo::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px; /* Größe deines Icons */
    height: 64px;
    background-image: url('/fileadmin/icons/DAF-Play.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none; /* verhindert Klick-Blockade */
}

.aboutUsVideo img{
    width: 100%;
    height: 100%;
}

.aboutUsVideo .defaultBackground{
    width: 100%;
    height: 100%;
    background-color: var(--light-green);
}

.aboutHeadline p{
    font-size: var(--mediumFont);
    text-wrap: balance;
    text-align: center;
    width: auto;
    position: relative;
    left: 0;
    right: 0;
    padding: 0 var(--gapXL);
    margin-bottom: var(--gapS);
}

.questions{
    display: flex;
}

.question{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: var(--gapS);
    background-color: var(--light-green);
    flex-direction: column;
    border-radius: var(--gapS);
    gap: var(--gapS);
}

.questions form{
    display: flex;
    flex-direction: column;
    gap: var(--gapS);
    min-width: 100%;
    display: none;
}

.questions form.active{
    display: flex;
}

.questions button.btn{
    width: 300px;
    padding: 0;
    align-self: flex-end;
}

.question input[type="checkbox"]{
    opacity: 0;
    width: 0;
    height: 0;
}

.question input:checked ~ .checkmark{
    background: var(--dark-green);
}

.question input:checked ~ .checkmark::after{
    content: '';
    position: absolute;
    left: 34%;
    top: 2%;
    width: 8px;
    height: 17px;
    border-bottom: 2px solid var(--light-green);
    border-right: 2px solid var(--light-green);
    transform: rotate(45deg);
}

.question textarea{
    width: 100%;
    min-height: 100px;
    outline: 0;
    background: none;
    resize: vertical;
    border: 0;
    background-color: var(--white);
    border-radius: var(--gapS);
    padding: var(--gapS);
    font-family: inherit;
    color: var(--dark-green);
}

.question textarea:focus-visible {
    outline: 1px solid var(--dark-green);
}

.checkmark{
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    display: flex;
    border: 1px solid var(--dark-green);
    border-radius: 3px;
}

.answerArea{
    display: flex;
    flex-direction: column;
    gap: var(--gapS);
}

.answerArea legend{
    margin: 0;
    color: var(--dark-green);
}

.answers{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.answers label{
    position: relative;
    align-items: center;
    gap: 36px;
}

.answers label span{
    margin-left: var(--gapM);
}

.quizPopup{
    z-index: 80;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(43, 43, 43, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.quizPopup .popup{
    width: 600px;
    height: 200px;
    background-color: var(--light-green);
    display: flex;
    flex-direction: column;
    padding: var(--gapS);
    border-radius: var(--gapS);
    justify-content: space-between;
    position: relative;
}

.quizPopup.fail .popup{
    background-color: var(--red);
}

.popup .btn{
    padding: 0 var(--gapS);
}

.quizPopup.fail .popup .btn{
    background-color: var(--red);
    color: var(--dark-green);
}

.quizPopup.fail .popup .btn:hover{
    background-color: var(--light-green);
}

.popup .btn.rpt{
    position: absolute;
    right: var(--gapS);
    top: var(--gapS);
    height: 50px;
    width: 50px;
    background-color: var(--light-green);
    color: var(--dark-green);
    padding: 0;
}

.fullwidthImg{
    position: relative;
    left: var(--gapXXL);
    width: calc(100% - 2*var(--gapXXL));
    height: auto;
    border-radius: var(--gapS);
    overflow: hidden;
}

.fullwidthImgFile{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* 06 - Speaker */

.speaker{
    position: relative;
    left: 0;
    right: 0;
    width: auto;
    padding: 0 var(--gapL);
    display: flex;
    gap: var(--gapS);
    align-items: center;
}

.speaker:nth-child(odd){
    flex-direction: row-reverse;
}

.speakerImg{
    height: auto;
    width: 30vw;
    max-height: 60vh;
    object-fit: contain;
}

.speakerInfos{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.speakerInfos h3{
    margin: 0;
    color: var(--dark-green);
}

.speakerInfos span{
    color: var(--dark-gray);
    font-style: italic;
    font-weight: 300;
    margin-bottom: var(--gapM);
}

.speakerInfos p{
    color: var(--dark-green);
}

.speakerInfos p:not(:last-child){
    margin-bottom: var(--gapS);
}

/* 07 - Call to Action */

.callToAction{
    position: relative;
    display: flex;
    left: 0;
    right: 0;
    margin: 0 var(--gapS);
    border-radius: var(--gapS);
    overflow: hidden;
    align-items: flex-end;
    justify-content: space-between;
    height: 60vh;
    padding: var(--gapS);
    text-decoration: none;
}

.ctaBackground{
    background-color: var(--light-green);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
    z-index: -1;
}

.ctaButton{
    width: 400px;
    height: 400px;
    padding: 20px 30px 30px 20px;
    transform: translate(150%, 20%) rotate(60deg);
    border-radius: 50%;
    background-color: var(--dark-green);
    transition: transform .5s ease;
}

.callToAction .ctaButton svg .path1{
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset .4s ease-in-out .2s;
}

.callToAction:hover .ctaButton svg .path1{
    stroke-dashoffset: 0;
}

.callToAction .ctaButton svg .path2{
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    transition: stroke-dashoffset .3s ease-in-out .3s;
}

.callToAction:hover .ctaButton svg .path2{
    stroke-dashoffset: 0;
}

.callToAction:hover .ctaButton{
    transform: translate(20%, 20%) rotate(0deg);
}

.ctaText h3{
    color: var(--light-green);
    text-decoration: none;
}

.ctaText span{
    color: var(--light-green);
    font-size: clamp(var(--extraSmallFont), 2vw, var(--mediumFont));
    text-decoration: none;
    font-weight: 300;
}


/* 40 - Player */

button.plyr__control--overlaid, button.plyr__controls__item{
    background: var(--dark-green);
}

.plyr__control--overlaid svg, .plyr__controls__item svg{
    fill: var(--light-green);
}

.plyr--full-ui input[type=range]{
    color: var(--dark-green);
}

.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
    background: var(--dark-green);
    color: var(--light-green);
}

.gclose path{
    fill: var(--light-green) !important;
}

/* 09 - Login */

.registerHeader{
    display: flex;
    flex-direction: column;
    position: relative;
    left: 0;
    right: 0;
    width: auto;
    margin: var(--gapXL) 0;
    padding: 0 var(--gapL);
}

.registerHeader:has(.backBtn) h1{
    padding-top: 90px;
}

.backBtn{
    position: absolute;
    left: var(--gapL);
    top: 0;
    padding: 0 70px;
}

.registerHeader h1, .registerHeader p{
    color: var(--dark-green);
}

.mobileLoginSwitch{
    display: none;
}

.login{
    width: auto;
    display: flex;
    left: 0;
    right: 0;
    height: 100%;
    position: relative;
}

.registerForm{
    display: flex;
    flex-direction: column;
    gap: var(--gapS);
    width: 50%;
    justify-self: center;
    padding: 0 var(--gapXL) 0 var(--gapL);
}

.pwContainer{
    position: relative;
    width: 100%;
}

.togglePassword{
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    outline: none;
    background-color: transparent;
    appearance: none;
    border: 0px;
}

.togglePassword svg{
    width: 20px;
    height: 20px;
    fill: var(--dark-green);
    transition: fill .3s ease;
}

.passwordConditions{
    display: none;
    flex-direction: column;
    font-size: 11px;
    color: red;
    border: 1px solid var(--dark-green);
    padding: 5px;
    width: 200px;
    border-radius: 10px;
    margin-top: 16px;
}

.passwordConditions span::before{
    content: "✗";
    margin-right: 5px;
}

.passwordConditions span.met{
    color: green;
}

.passwordConditions span.met::before{
    content: "✓";
    font-weight: bold;
}

input:focus-visible ~ .passwordMatch, input:focus-visible ~ .togglePassword svg{
    color: var(--light-green);
    fill: var(--light-green);
}

.passwordMatch{
    position: absolute;
    display: flex;
    width: 40px;
    height: 40px;
    right: 50px;
    top: 0;
    align-items: center;
    justify-content: flex-end;
    color: var(--dark-green);
}

.login form, .loginArea form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.login-link {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    border-radius: var(--gapS);
    overflow: hidden;
    text-decoration: none;
    margin-right: var(--gapL);
}

.login-link h3, .login-link h5{
    color: var(--dark-green);
    transition: color .5s ease;
    margin: 0;
}

input{
    height: 40px;
    border: 0px;
    background-color: none;
    border: 1px solid var(--dark-green);
    color: var(--dark-green);
    border-radius: 40px;
    flex: 1;
    padding: 6px 20px;
    width: 100%;
}

input:not(:placeholder-shown){
    border: none;
    background-color: var(--light-green);
}

input:focus-visible, input:focus, input:active, input:target {
    background-color: var(--dark-green);
    color: var(--light-green);
}

input::placeholder{
    color: var(--dark-green);
}

.login-link .underLink::before{
    background-color: var(--dark-green);
    transition: background-color .5s ease-out, width .2s ease-out;
}

.login-bg{
    background-color: var(--light-green);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.login-bg svg{
    transform: scale(1.5);
}

.login-bg .bgPath {
    fill: none;
    stroke: var(--dark-green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 0px;
    transition: stroke-width .5s ease-out;
}

.login-link:hover .login-bg .bgPath {
    stroke-width: 600px;
}

.login-link:hover h3, .login-link:hover a, .login-link:hover h5{
    color: var(--light-green);
}

.login-link:hover .underLink::before{
    background-color: var(--light-green);
}

.formLine{
    display: flex;
    gap: var(--gapS);
    flex: 1;
    width: 100%;
}

.logoutButton .formLine .btn{
    padding: 0 70px;
}

.flexLine{
    display: flex;
    align-items: center;
    gap: var(--gapS);
    justify-content: space-between;
    width: 100%;
}

.feedContainer .flexLine{
    justify-content: flex-start;
}

.flexLine .backBtn{
    position: relative;
    left: 0;
}

.flexLine input{
    min-width: 60%;
}

.flexLine #image{
    flex: 1;
}

.flexLine .profileImg{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

textarea#description{
    outline: 0;
    background: none;
    resize: vertical;
    border: 0;
    background-color: var(--white);
    border-radius: var(--gapS);
    padding: var(--gapS);
    font-family: inherit;
    color: var(--dark-green);
}

textarea#description:focus-visible {
    outline: 1px solid var(--dark-green);
}

.formCancel{
    display: flex;
    flex: 0.5;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--dark-gray);
    color: var(--dark-gray);
    border-radius: 40px;
    padding: 0 20px;
    height: 40px;
    text-decoration: none;
}

.loginArea{
    position: relative;
    display: flex;
    flex-direction: column;
    left: 0;
    right: 0;
    width: 50%;
    padding: 0 var(--gapL);
    min-height: calc(60vh - var(--navHeight) - (2 * var(--gapXL)));
}

.loginRequired{
    position: relative;
    padding: 0 var(--gapL);
    width: auto;
    left: 0;
    right: 0;
    height: calc(100vh - var(--navHeight));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gapM);
    justify-content: center;
}

.loginRequired h1{
    color: var(--dark-green);
}

.requiredbackground{
    position: absolute;
    left: 0;
    right: 0;
    width: auto;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.requiredbackground svg{
    transform: scale(1.5) translateY(-10%);
}

.messageHeader{
    display: flex;
    flex-direction: column;
    position: relative;
    left: 0;
    width: 50%;
    padding: 0 var(--gapL);
    margin: 0 0 var(--gapS) 0;
}

.messageHeader p, .messageHeader span{
    color: red;
}

#tx-felogin-input-logout.btn{
    color: var(--dark-green);
    background-color: var(--white);
    border: 1px solid var(--dark-green);
}

#tx-felogin-input-logout.btn:hover{
    color: var(--white);
    background-color: red;
    border: 1px solid red;
}

.registerHeader.smile h1:first-child:after {
    content: ":)";
    margin-left: var(--gapS);
    transition: content 0.3s ease;
}

.registerHeader.smile h1.sad:first-child:after {
    content: ":(";
}

.editForm form{
    display: flex;
    gap: var(--gapL);
    left: 0;
    right: 0;
    padding: 0 var(--gapL);
    width: auto;
}

.editForm div:has(input[type="hidden"]){
    display: none;
}

.formColumn{
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 10px
}

.formColumn .formColumn{
    width: 100%;
}

.formColumn:has(.formColumn){
    justify-content: space-between;
}

.formColumn p{
    color: var(--dark-green);
    margin-bottom: var(--gapS);
}

.formColumn input{
    flex: 0;
}

.formColumn input[type="submit"]{
    background-color:var(--dark-green);
    color: var(--light-green);
}

.formColumn input[type="submit"]:hover{
    background-color: var(--light-green);
    color: var(--dark-green);
}

ul.typo3-messages{
    margin: var(--gapS) 0 0 0;
    padding: 0;
    list-style: none;
}

ul.typo3-messages li{
    background-color: transparent;
    padding: 0;
    border: none;
}

ul.typo3-messages li p{
    color: red;
    font-size: var(--extraSmallFont);
    line-height: var(--extraSmallFont);
}

ul.typo3-messages li p::before {
    content: '⚠️ ';
    margin-right: 4px;
}

.label-pro{
    position: relative;
    animation: background-pan 3s linear infinite;
    background: linear-gradient(
        to right,
        var(--light-green),
        var(--dark-green),
        var(--dark-gray),
        var(--light-green)
    );
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.headline-pro{
     position: relative;
    animation: background-pan2 12s linear infinite;
    background: linear-gradient(
        to right,
        var(--light-green),
        var(--dark-green),
        var(--dark-gray),
        var(--light-green)
    );
    background-size: 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.categoryItem.active .label-pro{
    background: linear-gradient(
        to right,
        var(--dark-green),
        var(--light-green),
        var(--white),
        var(--dark-green)
    );
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.categoryItem.active .label-pro .magic-star > svg > path {
  fill: var(--light-green);
}

.headline-pro > .magic-star > svg > path{
  fill: var(--dark-green);  
}

.label-pro > .magic-star, .headline-pro > .magic-star {
  --size: clamp(7px, 10px, 14px);
  animation: scale 1000ms ease forwards;
  display: block;
  height: var(--size);
  left: var(--star-left);
  position: absolute;
  top: var(--star-top);
  width: var(--size);
}

.label-pro > .magic-star > svg, .headline-pro > .magic-star > svg {
  animation: rotate 2000ms linear infinite;
  display: block;
  opacity: 0.7;
}

.label-pro .magic-star > svg > path {
  fill: var(--dark-green);
}


@keyframes background-pan {
  from {
    background-position: 0% center;
  }
  
  to {
    background-position: -200% center;
  }
}


@keyframes background-pan2 {
  from {
    background-position: 0% center;
  }
  
  to {
    background-position: -400% center;
  }
}

@keyframes scale {
  from, to {
    transform: scale(0);
  }
  
  50% {
    transform: scale(1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  
  to {
    transform: rotate(180deg);
  }
}

/* 11 - Video Player */

.videoPlayer{
    position: relative;
    left: 0;
    right: 0;
    width: auto;
    display: flex;
    justify-content: space-between;
    gap: var(--gapL);
    padding: var(--gapL);
}

.accordion{
    flex: 0.3;
}

.playerDevider{
    display: flex;
    justify-content: space-between;
    position: relative;
}

.playerDevider .overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    border-radius: var(--gapS);
}

.playerDevider .overlay h5{
    color: var(--light-green);
}

.playerHeadline{
    flex: 0;
    height: 0px;
    transition: flex .3s ease-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.playerHeadline.open{
    flex: 0.5;
    height: auto;
    overflow: hidden;
}

.videoInfos, .playerHeadlineText{
    color: var(--dark-green);
    max-width: 90%;
}

.videoSystem{
    display: flex;
    flex: 0.7;
    gap: var(--gapM);
    flex-direction: column;
}

.player{
    flex: 1;
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
}

.player a{
    display: flex;
    height: 100%;
    z-index: 99;
    position: relative;
}

.player:fullscreen video, .player:fullscreen .overlay{
    border-radius: 0;
    object-fit: contain;
}

video{
    border-radius: var(--gapS);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player video{
    outline: 1px solid var(--dark-green);
}
.player .overlay.start{
    opacity: 0;
}

.player .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Leichtes schwarzes Overlay */
    opacity: 1; /* Unsichtbar standardmäßig */
    transition: opacity 0.3s ease-in-out;
    pointer-events: none; /* Kein Einfluss auf Klicks */
    border-radius: var(--gapS);
}

.player .overlay.small{
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 30%);
}

.controls{
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity .5s ease-in-out;
}

.player.hide-controls .controls {
    opacity: 0;
}

.play-controls{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    top: 50%;
    gap: 48px;
    transform: translate(-50%, -50%);
}

.player button{
    padding: 0;
}

.player button#playPause{
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    border: 0px;
    background-color: transparent;
    color: white;
    font-size: 80px;
    line-height: 80px;
}

.player button#playPause img{
    width: 100%;
    height: 100%;
}

.player button#playPrev, .player button#playNext{
    appearance: none;
    border: 0px;
    background-color: transparent;
    color: white;
    font-size: 30px;
    line-height: 30px;
}

.player button#playPrev img, .player button#playNext img{
    height: 50px;
    width: 50px;
}

.player #title{
    appearance: none;
    position: absolute;
    color: var(--light-green);
    font-size: clamp(16px, 1vw, 24px);
    line-height: 1.3;
    top: 24px;
    left: 24px;
    cursor: pointer;
}

.player #title::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    width: 0%;
    height: 2px;
    background-color: var(--light-green);
    transition: width .3s ease;
    transform-origin: right;

}

.player #title:hover::before{
    width: 100%;
    background-color: var(--light-green);
    transform-origin: left;
    left: 0;
    right: auto;
}

.timeline{
    position: absolute;
    bottom: 0;
    width: 100%;
    justify-content: center;
    display: flex;
    padding: 0 24px;
    margin-bottom: 20px;
}

input#progress{
    appearance: none;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 6px;
    background-color: var(--white);
}

 input#progress::-webkit-slider-runnable-track {
    height: 4px;
    background-color: transparent;
    border-radius: 5px;
}

input#progress::-moz-range-track {
    height: 5px;
    border-radius: 5px;
}

input#progress::-webkit-slider-thumb {
    appearance: none;
    height: 12px;
    border-radius: 50%;
    width: 12px;
    background-color: white;
    margin-top: -4px;
}

input#progress::-moz-range-thumb{
    height: 10px;
    width: 10px;
    background-color: white;
}

.timeStamp{
    position: absolute;
    left: var(--gapS);
    bottom: var(--gapS);
    line-height: 0;
    color: var(--light-green);
}

.options{
    display: flex;
    position: absolute;
    right: 24px;
    bottom: 32px;
    align-items: flex-end;
}

.subSwitch{
    display: flex;
    align-items: center;
    width: 30px;
    height: auto;
}

.subSwitch img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.subtiteles{
    max-width: 80%;
}

.audio {
    display: flex;
    align-items: center;
    height: 85px;
    position: relative;
    width: 46px;
    flex-direction: column;
    justify-content: space-between;
}

/* Vertikaler Slider */
input#volume {
    -webkit-appearance: none;
    appearance: none;
    flex: none;
    width: 80px; /* Länge des Sliders */
    height: 3px; /* Dünne Leiste */
    background: white;
    border-radius: 5px;
    outline: none;
    padding: 0;
    cursor: pointer;
    transform: rotate(-90deg); /* 🔥 Dreht den Slider */
    transform-origin: center;
}

/* Thumb für Chrome, Edge, Safari */
input#volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

/* Thumb für Firefox */
input#volume::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid black;
    border-radius: 50%;
    cursor: pointer;
}

button#mute{
    appearance: none;
    border: 0px;
    color: white;
    background-color: transparent;
}

button#mute img{
    width: 30px;
    height: 30px;  
}

button#fullscreen{
    appearance: none;
    border: none;
    background: none;
    color: white;
    padding-bottom: 3px;
}

button#fullscreen img{
    width: 24px;
    height: 24px;    
}

/* 14 - Forum */
.forum{
    display: flex;
    position: relative;
    left: 0;
    right: 0;
    width: auto;
}

.collapsedBtn{
    cursor: pointer;
    display: flex;
    margin-top: var(--gapS);
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.collapsedBtn p{
    color: var(--dark-green);
}

.collapsed{
    height: 0;
    overflow: hidden;
    margin-top: 6px;
    gap: 6px;
}

.collapsed.open{
    height: auto;
    overflow: visible;
}

.collapsedBtn.open .arrow {
    transform: rotate(225deg) translate(-7px, -8px);
}
.collapsedBtn .arrow {
    border-top: 2px solid var(--dark-green);
    border-left: 2px solid var(--dark-green);
    transform: rotate(45deg);
    transform-origin: top left;
    width: 9px;
    height: 9px;
}

.collapsedBtn .underline{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: var(--dark-green);
}

.forumCats{
    display: flex;
    width: 100%;
    gap: var(--gapS);
    flex-direction: column;
}

.forumCats .removeTag{
    width: 40px;
    height: 40px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forumCats .removeTag svg{
    fill: var(--dark-green);
    transform: rotate(45deg);
    width: 20px;
    height: 20px;
}

.sidebar,.rightbar{
    display: flex;
    flex: 0.2;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    padding: var(--gapS);
}

.rightbarBtn{
    display: none;
}

.sidebar{
    border-right: 1px solid var(--dark-green);
}

.rightbar{
    border-left: 1px solid var(--dark-green);
}

.rightbar .btns{
    gap: 12px;
}

.rightbarColumn{
    display: flex;
    flex-direction: column;
    gap: var(--gapS)
}

.feed{
    display: flex;
    flex: 0.8;
    position: relative;
    padding: var(--gapS) var(--gapL);
    gap: var(--gapS);
    justify-content: space-between;
    position: relative;
    height: calc(100vh - var(--navHeight));
}

.feedContainer{
    display: flex;
    flex-direction: column;
    flex: 0.8;
    gap: var(--gapS);
    height: 100%;
    position: relative;
    overflow-y: auto;
}

.categoryItem{
    display: flex;
    align-items: center;
    height: 40px;
    justify-content: space-between;
    text-decoration: none;
    padding: 0 var(--gapS);
    background-color: var(--light-green);
    color: var(--dark-green);
    border-radius: var(--gapS);
    white-space: nowrap;
    gap: var(--gapS);
}

.search{
    width: 100%;
    background-color: var(--dark-green);
    height: 40px;
    border-radius: var(--gapS);
    display: flex;
    align-items: center;
    padding: 0 4px 0 10px;
}

.search input{
    flex: 1;
    height: 100%;
    background-color: transparent;
    color: var(--light-green);
    padding: 0;
}

.search .searchButton{
    height: 100%;
    max-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--dark-green);
    color: var(--light-green);
    padding: 0;
    flex: auto;
    border: none;
}

.search .searchButton svg{
    width: 50%;
    height: 50%;
    stroke-width: 2px;
    stroke: var(--light-green);
    fill: transparent;
    overflow: visible;
}

.suggestionsList{
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    list-style: none;
}

.suggestionsList li {
    background-color: var(--light-green);
    padding: 4px 8px;
    border-radius: var(--gapS);
    color: var(--dark-green);
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
    appearance: none;
}

.devider{
    height: 1px;
    background-color: var(--dark-green);
    width: 100%;
    margin: var(--gapS) 0;
}

.contacts{
    display: flex;
    flex-direction: column;
}

.contact{
    display: flex;
    align-items: center;
    height: 40px;
    gap: var(--gapS);
    background-color: var(--light-green);
    text-decoration: none;
    color: var(--dark-green);
    border-radius: var(--gapS);
    padding: 0 16px 0 5px;
    cursor: pointer;
}

.contact:hover{
    outline: 1px solid var(--dark-green);
}

.contact .info{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.contact:hover .role{
    color: var(--light-green);
}

.contact .role{
    font-size: 11px;
    color: var(--dark-gray);
    font-weight: 300;
    line-height: 11px;
}

.contact img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.contactButton{
    text-align: right;
    color: var(--dark-green);
    font-weight: 500;
}

.profileLinksBtn{
    display: flex;
    height: 55px;
    align-items: center;
    width: 100%;
    background-color: var(--light-green);
    padding: 0 6px;
    border-radius: var(--gapS);
    gap: var(--gapS);
    text-decoration: none;
}

.profileLinksBtn:hover{
    background-color: var(--dark-green);
}

.profileLinksBtn:hover span.text, .profileLinksBtn:hover svg{
    color: var(--light-green);
}

.profileLinksBtn .icon{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--white);
}

.profileLinksBtn svg{
    fill: transparent;
    stroke: var(--dark-green);
    stroke-width: 2px;    
    width: 30px;
    height: 30px;
    overflow: visible;
}

.profileLinksBtn span.text{
    text-decoration: none;
    color: var(--dark-green);
}

.categoryItem.active{
    background-color: var(--light-green);
}

.categoryItem:hover{
    outline: 1px solid var(--dark-green);
}

.fullRow{
    display: flex;
    min-height: 55px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    cursor: pointer;
    background-color: var(--light-green);
    border-radius: var(--gapS);
    padding: 6px;
}

.newPostBtn{
    display: flex;
    flex: 0.2;
    flex-direction: column;
    gap: 12px;
    height: fit-content;
    border-radius: var(--gapS);
}

.newPostBtn .row{
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0;
    cursor: pointer;
}

.newPostBtn .icon, .newPostBtn .send{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.newPostBtn .icon{
    background-color: var(--white);
    fill: var(--dark-green);
    font-weight: 300;
    transition: transform .3s ease;
}

.newPostBtn:hover .icon{
    transform: rotate(90deg);
}

.newPostBtn .send{
    justify-self: flex-end;
    background-color: var(--dark-green);
}

.newPostBtn .send svg{
    fill: var(--light-green);
    width: 30px;
    height: 30px;
    overflow: visible;
    margin-left: -7px;
}

.newPostBtn .contentCreation{
    display: none;
}

.newPostBtn.active .contentCreation{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.newPostBtn.active .contentCreation #content{
    width: 100%;
    border-radius: 16px;
    border: none;
    outline: 2px solid var(--light-green);
    padding: 4px 10px;
}

.newPostBtn.active .fullRow{
    padding: 0px;
    background-color: transparent;
    gap: var(--gapS);
}

.newPostBtn.active .row{
    background-color: var(--light-green);
    border-radius: var(--gapS);
    padding: 6px;
}

.newPostBtn.active .send{
    height: 49px;
    width: 50px;
    outline: none;
    border: none;
}

.newPostBtn .cancel, .allCommentHeadline .cancel{
    width: 20px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


.newPostBtn .cancel svg, .allCommentHeadline .cancel svg{
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
    fill: var(--dark-green);
}

.newPostBtn .cancel:hover svg, .allCommentHeadline .cancel:hover svg{
    transform: rotate(135deg);
    transition: transform .3s ease;
}

.tag-input-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
}

.tag-form {
  display: flex;
  align-items: center;
  border: 2px solid var(--light-green);
  border-radius: 2rem;
  padding: 0.25rem 0.5rem;
}

.tag-form input {
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--dark-green);
  padding: 0.4rem 0.8rem;
  background: transparent;
  width: 140px;
}

.tag-form input::placeholder{
    opacity: 0.4;
}

.tag-form button {
  background: none;
  border: none;
  color: var(--dark-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
}

.tag-form button svg {
  width: 16px;
  height: 16px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hiddenTagInputs{
    display: none;
}

.tag-list .tag {
  background: var(--dark-green);
  color:var(--light-green);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  white-space: nowrap;
  cursor: pointer;
}

.tag-list .tag::before{
    display: none;
}

div:has(> input[type="hidden"]){
    display: none;
}

input[type="hidden"]{
    display: none;
}

.newPostPopup{
    display: none;
}

.postForm{
    display: flex;
    gap: var(--gapS);
}

.postForm div:first-child{
    display: none;
}

.postContent{
    display: flex;
    flex: 0.8;
    gap: var(--gapS);
    flex-direction: column;
}

.postSend {
    height: 100%;
    flex: 0.3;
    display: flex;
    flex-direction: column;
    gap: var(--gapS);
    justify-content: space-between;
}

.postSend input[type="file"]{
    outline: 1px solid var(--dark-green);
    max-height: 50px;
    padding: 12px;
}

.postSend input[type="file"]:hover{
    outline: 1px solid var(--dark-green);
}

input[type="file"]:focus::file-selector-button {
  color: var(--light-green);
}

input[type="file"]::file-selector-button{
    background-color: transparent;
    border: none;
    color: var(--dark-green);
}

.imageDelete{
    display: flex;
    gap: 10px;
}

.editImage{
    position: relative;
    width: 50px;
    height: 50px;
}

.forumUpdateForm .editImage input{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    outline: none;
    opacity: 0;
}

 .editImage svg{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 25px;
    height: 25px;
    transform: translate(-50%,-50%);
    fill: var(--white);
    pointer-events: none;
}


.editImage img{
    width: 100%;
    height: 100%;
}

.commentEditForm textarea{
    color: var(--dark-green);
    border-radius: 10px;
    padding: 10px;
    resize: none;
    flex: 1;
    border: 0;
    appearance: none;
    outline: 1px solid var(--dark-green);
    margin: 2px;
    width: calc(100% - 4px);
}

.commentEditForm textarea:focus-visible{
    outline: 2px solid var(--dark-green);
}

.commentEditForm .buttons{
    display: flex;
    gap: var(--gapS);
    justify-content: space-between;
    margin-top: 5px;
}

.commentEditForm .buttons .btn{
    align-items: center;
    justify-content: center;
    padding: 0;
    flex: 1;
}

.cancelButton{
    background-color: var(--light-green);
    color: var(--dark-green);
}

.postContent #title{
    outline: 1px solid var(--dark-green);
    border: none;
    min-height: 50px;
}

.postContent #title:focus-visible{
    outline: 2px solid var(--dark-green);
    background-color: var(--white);
    min-height: 50px;
    color: var(--dark-green);
}

.postContent #content{
    outline: 1px solid var(--dark-green);
    color: var(--dark-green);
    border-radius: var(--gapS);
    padding: var(--gapS);
    resize: none;
    border: 0;
}

.postContent #content:focus-visible{
    outline: 2px solid var(--dark-green);
    border: 0px;
}

.postSubmit.postSubmit{
    height: 100px;
    align-self:var(--mediumFont) flex-end;
    width: 100%;
    background-color: var(--dark-green);
    color: var(--light-green);
    overflow: hidden;
}

.postSubmit.postSubmit:hover{
    background-color: var(--light-green);
    color: var(--dark-green);
}

.postBeitrag{
    display: flex;
    flex-direction: column;
    width: fit-content;
    max-width: 75%;
    min-width: 50%;
    color: var(--dark-green);
    position: relative;
}

.profilePicture{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex: none;
}

.profilePicture img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.postColumn{
    display: flex;
    flex-direction: column;
    z-index: 1;
    gap: 16px;
    position: relative;
}

.postColumn:has(.forumUpdateForm){
    width: 100%;
}

.postLine{
    display: flex;
    width: 100%;
    gap: var(--gapS);
}

.postLine > .postColumn{
    justify-content: space-between;
}

.postBeitrag > .postLine{
    background-color: var(--light-green);
    padding: var(--gapS);
    border-radius: var(--gapS);
    justify-content: space-between;
}

.postSettings, .commentDelete {
    display: none;
    align-items: center;
    flex-direction: row;
    height: auto;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.opener.open{
    display: flex;
}

.opener span{
    font-size: 12px;
    color: var(--dark-green);
    cursor: pointer;
}

.settings{
    position: absolute;
    top:0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.post-image-thumbnails img{
    width: 400px;
    height: 100%;
    max-width: 600px;
    object-fit: cover;
    border-radius: var(--gapS);
}

.editButton ,.deleteButton{
    padding: 0;
    background-color: transparent;
    border: none;
    fill: none;
}

.btn.deleteAccount{
    height: 40px;
    padding: 0;
    flex: 1;
    background-color: var(--white);
    color: var(--dark-green);
    border: 1px solid var(--dark-green);
}

.editButton:hover ,.deleteButton:hover{
    background-color: var(--white);
}

.forumUpdateForm{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--gapS);
}

.forumUpdateForm input{
    outline: 1px solid var(--dark-green);
    color: var(--dark-green);
    border-radius: var(--gapS);
}

.forumUpdateForm input:focus-visible{
    color: var(--light-green);
}

.forumUpdateForm textarea{
    outline: 1px solid var(--dark-green);
    color: var(--dark-green);
    border-radius: var(--gapS);
    padding: var(--gapS);
    resize: none;
    width: 100%;
}

.forumUpdateForm .buttons{
    display: flex;
    gap: var(--gapS);
    align-self: flex-end;
}

.forumUpdateForm .buttons .btn{
    align-items: center;
    justify-content: center;
    padding: 0;
    min-width: 150px;
}

.forumUpdateForm .buttons .btn.cancelButton{
    background-color: var(--light-green);
    color: var(--dark-green);
}

.postData{
    display: flex;
    flex-direction: column;
}

.postData .row{
    display: flex;
    align-items: center;
    gap: var(--gapS);
    width: auto;
}

.postData a, .deleteButton, .editButton{
    font-size: 12px;
    line-height: 12px;
    width: auto;
    color: var(--dark-gray);
    text-decoration: none;
    padding: 1px;
}

.postData a:hover, .deleteButton:hover, .editButton:hover{
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.postData .username{
    color: var(--dark-green);
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    margin-top: 6px;
}

.interactions{
    display: flex;
    gap: var(--gapM);
    align-items: center;
}

.likes, .cmnts, .savings{
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    fill: var(--dark-green);
    cursor: pointer;
}

.savings svg{
    fill: none;           /* Innenbereich transparent */
    stroke: var(--dark-green);   /* Farbe des Strichs */
    stroke-width: 4px;
}

.savings.saved svg{
    fill: var(--dark-green);
}

.likes svg, .cmnts svg, .savings svg{
    width: 16px;
    height: 16px;
    overflow: visible;
}

.profileFeed .allComments{
    grid-column: 1 / 4;
    bottom: var(--gapS);
    height: fit-content;
}

.masonaryGrid .postBeitrag{
    display: none;
    background-color: var(--light-green);
    width: 100%;
    padding: var(--gapS);
    border-radius: var(--gapS);
    height: fit-content;
}

.masonaryGrid .post-image-thumbnails img{
    width: 100%;
    height: auto;
}

.allComments{
    position: absolute;
    background-color: var(--white);
    outline: 1px solid var(--dark-green);
    border-radius: var(--gapS);
    bottom:var(--gapS);
    width: 50%;
    z-index: 50;
    display: none;
    flex-direction: column;
    padding: 10px 10px;
    gap: var(--gapS);
}

.allCommentHeadline{
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid var(--dark-green);
    color: var(--dark-green);
    padding-bottom: 6px;
}

.allCommentHeadline .closeBtn{
    position: relative;
    cursor: pointer;
}

.allCommentHeadline .closeBtn::before{
    content: '<';
    position: absolute;
    left: -5px;
    opacity: 0;
    transition: left .3s ease, opacity .3s ease;
}

.allCommentHeadline .closeBtn:hover::before{
    opacity: 1;
    left: -10px;
}

.commentsPopUp{
    display: flex;
    flex-direction: column-reverse;
    max-height: 40vh;
    gap: var(--gapS);
}

.comments{
    display: flex;
    flex: 0.4;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    margin-top: -50px;
    padding: 56px 6px 6px;
    border: 2px solid var(--dark-green);
    border-radius: var(--gapS);
}

.commentForm{
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    position: relative;
    border-radius: 50%;
}

.commentForm .profilePic{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    flex: none;
    outline: 1px solid var(--dark-green);
}

.commentForm div:first-child{
    display: none;
}

.commentForm textarea{
    color: var(--dark-green);
    border: 0;
    border-radius: var(--gapS);
    padding: 0 14px;
    background-color: var(--bs-gray-200);
    resize: none;
    align-items: center;
    flex: 1;
    height: 45px;
    display: flex;
    vertical-align: middle;
    line-height: 43px;
}

.commentForm textarea::placeholder{
    color: var(--white);
    line-height: 43px;
}

.commentForm textarea:focus-visible{
    outline: 1px solid var(--dark-green);
}

.commentForm button{
    background-color: #025043;
    position: absolute;
    right: 4px;
    top: 50%;
    color: var(--light-green);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    outline: none;
    border-radius: 50%;
    border: none;
    transform: translateY(-50%);
}

.commentForm button svg{
    width: 70%;
    height: 70%;
    stroke: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -4px;
    fill:var(--light-green);
    display: block; /* oder inline-block */
}

.commentSection{
    display: flex;
    max-height: 280px;
    overflow-y: auto;
    flex-direction: column;
    gap: var(--gapS);
    padding: 10px 10px;
}

.commentSection::-webkit-scrollbar {
    display: block;
    background-color: var(--white);
    border-radius: var(--gapS);
    width: 5px;
}

.commentSection::-webkit-scrollbar-thumb {
    background-color: var(--dark-green);
    border-radius: 5px;
    border-radius: var(--gapS);
}

.comment{
    display: flex;
    gap: 10px;
    position: relative;
    align-items: center;
}

.commentContent{
    display: flex;
    background-color: var(--light-green);
    padding: 0 var(--gapS) 0 6px;
    height: 40px;
    gap: 10px;
    border-radius: var(--gapS);
    align-items: center;
    width: fit-content;
}

.commentContent .column{
    gap: 3px;
}

.comment .profilePic{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex: none;
}

.comment .user{
    font-size: 10px;
    width: fit-content;
    line-height: 1;
}

.comment .commentText{
    font-size: 16px;
    line-height: 1;
    width: fit-content;
}

.likeButton{
    position: relative;
    display: flex;
    z-index: 2;
    align-items: center;
    gap: 4px;
    padding: 0;
    fill: var(--dark-green);
    cursor: pointer;
}

@keyframes like {
  0%    {   fill: var(--dark-green);
            scale: 1;}
  50%   {   scale: 0.8;}
  75%   {   scale: 1.2}
  100%  {   fill: var(--red);
            scale: 1;}
}

.likeButton.liked{
    animation: like .3s ease;
    fill: var(--red);
}

.likeButton svg{
    width: 16px;
    height: 16px;
    overflow: visible;
}

.comment .line{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px 0px;
}

.comment .line span, .postLine .column span{
    background-color: transparent;
    height: auto;
    width: auto;
    white-space: nowrap;
    font-size: 12px;
    line-height: 12px;
    padding: 6px 0px 0px 5px;
}

.commentSettings{
    position: absolute;
    display: flex;
    gap: 10px;
    align-items: center;
    height: 25px;
    right: 15px;
    top: 10px;
}

.upgradePlan{
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.upgradePlan p{
    margin-bottom: var(--gapS);
}

.upgradePlan .btn, .forumCTA .btn{
    max-width: 500px;
    justify-content: left;
    padding: 0px 70px 0 20px;
}

.savedPostContaner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 var(--gapL);
}

.savedPostHeadline{
    display: flex;
    flex-direction: column;
    color: var(--dark-green);
    gap: var(--gapS);
    padding: var(--gapL);
}

.savedPostHeadline a{
    position: relative;
    color: var(--dark-green);
    text-decoration: none;
    width: fit-content;
}

.savedPostHeadline a::before{
    content: '';
    width: 0%;
    height: 1px;
    position: absolute;
    background-color: var(--dark-green);
    left: auto;
    bottom: 0;
    transition: width .3s ease;
    right: 0;
}

.savedPostHeadline a:hover::before{
    left: 0;
    right: auto;
    width: 100%;
}

.savedPostHeadline h3{
    color: var(--dark-green);
}

.profileFeedContainer{
    flex: 0.8;
    padding: var(--gapL);
    display: flex;
    flex-direction: column;
    gap: var(--gapS);
}

.profileFeedContainer .savedPostHeadline{
    padding: 0;
}

.masonaryGrid{
    height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gapM);
}

.forumProfile{
    display: flex;
    flex-direction: column;
    gap: var(--gapS);
}

.forumProfile .line{
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: left;
}

.forumProfileImg{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.forumProfileImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.forumProfileData{
    display: flex;
    flex-direction: column;
}

.postCount, .followBtn{
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 12px;
    outline: 1px solid var(--dark-green);
    color: var(--dark-green);
    gap: 6px;
}

.followBtn svg{
    height: 16px;
    width: auto;
    fill: none;
    stroke: #025043;
    stroke-linecap: round;
    stroke-miterlimit: 10;
    stroke-width: 3px;
}

/* 50 - Responsive */

.buyPlan{
    position: relative;
    left: 0;
    right: 0;
    width: auto;
    height: 100%;
    padding: var(--gapS);
}

.buyPlan form{
    display: flex;
    gap: var(--gapXL);
    justify-content: space-between;
    width: calc(150vw - (var(--gapS) * 2));
    transform: translateX(0);
    transition: transform .3s ease-in-out;
}

.buyPlan form.insights{
    transform: translateX(calc( -1 * (33% + var(--gapS))));
}

.buyPlan form > div:first-child{
    display: none;
}

.btnBox{
    display: flex;
    flex-direction: column;
    gap: var(--gapS);
}

.insightsBtn, .accountBtn{
    align-self: flex-end;
    padding: 0px 15px;
    height: 40px;
    font-size: clamp(16px, 1.5vw, var(--extraSmallFont));
    line-height: 1;
    word-spacing: 4px;
    text-decoration: none;
}

.insightsBtn:hover, .accountBtn:hover{
    outline: 1px solid var(--dark-green);
    color: var(--dark-green);
}

.btn.secondary{
    background-color: var(--white);
    color: var(--dark-green);
}

.btn.cancelBtn{
    /* background-color: var(--red); */
    color: var(--dark-green);
}

.btn:hover,.rightPlan input:hover{
    outline: 1px solid var(--dark-green);
}

.btnRow{
    display: flex;
    justify-content: space-between;
    gap: var(--gapS);
}

.btnRow .btn{
    flex: 1;
    padding: 0;
}

.leftPlan, .rightPlan, .planInsights{
    display: flex;
    flex-direction: column;
    gap: var(--gapS);
    flex: 1;
    justify-content: space-between;
}

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

.leftPlan .bottom h3{
    margin: 0;
    line-height: clamp(20px, 3vw, 50px)
}

.buyPlan .plan{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--gapS);
    padding: 10px 10px;
    outline: 1px solid var(--dark-green);
    border-radius: var(--gapS);
    height: 70vh;
    justify-content: space-between;
    background-color: var(--light-green);
}

.plan h3{
    color: var(--dark-green);
}

.plan .name span{
    font-size: 18px;
    line-height: 1;
    color: var(--dark-green);
}

.buyPlan .plan.currentPlan::after{
    content: '✓ abonniert';
    background-color: var(--dark-green);
    color: var(--light-green);
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0 10px;
    display: flex;
    height: 32px;
    align-items: center;
    border-radius: var(--gapS);
}

.buyPlan label .name{
    display: flex;
    flex-direction: column;
}



.buyPlan label .tags{
    max-width: 80%;
    align-self: flex-end;
}


.buyPlan .selector{
    display: none;
}

.priceCon{
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.priceCon s{
    font-weight: 200;
}

.buyPlan label input[type="radio"]:checked ~ .selector{
    content: 'selected';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-green);
    color: var(--light-green);
    font-size: 20px;
}

.buyPlan input[type="submit"]{
    max-height: 50px;
}

.btns{
    display: flex;
    flex-direction: column;
    gap: var(--gapS);
}

.btns .btn{
    height: 40px;
}

#payment-options{
    padding: var(--gapS);
    border-radius: var(--gapS);
    background-color: var(--light-green);
}

#payment-options select{
    width: 70%;
    outline: 1px solid var(--dark-green);
    border-radius: var(--gapS);
    height: 40px;
    padding: 0 10px;
}

.sepa{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: var(--gapS);
    border-radius: var(--gapS);
    background-color: var(--light-green);
}

.creditcard{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: var(--gapS);
    border-radius: var(--gapS);
    background-color: var(--light-green);
}

.creditcard #card-element{
    display: block !important;
}

.confirmationText{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100vh - var(--navHeight));
    gap: var(--gapS);
    padding: var(--gapS);
    color: var(--dark-green);
    margin-bottom: calc(-1 * var(--gapXL));
}

.confirmationText.good .confirmBG{
    background-color: var(--light-green);
}

.confirmationText.bad .confirmBG{
    background-color: var(--red);
}

.confirmationText.good .confirmBG svg path{
    stroke: var(--dark-green);
    background-color: var(--light-green);
}

.confirmationText.bad .confirmBG svg path{
    stroke: var(--dark-green);
    background-color: var(--light-green);
}

.confirmationText h1{
    margin: 0;
}

.flashMessages{
    display: none;
}

.flashMessages ul.typo3-messages li p{
    background-color: var(--dark-green);
    width: auto;
    padding: 10px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    color: white;
}

.confirmBtn{
    margin-top: var(--gapS);
    display: flex;
    gap: var(--gapS);
    align-items: center;
}

.confirmBG {
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.confirmBG svg{
    transform: translate(20%, -15%) scale(1.6);
    opacity: 0.2;
}

.invoiceHeader{
    display: flex;
    flex-direction: column;
    gap: var(--gapS);
    position: relative;
    left: 0;
    right: 0;
    width: auto;
    color: var(--dark-green);
}

.invoiceContainer{
    display: flex;
    flex-direction: column;
    gap: var(--gapS);
    position: relative;
    left: 0;
    right: 0;
    width: auto;
}

.invoice{
    width: 100%;
    padding: var(--gapS);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--dark-green);
    border-radius: var(--gapS);
}

.invoiceInner{
        width: 100%;
        display: flex;
        gap: var(--gapS);
        justify-content: space-between;
        align-items: center;
    }

.inoviceDownload{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--light-green);
    border-radius: 50%;
    stroke: var(--dark-green);
    fill: var(--dark-green);
}

.inoviceDownload:hover{
    background-color: var(--dark-green);
    stroke: var(--light-green);
    fill: var(--light-green);
}

.billingPeriod{
    display: flex;
    justify-content: space-between;
    gap: var(--gapS);
    position: relative;
}

.togglePeriod{
    width: calc(33% - (var(--gapS) / 2));
    position: absolute;
    height: 100%;
    background-color: var(--light-green);
    z-index: 0;
    border-radius: var(--gapS);
    left: 0;
    transition: left .2s ease-in-out;
}

.bPeriod{
    flex: 1;
    text-align: center;
    padding: 5px 0;
    border-radius: var(--gapS);
    cursor: pointer;
    border: 1px solid var(--dark-green);
    color: var(--dark-green);
    z-index: 1;
}

.bPeriod .extra{
    display: inline-block;
    font-size: 12px;
    color: var(--dark-green);
}

.popupOverlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.confirmPopup{
    background-color: var(--light-green);
    padding: var(--gapL);
    border-radius: var(--gapS);
    display: flex;
    flex-direction: column;
    gap: var(--gapS);
    width: 400px;
}

.confirmPopup .btn{
    max-height: 40px;
    padding: 0 70px;
}

.nfContainer{
    display: flex;
    padding: var(--gapM);
    height: fit-content;
    gap: var(--gapS);
}

.nfContainer .left, .nfContainer .right{
    display: flex;
    flex-direction: column;
    gap: var(--gapS);
}

.nfContainer .left{
    flex: 0.67;
}

.nfContainer .right{
    flex: 0.33;
    align-items: center;
    justify-content: center;
}

.nfContainer p{
    text-wrap: balance;
}

.nfContainer img{
    width: 70%;
    height: auto;
    object-fit: contain;
}

@media only screen and (max-width: 1600px) {
    .homeScreen .background img{
        object-fit: cover;
        object-position: bottom center;
    }
    
    .slider-wrapper{
        height: 50vh;
    }

    .learnings{
        height: 200vh;
    }

    .learning{
        width: 40vw;
    }
}

@media only screen and (max-width: 1100px) {
    .homeScreen .content{
        flex-direction: column;
        justify-content: space-between;
        gap: var(--gapL);
        align-items: flex-start;
    }

    .homeVideoContainer{
        width: 100%;
    }

    .homeVideo{
        height: 200px;
    }

    .innerBlock.desk{
        display: none;
    }

    .slider-item{
        width: 70vw;
    }

    .videoPlayer{
        flex-direction: column-reverse;
        padding: var(--gapS);
    }

    .playerDevider{
        flex-direction: column-reverse;
        gap: var(--gapS);
    }

     .learning{
        width: 60vw;
    }

    .tags.desk{
        display: none;
    }

    .btn{
        padding: 0 10px;
        height: 40px;
    }

    .btn .stroke-overlay{
        display: none;
    }

    .practicalTrainings{
        flex-direction: column;
        width: calc(100% - (var(--gapM)*2));
        margin-bottom: var(--gapL);
        height: fit-content;
    }

    .practicalTraining{
        width: 100%;
        gap: 12px;
    }
}

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

    .desk{
        display: none;
    }

    .mob{
        display: flex;
    }

    h1{
        font-size: var(--mobileBigFont);
    }

    /* h3{

    }

    h5{

    } */

    nav{
        padding: 0 var(--gapS) 0 var(--gapS);
        width: 100vw;
        align-items: center;
        position: fixed;
    }

    .logo img{
        width: 140px;
    }

    .mobileMenu {
        position: relative;
        width: 50px;
        align-items: center;
        overflow: visible;
        height: 4px;
    }

    .mobileMenu svg{
        width: 50px;
        height: 50px;
    }
    
    .mobileMenuStroke{
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 88px;
        stroke: var(--light-green);
        transform: translateY(-50px);
        stroke-dasharray: 1080;
        stroke-dashoffset: 0;
        transition: stroke-dashoffset .3s ease-in;
    }

    .mobileMenu::before,
    .mobileMenu::after {
        transform-origin: top left;
        content: '';
        position: absolute;
        width: 50px;
        height: 4px;
        background-color: var(--light-green);
        display: block;
        transform: rotate(0deg);
        transition: transform ease .3s;
    }
    
    .mobileMenu::before {
        top: -10px;
    }
    
    .mobileMenu::after {
        top: 10px;
    }

    .mobileMenu.open::before{
        transform: rotate(24deg);
    }

    .mobileMenu.open::after{
        transform: rotate(-24deg);
    }

    .mobileMenu.open .mobileMenuStroke{
        stroke-dashoffset: -1080;
    }

    .open.mobileMenuOverlay{
        display: flex;
        height: calc(100vh - var(--navHeight));
    }

    .content{
        gap: var(--gapXL);
        justify-content: flex-end;
        padding: var(--gapS);
        flex-direction: column;
    }

    .line{
        flex-direction: column;
    }

    .background{
        height: 100%;
    }

    .homeScreen .background img{
        object-position: center center;
    }

    .homeText{
        width: 100%;
        font-size: 50px;
        line-height: 50px;
    }

    .homeVideoContainer{
        width: 100%;
    }

    .homeVideo{
        padding: 10px;
        height: 93px;
    }

    .bigText{
        padding: 0 var(--gapS);
    }

    .bigText h1{
        margin-bottom: 0;
    }

    .bigText p{
        text-align: justify;
        word-wrap: balance;
    }

    footer{
        height: 50vh;
        gap: var(--gapS);
    }
    
    .footer-top{
        flex-wrap: wrap;
        row-gap: var(--gapS);
    }

    footer .column{
        width: 40vw;
    }

    footer a span::before, footer a span::after{
        display: none;
    }

    footer form{
        display: flex;
    }

    footer input{
        margin-right: -40px;
    }

    .prices{
        flex-direction: column-reverse;
    }

    .courses{
        width: 100%;
        height: auto;
    }

    .course{
        margin: 0;
        width: 100%;
    }

    .price span{
        font-size: var(--extraSmallFont);
    }

    .price-content{
        position: relative;
        gap: var(--gapM);
        top: var(--gapS);
        padding: var(--gapM);
        flex: 1;
    }

    .bottom-content{
        align-items: center;
    }

    .Q, .F {
        width: 90%;
    }

    .aboutHeader{
        align-items: flex-start;
        padding-top: 25vh;
        margin-bottom: 0;
    }

    .aboutHeaderText h1{
        font-size: var(--mobileBigFont);
    }

    .aboutHeaderText h5{
        font-size: 16px;
    }

    .aboutUsVideo{
        left: 50%;
        top: 35%;
        width: 80vw;
        height: 50vw;
    }

    .aboutHeadline p{
        font-size: 24px;
    }

    .callToAction{
        align-items: flex-start;
    }

    .ctaText{
        margin-bottom: 30vh;
    }

    .ctaText h3{
        font-size: var(--mobileBigFont);
    }

    .ctaButton{
        position: absolute;
        width: 250px;
        height: 250px;
        right: -10%;
        bottom: -5%;
        transform: translate(0, 0);
    }

    .callToAction:hover .ctaButton{
        position: absolute;
        width: 250px;
        height: 250px;
        right: -10%;
        bottom: -5%;
        transform: translate(0, 0);
    }

    .callToAction .ctaButton svg .path2, .callToAction .ctaButton svg .path1{
        stroke-dashoffset: 0;
    }

    .aboutHeadline p{
        padding: 0 var(--gapS);
    }

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

    .speakerImg{
        width: 100%;
    }

    .registerForm{
        width: auto;
        flex: 1;
        overflow: hidden;
        padding: 0 var(--gapL);
        transition: flex .3s ease-out, padding .3s ease-out;
    }

    .loginArea{
        width: 100%;
    }

    .login-link{
        flex: 0;
        overflow: hidden;
        transition: flex .3s ease-out;
        margin:0;
    }

    .login-link h3, .login-link h5{
        text-align: center;
        white-space: nowrap;
    }

    .login-link h3{
        font-size: var(--mobileBigFont);
    }

    .login.loginActive .registerForm{
        padding: 0;
        padding: 0 0px;
        flex: 0;
    }

    .login.loginActive .login-link{
        flex: 1;
        align-items: center;
        margin: var(--gapS);
    }

    .login-bg svg{
        width: 100%;
        height: 100%;
    }

    .mobileLoginSwitch{
        border: 1px solid var(--dark-green);
        border-radius: var(--gapS);
        display: flex;
        width: auto;
        position: relative;
        left: 0;
        right: 0;
        height: 50px;
        justify-content: space-between;
        align-items: center;
        margin: 0 var(--gapL) var(--gapL);
        padding: 0 18px;
        overflow: hidden;
    }

    .registerSwitch, .loginSwitch{
        color: var(--dark-green);
    }
    
    .activeShow{
        position: absolute;
        height: 100%;
        left: 0;
        right: 0;
        width: 50%;
        background-color: var(--light-green);
        z-index: -1;
        border-radius: var(--gapS);
        transition: left .3s ease;
    }

    .mobileLoginSwitch.loginActive .activeShow{
        left: 50%;
    }

    .profileLinks{
        flex-direction: column;
        flex-wrap: wrap;
        gap: var(--gapS);
        row-gap: 10px;
        justify-content: center;
        width: 100vw;
        top: -20%;
        position: relative;
        background-color: var(--dark-green);
    }

    .profileLink:hover::before{
        width: 0%;
    }

    .profileLinks  .profileLink{
        width: auto;
        height: auto;
    }

    .profileLink.active{
        background-image: url('/fileadmin/icons/circle.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .profileLink.profileLink{
        border-left: none;
        font-size: var(--mediumFont);
        color: var(--dark-green);
    }

    .mobileMenuOverlay .profileLink.logOff{
        height: 50px;
        font-size: 16px;
        display: flex;
        align-items: center;
        padding: 0 10px;
        color: var(--dark-green);
        border-radius: var(--gapS);
    }

    .editForm form{
        flex-direction: column;
        gap: var(--gapS);
    }

    .formColumn{
        width: 100%;
    }

    .cH-Headline{
        height: 30vh;
    }

    .courseStructure{
        flex-direction: column-reverse;
        padding: 0 var(--gapS);
    }

    .learning{
        min-width: 75vw;
    }

    .learning p{
        font-size: 15px;
    }

    .courseStructure .homeVideo{
        position: relative;
        top: 0;
    }

    .playerHeadline{
        gap: var(--gapS);
        flex: none;
        height: 0px;
    }

    .playerHeadline.open{
        height: 150px;
    }

    .videoInfos{
        height: 100%;
    }

    #videoTitle{
        text-wrap: nowrap;
    }

    .options .audio{
        display: none;
    }

    .forum{
        flex-direction: column;
    }

    .forumCats{
        flex-direction: row;
        overflow-x: auto;
        gap: var(--gapS);
    }

    .forumCats::-webkit-scrollbar{
        display: block;
        height: 20px;
    }

    .feedContainer{
        padding-right: 0;
        height: 80%;
        flex: 1;
    }

    .feed{
        padding: var(--gapS);
    }
    
    .postBeitrag{
        flex-direction: column;
        gap: var(--gapS);
        min-width: none;
        max-width: none;
        width: 100%;
    }

    .comment .line{
        flex-direction: row;
        padding-top: 0;
    }

    .postLine{
        gap: 10px;
        flex-direction: column;
    }

    .postLine > p{
        font-size: 18px;
        line-height: 20px;
        font-weight: 700;
    }

    .postSettings{
        flex-direction: column;
    }

    .postSettings div{
        display: none;
    }

    .postSend{
        height: auto;
    }

    .btnBox, .btnRow{
        flex-direction: column;
    }

    .btnBox .btn, .btnRow .btn{
        width: 100%;
        min-height: 40px;
    }

    .commentEditForm .buttons button, .commentEditForm .buttons .btn{
        padding: 0px 10px;
    }

    .commentEditForm .buttons{
        display: flex;
        gap: var(--gapS);
    }

    .buyPlan form {
        flex-direction: column;
        padding: 0;
        width: calc(100vw - (var(--gapS) * 2));
    }

    .buyPlan input[type="submit"]{
        height: auto;
        min-height: 50px;
    }

    .buyPlan .plan{
        width: auto;
    }

    .confirmBG svg{
        transform: translate(-32%, 2%) scale(1);
        height: 100%;
    }

    .logoutButton .formLine{
        flex-direction: column;
    }

    .logoutButton .btn{
        min-height: 50px;
        text-align: center;
        padding: 0;
    }

    .buyPlan label{
        height: 25vh;
    }

    .leftPlan .bottom h3{
        font-size: var(--mobileBigFont);
        line-height: var(--mobileBigFont);
    }

    .invoice{
        flex-direction: column;
        align-items: flex-start;
        gap: var(--gapS);
    }

    .invoiceInner{
        width: 100%;
        display: flex;
        gap: var(--gapS);
        justify-content: space-between;
        align-items: center;
    }

    .teaserTop{
        flex-direction: column;
    }

    .teaserAccordion{
        flex-direction: column;
    }

    .teaserTopics{
        flex-direction: row;
        overflow: scroll;
    }

    .topRow p{
        line-height: 1;
    }

    .forumTeaserContent p{
        max-width: none;
    }

    .forumTeaserTags{
        max-width: none;
    }

    .fTT{
        font-size: 14px;
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .nfContainer{
        flex-direction: column;
    }

    .teaserTop img {
        width: 100%;
    }

    .teaserTopics{
        margin: var(--gapS) 0;
    }

    .teaserTopic {
        width: fit-content;
        border-radius: var(--gapS) !important;
    }

    .teaserTopic .corners{
        display: none !important;
    }

    .teaserTopic.open{
        background-color: var(--dark-green);
        color: var(--light-green);
    }

    .teaserDescription.open{
        border-radius: var(--gapS) !important;
    }

    .teaserTitle{
        white-space: nowrap;
    }

    .forumTeaserContent h3{
        text-align: center;
    }

    .fullwidthImg{
        left: var(--gapS);
        width: calc(100% - (2* var(--gapS)));
    }

    .post-image-thumbnails a{
        width: 100%;
        display: flex;
    }

    .post-image-thumbnails img{
        width: auto;
        max-width: 100%;
    }

    .rightbar{
        position: fixed;
        background-color: var(--white);
        width: 100%;
        height: calc(100% - var(--navHeight));
        display: none;
        border-left: none;
    }

    .rightbar.open{
        display: flex;
        z-index: 98;
    }

    .rightbarBtn{
        z-index: 99;
        display: flex;
        position: fixed;
        width: 5vw;
        height: 5vw;
        min-width: 40px;
        min-height: 40px;
        border-radius: 50%;
        background-color: var(--dark-green);
        outline: 1px solid var(--light-green);
        bottom: var(--gapM);
        right: var(--gapM);
        align-items: center;
        justify-content: center;
    }

    .rightbarBtn svg{
        width: 60%;
        height: 60%;
        margin: auto;
        fill: none;
        stroke: var(--light-green);
        stroke-width: 4px;
    }   

    .learning img{
        height: 35%;
    }


}