html{
    scroll-behavior: smooth;
}
html *{
    /* user-select: none; */
}
html, body{
    padding: 0;
    margin: 0;
    width: 100%;
    /* height: 100%; */

    background-color: #000;
    background: #111;
}
html{
    /* background: url(/assets/img/bgimage.webp) no-repeat center #000 fixed; */
    /* background-size: cover; */
}
body{
    font-family: 'Roboto', sans-serif;
    
    /* font-style: normal; */
    color: #000;
    font-size: 16px;
    font-size: 1.2rem;
    
    line-height: 1.3em;

}
/* #bgfilter{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30,20,20,0.8) fixed;
    backdrop-filter: blur(10px);   
    transition: ease-in-out 0.5s backdrop-filter;
}
.scrolling #bgfilter{
    backdrop-filter: blur(0px);   
} */
h1,h2,h3,h4,h5,h6{
    margin: 0;
    line-height: 1.3em;
    font-family: 'BebasNeue', sans-serif;
    font-weight: normal !important;
    box-sizing: border-box;
}
h2{
    display: block;
    text-align: center;
    font-size: 3rem;
    font-size: clamp(2rem, 4vw, 3rem);
    padding: 2rem 20px;
    width: 100%;
}
h3{
    display: block;
    text-align: center;
    font-size: 2.5rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    padding: 2rem 0;
}
h3.white{
    color: #fff;
}
a{
    color: #fff;
    text-decoration: underline;
}
a:hover,
a:focus{
    text-decoration: none;
}

.grid{
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    /* grid-template-columns: 1fr 1fr 1fr; */
    /* grid-template-rows: 200px 200px; */
}
.grid-item{
    display: block;
    /* border: 1px solid red; */
    aspect-ratio: 1;
}
.grid-even{
    display: grid;
    grid-template-columns: 1fr;
}
#wrap{
    /* max-width: 1200px; */
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    background-color: var(--md_darkblue);
    background-color: transparent;
    position: relative;
    overflow: hidden;

    margin-bottom: 100vh;
    z-index: 10;
}
.wrap-inner{
    width: 100%;
    display: block;
}
.wrap-inner.white{
    background-color: #fff;
}
.wrap-inner .gray{
    background-color: #ececec;
}
.wrap-inner-position{
    width: 100%;
    max-width: 1200px;
    max-width: 1440px;
    display: block;
    margin: 0 auto;
    position: relative;
}
#top{
    height: 50px;
    background-color: var(--md_darkblue);
    background-color: #fff;
    /* display: flex;
    flex-wrap: wrap; */
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    /* max-width: 1200px; */
    z-index: 10000;
}
#top-outter{
    height: 50px;
    background-color: var(--md_darkblue);
    background-color: #fafafa;
    position: fixed;
    z-index: 1000;
    width: 100%;
    
}
/* #distancer, */
.distancer{
    display: block;
    height: 50px;
    position: relative;
    /* background-color: red; */
}
/* @media(max-width: 500px){ */

    /* #top > .flexbox */
    #menu{
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        /* height: 100%; */
        /* height: 400px; */
        background-color: var(--md_darkblue09);
        background-color: #fafafa;
        padding: 20px 0;
        margin: 0;
        overflow-y: auto;
        z-index: 500;
        transform: scale(0);
        transition: ease-in-out 200ms all;
        max-height: calc(100vh - 50px);
        overflow-y: scroll;
        z-index: 900;
        display: block;
        /* border-top: 1px solid var(--md_pink); */
        z-index: 9000;
    }
    #menu.show{
        
        transform: scale(1);
        
    }
    #menuicon{
        position: absolute;
        width: 50px;
        height: 50px;
        /* background: var(--md_pink) url(/assets/img/svg/menu.svg) no-repeat center; */
        /* background: #fff url(/assets/img/svg/menu.svg) no-repeat center; */
        background: #000 url(/assets/img/svg/menu.svg) no-repeat center;
        background-size: auto 80%;
    }
    #menu ul{
        list-style: none;
        padding: 0;
        margin: 0;
        /* position: absolute; */
        display: block;
        width: 100%;
    }
    #menu ul li{
        padding: 0;
        margin: 0;
        display: block;
        border-top: 1px solid var(--white05);
        color: #fff;
    }
    #menu ul li:first-child{
        border-top: none;
    }
    #menu ul li a{
        padding: 25px 15px;
        display: block;
        text-decoration: none;
        color: #fff;
        color: #000;
        text-align: center;
        /* text-transform: uppercase; */
    }
    /* #menu ul li a:hover{
        background-color: #000;
    } */



    #menu ul li.aktiv > a{
        background-color: #e60073;        
        background-color: rgba(230, 0, 115, 0.2);        
    }
    #menu ul li.li-level-0 ul.level-1{
        background-color: var(--md_violet08);
        background-color: rgba(230, 0, 115, 0.2);        
        display: none;
    }
    #menu ul li.li-level-0 ul.level-1 li a{
        padding: 15px;
        padding: 15px 30px 15px 15px;
    }
    #menu ul li.li-level-0.aktiv > a,
    #menu ul li.li-level-1.aktiv > a{
        border-bottom: 1px solid #fff;
    }
    #menu ul li.li-level-0.aktiv ul.level-1{
        display: block;
    }
    /* #menu ul li.li-level-0.aktiv ul.level-1 ul.level-2{
        background-color: var(--greydark);
    } */
    #menu ul li.li-level-0.aktiv ul.level-1 li.li-level-1 ul.level-2{
        display: none;
    }
    #menu ul li.li-level-0.aktiv ul.level-1 li.li-level-1.aktiv ul.level-2{
        display: block;
        background-color: var(--md_greydark);
    }

    #top .flexbox{

        position: relative;
    }

    #logo {
        position: absolute;
        transform: translateX(50%);
        top: 0;
        right: 50%;
        /* width: calc( 100% - 100px); */
        /* width: 100px; */
        height: 50px;
        aspect-ratio: 2/1;
        display: block;
        background: url(/assets/img/logo.png) no-repeat center var(--md_darkblue);
        background: url(/assets/img/logo.png) no-repeat center #fafafa;
        background-size: auto 80%;
    }

    header{
        display: block;
        /* aspect-ratio: 1; */
        background: var(--md_darkblue) url(/assets/img/alpha_digital04_leistystem02.webp) no-repeat center;
        background: #eee;
        background-size: cover;
        /* padding: 20px; */
        position: relative;
        padding-bottom: 50px;
        /* border-top: 50px solid #000; */
    }
    .bgcol{
        position: absolute;
        width: 100%;
        height: 100%;
        background: var(--md_darkblue08);
        background: #ccc;
        background: url(/assets/img/header/Headerbild_Tanzsaal_small.webp) no-repeat center #000;
        background-size: cover;
        z-index: 100;

        top: 0;
    }
    header h1,
    header h2{
        color: var(--white);
        font-weight: normal;
        text-align: center;
        text-wrap: balance;
        text-transform: uppercase;
        padding: 50px 0 20px;
        z-index: 200;
        position: relative;
        text-align: center;

        /* font-size: clamp(1.5rem, -0.875rem + 8.333vw, 3.5rem); */
        font-size: clamp(2rem, 4vw, 4rem);


        padding-top: 2em;
        margin: 0 auto;
        max-width: 70%;
    }
    header h1{
        font-family: 'Rembank';    
        text-transform: none;
        /* text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--md_pink), 0 0 40px var(--md_pink), 0 0 50px var(--md_pink), 0 0 60px var(--md_pink), 0 0 70px var(--md_pink); */

        /* animation: glow 3s ease-in infinite alternate; */
        letter-spacing: 3px;

        
    }
    header h1:after{
        /* content: '';
        margin: 20px 0 30px;
        border-bottom: 10px solid gold;
        width: 35%;
        display: block;
        left: 20%;
        transform: translateX(-50%);
        position: absolute; */
        
    }
    @keyframes glow {
        from {
          text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
        }
        to {
          text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
        }
      }
    header p{
        color: var(--white);
        font-weight: normal;
        font-weight: bold;
        text-align: center;
        text-wrap: balance;
        z-index: 200;
        position: relative;
        max-width: 70%;
        margin: 0 auto;
        font-size: 1.3rem;
        line-height: 1.3em;
        text-shadow: 0 0 10px #000;
    }
    header.light p{
        color: #000;
        color: #fff;
    }

    main{
        display: block;
        width: 100%;        
        padding: 20px;
        box-sizing: border-box;
    }
    main a{
        color: #000;
    }
    #main{
        background-color: var(--md_beige);
        background-color: #fff;


    }
    #main h1{
        font-weight: 100;
        text-align: center;
        padding: 10px 20px;
        background-color: var(--md_darkblue);
        color: var(--white);
        font-size: 1.5em;
    }
    #main h4{
        font-weight: 100;
        text-align: center;
        padding: 10px 20px;
        color: var(--greydark);

        font-size: 1em;
    }
    /* #main h3{ */
    #main h3{
        font-weight: 100;
        text-align: center;
        text-align: left;
        font-weight: bold;
        padding: 10px 20px;
        padding: 10px 0px;
        color: var(--black);

        /* font-family: Roboto-bold; */
        font-size: 1.6em;
        text-transform: none;
        
    }

    section.slider{
        display: block;
        /* aspect-ratio: 1; */
        background-color: var(--md_darkblue);
    }
    h3{
        /* padding: 20px; */
        text-align: center;
        text-transform: uppercase;
        /* font-family: Roboto-bold; */
        font-size: 1.6em;
        font-size: 2rem;
        transition: 0.5s ease-in-out all;
    }
    .scrolling section > h3{
        /* background-color: pink !important; */
        /* animation:1s bgCol ease-in-out infinite alternate; */
        color: #fff;
        background-color: var(--md_pink);
            color: #fff;
    }
    @keyframes bgCol{
        from{
            background-color: #fff;
            color: #000;
        }
        to{
            background-color: var(--md_pink);
            color: #fff;
        }
    }
    section.slider h3{
        color: var(--white);
    }
    #kursoverview{
        display: block;
    }
    #kursoverview h3 {
        padding: 20px;
        text-transform: uppercase;
        /* background-color: #fff; */
        text-align: center;
    }
    #kursoverview .grid{
        grid-template-columns: 1fr 1fr;
        grid-template-columns: 1fr;
        /* background-color: violet; */
    }
    #kursoverview .grid-item{
        /* background-color: rgb(238, 130, 238, 0.5); */
        display: flex;
        align-items: center;
        justify-content: center;

        background: no-repeat center;
        background-size: cover;
        background-size: auto 100%;
        position: relative;

        aspect-ratio: 1;

    }
    #kursoverview .grid-item-kinder{
        background-image: url(/assets/img/kurse/kurs_kinder.webp);
    }
    #kursoverview .grid-item-jugendliche{
        background-image: url(/assets/img/kurse/kurs_jugendliche.webp);
    }
    #kursoverview .grid-item-erwachsene{
        background-image: url(/assets/img/kurse/kurs_erwachsene.webp);
    }
    #kursoverview .grid-item-paare{
        background-image: url(/assets/img/kurse/kurs_paare.webp);
    }
    #kursoverview .grid-item-zumba{
        background-image: url(/assets/img/kurse/kurs_zumba.webp);
    }
    #kursoverview .grid-item-privat{
        background-image: url(/assets/img/kurse/kurs_privatunterricht.webp);
    }


    .kurs{
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        transition: ease-in-out all .3s;
    }
    #kursoverview .grid-item .kurs{
        background-color: var(--md_violet08);
        border-radius: 50%;
    }
    #kursoverview .grid-item:hover .kurs{
        background-color: var(--md_violet03);
    }
    #kursoverview .grid-item{
        transition: 500ms ease-in-out all;
        border-radius: 50%;
        border: 10px solid #fff;
    }
    #kursoverview .grid-item:hover{
        background-size: auto 140%;
        /* transform: scale(2); */
    }
    #kursoverview .grid-item h5{
        background-color: var(--md_pink);
        text-transform: uppercase;
        color: #fff;
        padding: 10px 20px;
        border-radius: 20px;
        z-index: 300;
        /* font-size: 1.5em; */
        font-size: clamp(0.9rem, 2vw, 1.5rem);
    }

    footer{
        background-color: #06182f;
        background-color: transparent;
        background-color: #000;
        display: block;
        color: #333;
        color: #fff;
        /* padding-bottom: 30px; */
        background: #111;

    }
    footer a{
        text-decoration: none;
        /* font-weight: bold; */
    }
    footer .flex-box{
        display: flex;
        flex-wrap: wrap;
    }
    footer .f-box{
        /* display: flex; */
        width: 100%;
        padding: 50px;
        padding: 20px;
    }
    footer .f-box h5{
        text-transform: uppercase;
        font-size: 1.5rem;
    }
    footer .f-box h5 span{
        text-transform: none;
    }
    footer .f-box2{
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        flex-direction: column;
        flex-direction: row;
        align-items: flex-end;
        align-items: center;
        justify-content: center;
    }
    footer .f-box2 a{
        /* width: 33%; */
        text-align: center;
        align-items: flex-start;
        height: fit-content;
        margin: 5px;
        font-size: 0.8rem;
        text-decoration: none;
        color: #999;
    }
    footer a{
        
        color: #333;
        color: #fff;
    }

    .imgfull{
        display: block;
        overflow: hidden;
    }
    .imgfull img{
        display: block;
        width: 100%;
        height: auto;
        transition: ease-in-out 200ms all;
    }


    .animateimg{
        overflow: hidden;
    }
    .animateimg img{
        transition: ease-in-out 200ms all;  
    }
    .animateimg:hover img{
        transform: scale(1.1) rotate(3deg);
    }

    

/* } */

.grid-team{
    grid-template-columns: 1fr 1fr;
    /* grid-template-columns: 1fr; */
    /* background-color: var(--md_darkblue); */
}
@media(max-width: 500px){
    .grid-team{
        
        grid-template-columns: 1fr;
    }

}
.grid-team .grid-item{
    position: relative;
    /* aspect-ratio: 1; */
    margin: 10px;
}
.grid-team .grid-item img{
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
    
}
.grid-team .info{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--md_darkblue08);
    opacity: 0;
    cursor: pointer;
    transition: ease-in-out 300ms opacity;
    /* aspect-ratio: 1; */
    text-decoration: none;
}
.grid-team .grid-item:hover .info{
    opacity: 1;
}
.grid-team .info h5{
    color: #fff;
    font-size: 1.3rem;
    font-size: 1.5rem;
    font-size: 1.7rem;
    text-align: center;
    padding: 15% 10px;

}
.grid-team .info p{
    color: var(--md_pink);
    text-align: center;
    padding: 0 50px;
    font-size: 1.3rem;

}
/* +++++++++++++++++++++++++++++ */
/* Leitung */
/* +++++++++++++++++++++++++++++ */
#leitung .flex{
    display: flex;
    flex-wrap: wrap;
}
#leitung .flex-item{
    width: 100%;
}
#leitung .flex-item img{
    width: 60%;
    margin: 20px auto;
    display: block;
    border-radius: 50%;
    /* border: 5px solid #fff; */
    transition: ease-in-out 250ms all;
    aspect-ratio: 1;
    object-fit: cover;
}
#leitung .flex-item img:hover{
    transform: scale(1.1);
    box-shadow: 0 20px 20px rgba(0,0,0,0.3);
}
#leitung .flex-item h4{
    font-size: 1.8rem;
    text-align: center;
    padding: 20px;
}
#leitung .flex-item p{
    font-size: 1rem;
    padding: 0 20px 20px;
}


/* +++++++++++++++++++++++++++++ */
/* Kontaktformular */
/* +++++++++++++++++++++++++++++ */

form .inputblock{
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-top: 1rem;
}
form .col{
    width:100%;
}
form .col1 label{
    width: 100%;
    padding: 5px;
}
form .col2 input[type="text"],
form .col2 input[type="email"],
form .col2 input[type="tel"],
form .col2 textarea,
form .col2 select{
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #eee;
}
form .col2 input[type="text"]:focus,
form .col2 input[type="email"]:focus,
form .col2 input[type="tel"]:focus,
form .col2 textarea:focus{
    background-color: var(--md_darkblue01);
    border-color: var(--md_darkblue);
    outline: 1px solid var(--md_darkblue);
}
form .col2 textarea{
    font-family: sans-serif;
    height: 15rem;
}
form .col2 input[type="submit"]{
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    font-size: 1rem;
    color: #fff;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: var(--md_darkblue);
    background-color: var(--md_pink);
}
#formerfolg{
    width: 100%;
    /* aspect-ratio: 1; */
    color: #fff;
    background-color: #2da249;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    font-size: 1.2rem;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.3em;
}
#formerfolg strong{
    display: block;
}

/* 
#iframe-kurse-box{
    display: block;
    position: fixed;
    z-index: 5000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    transition: ease-in-out 500ms all;
}
#iframe-kurse-box.slidein{
    
    transform: translateY(0);
    
}
#iframe-kurse{
    display: block;
    position: absolute;    
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#iframe-kurse-close{
    display: block;
    position: fixed;
    z-index: 5100;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--md_darkblue09);
    color: #fff;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
} */
/* +++++++++++++++++++++++++++++ */
/* Teammember */
/* +++++++++++++++++++++++++++++ */
.teammember{
    background-color: #fff;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    position: relative;
}
.teammember img{
    display: block;
    max-width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    /* max-width: 500px; */
    /* max-width: 60%; */
    /* border-radius: 50%; */
    margin: 0 auto;
    
}
.teammember h5{
    display: block;
    /* text-align: center; */
    font-size: 1.8rem;
    margin: .5em 0 0;
    
}
.teammember p{
    display: block;
    /* text-align: center;
    font-size: 1.2rem; */
    line-height: 1.5em;
}
.teammember p.kategorien{
    color: var(--md_pink);
    font-weight: bold;
}
.teammembertext{
    order: 1;
}
.text-muted{
    color: #495057bf;
}
a.back{
    background-color: var(--md_darkblue);
    background-color: var(--md_pink);
    color: #fff;
    border-radius: 50%;
    width: 50px;
    aspect-ratio: 1;
    position: absolute;
    top: 10px;
    left: 10px;
    /* object-position: center; */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 500;
}
a.back:hover,
a.back:focus{
    background-color: var(--md_pink);
}
/* +++++++++++++++++++++++++++++ */
/* Kursdetails */
/* +++++++++++++++++++++++++++++ */

#kursdetail{
    display: flex;
    flex-wrap: wrap;
}
.kursdetailbox{
    width: 100%;
    padding: 40px 20px 20px;
    box-sizing: border-box;
    position: relative;
}
.kursdetailbox h2,
.kursdetailbox h3{
    display: block;
    font-size: 1.5rem;
    text-transform: uppercase;
    padding: 20px;    
    text-align: left;
}
.kursdetailbox dl{
    display: flex;    
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.kursdetailbox dl dt{
    width: 100%;
    width: 50%;
    margin: 0;
    padding: 10px 10px 10px 20px;
    box-sizing: border-box;
    font-weight: bold;
}
.kursdetailbox dl dd{
    width: 100%;
    width: 50%;
    margin: 0;
    /* margin-left: 50px; */
    padding: 10px;
    box-sizing: border-box;
}
.kursdetailbox ul{
    list-style: none;
    margin: 0;
    padding: 10px 20px;
}
.kursdetailbox ul li{
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
}
.kursdetailbox ul li time{
    color: var(--md_pink);
    /* content: '• '; */
    margin-right: 20px;
}
.kursdetailbox ul li span{
    color: var(--md_darkblue);
    font-weight: bold;
    margin-right: 20px;
    /* content: '• '; */
}
.kursdetailbox .showtermindetails{
    background-color: #999;
    color: #fff;
    border-radius: 5px;
    padding: 2px 10px;
    display: inline;
    font-size: 0.8rem;
    cursor: pointer;
}
.kursdetailbox .showtermindetails.aktiv{
    background-color: var(--md_darkblue);
}
.kursdetailbox .kursdetailsextendedinfo{
    background-color: var(--md_pink);
    color: #fff;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 10px;
    font-size: 0.8rem;
    /* opacity: 0.5;
    transform: translateY(-100%);
    transition: 300ms ease-in-out all;
    overflow: hidden; */
    /* height: 0; */
    display: none;
    
}
.kursdetailbox .kursdetailsextendedinfo.show{
    /* opacity: 1;
    transform: translateY(0);
    height: auto; */
    display: block;
}


/* +++++++++++++++++++++++++++++ */
/* News */
/* +++++++++++++++++++++++++++++ */


#news-box{
    padding: 20px;
    margin-bottom: 50px;
}
#news-box img{
    width: 100%;
    height: auto;
}
.news-block{
    
    margin-bottom: 50px;
}
#news-box h2{
    font-size: 1.8rem;
    padding: 0.5em 0 0;
}
#news-box .news-date{
    color: var(--md_pink);
    font-weight: bold;
    font-size: 1.2rem;
}
#news-box .news-text{
    font-size: 1.2rem;
    line-height: 1.3em;
    margin-top: 20px;
    
}
#news-box .news-trenner{
    display: inline-block;
    width: 30%;
    background-color: var(--md_pink);
    height: 5px;
    margin-top: 20px;
}

/* +++++++++++++++++++++++++++++ */
/* Popup */
/* +++++++++++++++++++++++++++++ */


.popupcontainer{
    /* padding: 20px; */
    width: 90%;
    max-width: 1100px;
    position: fixed;
    top: 50dvh;
    left: 50%;
    height: 0;
    max-height: 90dvh;
    min-height: 60dvh;
    translate: -50% -50%;
    z-index: 10000;
    transition: .5s ease-in-out all;
    scale: 0;
    opacity: 0;
}
.popupcontainer.show{
    scale: 1;
    opacity: 1;
}
.popupcontainer.close{
    scale: 0;
    opacity: 0;
}
.popupclose{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    color: var(--md_pink);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    box-sizing: border-box;
    cursor: pointer;
    background-color: var(--md_darkblue);
    border-radius: 50%;
}
.popupbox{
    /* position: absolute;
    top: 0;
    left: 0; */
    padding: 20px 20px 20px;
    width: 100%;
    background: var(--md_darkblue09);
    border: 5px solid var(--md_pink);
    /* border-top: none;
    border-bottom: none; */
    box-sizing: border-box;
    overflow-y: scroll;
    height: 100%;
}
.popupcontainer.big .popupbox{
    padding: 30px 20px 20px;
    
}
.popupbild{
    width: 100%;
    height: auto;
    display: block;
}
h4.popuptitel{
    font-size: 1.5rem;
    color: #fff;
    padding: .5em 0;
    font-weight: normal;
}
.popupcontainer.big .popuptitel{
    font-size: 2.5rem;
    /* text-align: center; */
}
.popuptext{
    color: #fff;
    font-size: 1.2rem;
    padding-bottom: 50px;
}
.popupbtn{
    font-size: 1.2rem;
    color: #fff;
    padding: 10px 20px;
    background-color: var(--md_pink);
    text-transform: uppercase;
    border: none;
    text-decoration: none;
    display: inline-block;
}

#kurskalender{
    min-height: 400px;
    /* height: 1200px; */
    /* min-height: 550px; */
    background: #fff url(/assets/img/1488.gif) no-repeat center;
}


/* +++++++++++++++++++++++++++++ */
/* Ausstattung */
/* +++++++++++++++++++++++++++++ */

.ausstattung-box{
    display: flex;
    flex-wrap: wrap;
    margin: 50px 0;
}
.ausstattung-box > div{
    width: 100%;
    text-align: center;
    /* border-right: 5px solid var(--md_pink); */
    box-sizing: border-box;
}
.ausstattung-box > div:last-child{
    border: none;
}
.ausstattung-box > div > img{
    width: 33%;
    height: auto;
}
.ausstattung-box > div > h5{
    text-transform: uppercase;
    font-size: 1.5rem;
}
.ausstattung-box > div ul{
    list-style: none;
    margin: 0;
    padding: 0;
    margin: 30px 0;
}
.ausstattung-box > div li{
    font-size: 1.2rem;
    line-height: 1.5em;
    margin: 0;
    padding: 0;
}


/* +++++++++++++++++++++++++++++ */
/* Tanzkurse */
/* +++++++++++++++++++++++++++++ */

#tanzkurse #tanzkurse-overview{
    /* background-color: antiquewhite; */
    padding: 20px;
}
#tanzkurse h2{
    color: var(--md_pink);
    text-align: center;
    margin: 20px;
    text-transform: uppercase;
    /* letter-spacing: 2px; */
}
#tanzkurse h3{
    text-align: left;
    text-transform: none;
    font-size: 1.5rem;
    text-align: center;
    color: var(--md_darkblue);
}
#tanzkurse p{
    padding: 0 20% 20px;
    text-align: center;
    margin-top: 0;
}
#tanzkurse hr{
    background-color: var(--md_pink);
    width: 60%;
}
#tanzkurse a{
    color: var(--md_pink);
    text-decoration: none;
    font-weight: bold;
}


/* +++++++++++++++++++++++++++++ */
/* Imagevideo */
/* +++++++++++++++++++++++++++++ */


#imagevideo video{
    width: 100%;
    height: auto;
    /* aspect-ratio: 16/9; */
    display: block;
}



/* +++++++++++++++++++++++++++++ */
/* Social */
/* +++++++++++++++++++++++++++++ */


.social a{
    width: 45px;
    height: 45px;
    display: inline-block;
    margin-right: 20px;
    margin-right: 7px;
}
.social a img{
    width: 100%;
    height: auto;
    display: block;
}


/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */

/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */

/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */

/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */

/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++++++++++ */

/* @media (min-width: 700px) { */
/* @media (min-width: 1000px) { */
@media (min-width: 1280px) {
    #menuicon{
        display: none;
    }
    #top-outter{
        /* max-width: 1200px; */
        height: 100px;
        /* border-bottom: 1px solid var(--md_pink); */
        left: 0;
        top: 0;

        /* top: 20px; */

        border-bottom: 1px solid var(--md_pink);
        border-bottom: none;
        background-color: transparent;
        /* background-color: pink; */
    }
    #top{
        /* display: block; */
        /* padding-top: 50px; */
        max-width: 1200px;
        max-width: 1440px;
        width: 90%;
        width: 100%;
        height: 100px;
        /* background-color: chartreuse; */
        border-bottom: 1px solid var(--md_pink);
        border-bottom: none;

        /* border-radius: 10px; */
        /* overflow: hidden; */
        top: 20px;
        /* box-shadow: 0 0 10px rgba(255,255,255,0.9); */
        /* border: 2px solid rgba(255,255,255,0.2); */
    }
    /* #distancer, */
    .distancer{
     
        height: 100px;
        /* top: 40px; */
    }
    /* #top .flexbox-1{
        width: auto;
        background-color: violet;
        display: block;
    } */
    /* #top .flexbox-2{
        width: 150px;
        
    } */

    main, #main h3{
        padding: 0;
    }
    #logo {
        transform: translateY(-50%);
        top: 50%;
        right: 20px;
        /* width: calc( 100% - 100px); */
        /* width: 100px; */
        height: 80px;
        height: 100%;
        z-index: 1200;
        z-index: 10200;
    }
    /* #top .flexbox-3{
        width: 100px;
    
    } */
    #top #menu{
        transform: none;
        transition: none;
        position: relative;
        top: 0;
        width: auto;
        width: 100%;
        height: 100px;
        padding: 0;
        display: block;
        margin: 0;
        padding: 0;
        /* background-color: magenta; */
        box-sizing: border-box;
        /* z-index: 1200; */
        /* max-height: 50px; */
        /* overflow: visible; */
        /* overflow: hidden; */
        background-color: var(--md_darkblue);
        background-color: #fafafa;
        overflow-y: visible;
    }
    #menu ul{
        width: 100%;
        position: relative;
        
        
        padding: 0;
        margin: 0;
        height: 100%;
        /* background-color: olive; */
        
    }
    #menu ul li{
        display: inline-block;
        position: relative;
        height: 100%;
        border: none;
        /* background-color: aqua; */
        /* border-right: 1px solid red; */
    }
    #menu ul li a{
        padding: 20px 20px;
        display: flex;
        height: 100%;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }
    header{
        aspect-ratio: 16 / 9;
        aspect-ratio: 3/1;
        aspect-ratio: 5/1;
        box-sizing: border-box;
        /* border-top: 100px #000 solid; */
        
    }
    header.withslider{
        aspect-ratio: auto;
        height: calc(100vh - 100px);
    }
    
    .pack{
        display: flex;
        flex-wrap: wrap;
        background-color: var(--md_beige);
        background-color: #fff;
        justify-content: space-between;
        padding: 2rem 0;
    }
    .pack > #main,
    .pack > section{
        width: 50%;
        width: 100%;
        box-sizing: border-box;
        /* max-width: 700px; */
    }

    #kursoverview .grid{
        grid-template-columns: 1fr 1fr 1fr;
    }

    .grid-even{
        grid-template-columns: repeat(2, minmax(0px, 1fr));
        gap: 100px;
    }

    footer .flex-box{
        padding: 0;
    }

    footer .f-box{
        width: 50%;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .grid-team{
        grid-template-columns: 1fr 1fr 1fr;
    }
    #leitung .flex-item{
        width: 50%;
    }

    form .col1.col3{
        width: 30%;
    }
    form .col2.col3{
        max-width: 70%;
        width: fit-content;
    }   
    .kursdetailbox{
        width: 50%;
    }

    .popupclose{
        top: 30px;
        right: 30px;
    }
    .popupcontainer.big .popupbox{
        padding: 100px;
    }    
    .popupcontainer.big .popuptitel{
        font-size: 5rem;
    }
    .popuptext{
        font-size: 1.2rem;
    }
    .popupbtn{
        font-size: 1.2rem;
        padding: 10px 80px;
    }

    .kursdetailbox dl dt{
        width: 40%;
    }
    .kursdetailbox dl dd{
        width: 60%;
    }


    /* .teammember p{
        padding: 20px 20%;        
    } */
    .teammember img{
        padding-top: 3rem;
    }
    .teammembertext{
        padding-top: 3rem;
        order: 0;
    }

    .ausstattung-box > div{
        width: 33%;
    }
    #leitung .flex-item p{
        padding: 0 50px;
        font-size: 1.2rem;
        line-height: 1.5em;
    }
    .ausstattung-box > div{
        border-right: 5px solid var(--md_pink);
    }



    #menu ul.level-1{
        position: absolute;
        top: 100%;
        left: 0;
        display: block;
        width: auto;
        height: auto;
        display: none;
    }
    #menu ul.level-1 li.li-level-1{
        position: relative;

    }
    #menu li.li-level-0 a:hover,
    #menu li.li-level-0 a:focus{
        background-color: var(--md_pink);    
        /* background-color: rgba(230, 0, 115, 0.2); */

        cursor: pointer;
    }
    #menu ul.level-1 li.li-level-1:after{
        content:'>';
        position: absolute;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        top: 0;
        right: 0;
        padding: 0 10px;
    }
    #menu li.li-level-0.aktiv ul.level-1{
        display: block;
    }
    #menu ul.level-2{
        position: absolute;
        top: 0;
        left: 100%;
        display: block;
        width: auto;
        height: auto;
        display: none;
    }
    #menu li.li-level-0.aktiv li.li-level-1.aktiv ul.level-2 {
        display: block;
    }
    #menu ul li ul.level-1 li{
        /* padding-right: 20px; */
    }
    #menu ul li ul.level-1 li,
    #menu ul li ul.level-1 li a{
        position: relative;
        display: block;
        width: auto;
        background-color: var(--md_darkblue);
        background-color: rgba(230, 0, 115, 0.2);
        color: #fff;
        height: auto;
        text-align: left;
        white-space: nowrap;
    }
    #menu ul li ul.level-1 li{
        border-top: 1px solid #fff;
        
    }
    #menu ul li ul.level-1 li a{
        padding: 10px 30px 10px 20px;
        transition: 200ms ease-in-out all;
    }
    #menu ul li ul.level-1 li a:hover,
    #menu ul li ul.level-1 li a:focus{
        background-color: var(--md_pink);
    }
    
}




/* ++++++++++++++++++++++++++++++ */
/* Ergänzungen Details */
/* ++++++++++++++++++++++++++++++ */

.padding_container{
    
    padding: 3rem;
    word-break:break-word ;
}

.padding_container .flex-div{
    display: flex;
    flex-flow: row wrap;
}
.padding_container .badgediv{
    display: flex;
    flex-flow: row wrap;
    width: 20%;
    gap: 10px;
    cursor: default;
}
.padding_container .ordering{
    order: 1;
}

.padding_container img{
    max-width: 100%;
}

.padding_container .kursdetails{
    border-top: 1px solid black;
    background: #e9e9e9;
    padding: 2rem;
    display: flex;
    flex-flow: row wrap;
}

.padding_container li::marker{
    color: #e60073;
    color: var(--md_pink);
    font-size: 1.6rem;
}

.padding_container .flex-col{
    display: flex;
    flex-flow: column nowrap;
}

.padding_container .boxingleft{
    flex: 1 1 70%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
}
.padding_container .boxingmiddle{
    flex: 1 1 30%;
    display: flex;
    flex-wrap: wrap;

    flex-flow: row wrap !important;
    flex: none !important;
    display: block !important;
}
.padding_container .boxingmiddle > small,
.padding_container .boxingmiddle > div{
    width: 100%;
    flex: none !important;
}
@media screen and (max-width: 1000px){
    .padding_container .boxingleft{
        flex: 1 1 100%;
    }    
    .padding_container .boxingmiddle{
        flex: 1 1 100%;    
    }
}
.padding_container .boxingright{
    flex: 1 1 0%;
    justify-content: flex-end;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.padding_container .customcolor, .customcolor{
    color: #e60073;
    color: var(--md_pink);
    border-color: #e60073;
    border-color: var(--md_pink);

    /* background-image: var(--gradient);
    background-clip: text;
    color: transparent;
    background-size: 400%;
    animation: bg-animate 20s infinite alternate; */
    font-weight: bold;
}
.booking-options{
    padding: 20px 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
.booking-options a{
    max-width: 400px;
}
@keyframes bg-animate {
    0%{
        background-position: left;
    }
    100%{
        background-position: right;
    }
}
.customcolor-secondary{
    color: #ffe800;

    color: var(--md_pink);
    font-weight: bold;
}

 .btn{
    background: transparent;
    text-decoration: none;
    border: 1px solid transparent;
    padding: 5px 30px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    font-size: clamp(0.8rem, 0.72rem + 0.4vw, 1.2rem);
    user-select: none;
    display: block;
    text-align: center;
}
.padding_container .badgediv .btn{
    cursor: default;
}
.btn-small{
    width: fit-content;
    padding: 2px 30px;
    padding: 2px 15px;

    padding: 15px 30px;
    border-radius: 0;
    text-transform: uppercase;
}
.btn-fit{
    width: fit-content;
}
.padding_container .fsize-08{
    font-size: 0.8rem;
}
.btn-accent{
    background-color: #e60073;
    background-color: var(--md_pink);
    border-color: #e60073;
    border-color: var(--md_pink);
    color: #fff;
}
.btn-accent:hover,
.btn-accent:focus{
    background-color: #fff;
    border-color: #e60073;
    border-color: var(--md_pink);
    color: #e60073;
    color: var(--md_pink);
}
.btn-secondary{
    background-color: #ffe800;
    border-color: #ffe800;
    border-color: #999;
    /* color: #e60073; */
    color: var(--md_pink);
    color: #fff;
    background-color: #999;
}
.btn-secondary:hover{
    background-color: #ffe800;
    border-color: #ffe800;
    border-color: #999;
    /* color: #e60073; */
    color: var(--md_pink);
    color: #fff;
    background-color: #999;
}
/* .btn-secondary:hover{
    background-color: #fff;
    border-color: #ffe800;
    color: #e60073;
    color: var(--md_pink);
} */
.btn-disabled{
    background-color: #828282;
    border-color: #828282;
    color: #fff;
    opacity: 0.4;
    cursor: default;
}
.btn-disabled:hover,
.padding_container .btn-disabled:hover,
.btn-disabled:focus
.padding_container .btn-disabled:focus
{
    background-color: #828282;
    border-color: #828282;
    color: #fff;
    opacity: 0.4;
}

.btn-yellow{
    background: #ffe800;
}
.btn-green{
    background: green;
}

.padding_container .hidden{
    opacity: 0;
    display: none;
}

.padding_container .courseoffers{
    margin-bottom: 1.5rem;
}





/* +++++++++++++++++++++++++++++ */
/* Teammember Ergänzung */
/* +++++++++++++++++++++++++++++ */

.padding_container h3{
    padding: 0;
    text-align: start;
    /* margin: 3rem 0 2rem; */
}
.center .padding_container h3{
    text-align: center;
}

.padding_container .info2{
    margin-top: 2rem;
}

.padding_container .grid-team,
.content-grid .grid,
.padding_container .grid{
    background-color: #fff;
    gap: 2rem;
}

.padding_container .grid-team .grid-item img {
    margin-bottom: 1.5rem;
}

.padding_container a{
    text-decoration: none;
}

.padding_container a:hover,
.padding_container a:focus{
    border-color: #e60073;
    border-color: var(--md_pink);
    background-color: #fff;
    color: #e60073;
    color: var(--md_pink);
}

.padding_container .width-75{
    width: 75%;
}

.unserteam .p{
    width: 75%;
}




















#form-register{
    width: 100%;
    max-width: 700px;
}
#form-register legend{
    color: var(--md_pink);
    color: #eee;
    
    
}
#form-register fieldset{
    margin: 20px 0;
    padding: 20px;
    display: block;
    border-color: #999;
    border-style: solid;
    background: #eee;
}
#form-register label{
    margin-top: 20px;
    display: block;
}
#form-register small{
    font-size: .7em;
    line-height: 1.3em;
    color: #999;
    display: block;
    
    background-color: #333;
    font-size: .9em;
    color: #eee;
    /* color: ; */
}
#form-register input[type="text"],
#form-register input[type="email"],
#form-register input[type="password"],
#form-register input[type="date"]{
    padding: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}
#form-register input[type="submit"]{
    padding: 10px 20px;
    font-size: 1em;
    /* width: 100%; */
    /* box-sizing: border-box; */
    background-color: var(--md_pink);
    color: #fff;
    border: none;
    cursor: pointer;
}
#form-register input[type="submit"]:hover,
#form-register input[type="submit"]:focus{
    background-color: var(--md_darkblue);
}
#form-register select{
    padding: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}
#form-register option{
    padding: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}
#form-register textarea{
    padding: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
    font-family: sans-serif;
}
#form-register a{
    color: var(--md_pink);
    color: #fff !important;
    /* font-weight: bold; */
    text-decoration: underline;
}


.padding_container .mb-0{
    margin-bottom: 0.5rem;
}

.padding_container .w-fit{
    width: fit-content;
}

.padding_container .blue{
    color: blue;
}

.padding_container .space-between{
    justify-content: space-between;
}
.padding_container .justy-center{
    justify-content: center;
}
.padding_container .align-center{
    align-items: center;
}

.padding_container .cg-35{
    column-gap: 35px;
}
.padding_container .leistungleft,
.padding_container .leistungright{
    flex: 0 1 100%;
}
.padding_container .container-even{
    flex: 0 1 45%;
}

.max-w-90, .padding_container .max-w-90{
    max-width: 90%;
}

.padding_container .svg{
    aspect-ratio: 1;
    width: 80px;
    margin: 2rem 0 1rem;
}

.padding_container .gap-30{
    gap: 30px;
}

.padding_container .home-leistung{
    /* padding-right: 40px;
    box-sizing: border-box;
    padding-left: 10px; */
    max-width: 700px;
    gap: 15px;

}
.leistung-block{
    max-width: 700px;
    column-gap: 20px;
}
/* .padding_container .home-leistung img{
    aspect-ratio: 16/9;
    object-fit: contain;
}
.padding_container .home-leistung img.top{
    object-position: top left;
}
.padding_container .home-leistung img.bottom{
    object-position: bottom left;
} */

.padding_container .kinder{
    background: url(../img/svg/icon_kinder.svg) center center/contain no-repeat;
}
.padding_container .jugendlich{
    background: url(../img/svg/icon_teenager.svg) center center/contain no-repeat;
}
.padding_container .teenager{
    background: url(../img/svg/icon_teenager.svg) center center/contain no-repeat;
}
.padding_container .erwachsen{
    background: url(../img/svg/icon_erwachsene.svg) center center/contain no-repeat;
}
.padding_container .senior{
    background: url(../img/svg/icon_senioren.svg) center center/contain no-repeat;
}

/* .leistung-font{
    font-size: 0.825em;
    font-weight: 600;
} */
.leistung-font-h{
    font-size: 1.3em;
    /* font-family: Roboto-bold; */
}



.bg-red{
    background-color: #ff0051;
}








.table-wrap{
    display: block;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 30px;
}
table.table-list{
    /* display: block; */
    width: 100%;
    border-collapse: collapse;
    min-width: 100%;
}
table.table-list thead tr{
    background-color: #eee;

}
table.table-list thead,
table.table-list tbody{
    /* display: block; */
    width: 100%;
}
table.table-list th{
    padding: 10px;
    text-align: left;
    font-weight: bold;
}
table.table-list td{
    padding: 10px;
}
table.table-list td a.edit {
    /* background-color: var(--md_darkblue); */
    background-color: #ccc;
    display: inline-block;
    padding: 3px 5px;
    margin: 0;
    line-height: 1em;
}
table.table-list td a.delete {
    background-color: #c00;
    display: inline-block;
    padding: 5px 10px;
    margin: 0;
    line-height: 1em;
}
table.table-list td a.edit svg{
    padding: 0;
    margin: 0;
}

table.table-list td a.edit:hover,
table.table-list td a.delete:hover {
    background-color: #333;
    /* background-color: #ccc; */
}
table.table-list td a.edit:hover{
    background-color: #aaa;
    /* background-color: #ccc; */
}
table.table-list tbody tr:nth-child(even){
    background-color: #fafafa;
    
}
table.table-list tbody tr:hover{
    background-color: #eee;
    border-color: var(--md_pink);
    
}
table.table-list tr{
    border-bottom: 1px solid #ccc;
    
}


.toolbar{
    background-color: var(--md_darkblue);
    padding: 5px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;

    margin-bottom: 30px;
}
.toolbar a{
    padding: 5px 10px;
    color: #fff;
    background-color: var(--md_pink);
    display: inline-block;
}

.gesundheitstraining{
    color: #fff;
    padding-bottom: 2rem;
}

.gesundheitstraining-left{
    flex: 0 1 65%;
}
.gesundheitstraining-right{
    flex: 0 1 30%;
    min-height: 150px;
    background: url("../img/kurs_placeholder_studio.webp") center center / cover no-repeat;
    /* background: url("../img/menu/praeventionstraining.webp") center center / cover no-repeat; */
}

.gesundheitstraining-desc{
    /* background-color: #ffe800; */
    padding: 30px 40px;
    padding: 20px;
}

.roboto-bold{
    /* font-family: Roboto-bold; */
}
.gesundheitstraining-wrap{
    padding: 3rem 0;
    row-gap: 40px;
}

.gesundheitstraining-top-part{
    margin-bottom: 3rem;
}

.gesundheitstraining-top-part-left{
    flex: 0 1 55%;
    min-height: 300px;
}
.gesundheitstraining-top-part-right{
    flex: 0 1 35%;
    min-height: 150px;
    /* background: url('../img/kurs_placeholder_studio.webp') center center /cover no-repeat; */
    background: url('../img/menu/praeventionstraining.webp') center center /cover no-repeat;
}

.gesundheitstraining-desc-item{
    flex: 0 1 25%;
    padding: 0 20px;
    padding: 0 35px;
    box-sizing: border-box;

    /* border: 5px solid #000; */
    padding: 20px;

    
/* background: linear-gradient(45deg,  rgba(255,215,0,1) 0%,rgba(255,255,255,1) 100%);  */

}
@media(max-width: 1000px){
    .gesundheitstraining-desc-item {
        flex: 0 1 50%;
    }
}
.flatrate-wrap{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.flatrate-wrap .gesundheitstraining-desc-item{
    flex: 0 1 20%;
    width: 20%;
    padding: 50px 20px;
    box-sizing: border-box;
    border: 3px solid #999;
    /* margin: 5px; */
    border-radius: 20px;
}
@media(max-width: 1024px){

    .flatrate-wrap .gesundheitstraining-desc-item{
        flex: 0 1 50%;
    }
}
@media(max-width: 600px){

    .flatrate-wrap .gesundheitstraining-desc-item{
        flex: 0 1 100%;
    }
}
.flatrate-wrap .gesundheitstraining-desc-item:hover{
    
    border: 3px solid var(--md_pink);
    /* color: #000 !important; */
    background-color: #000;
    /* transform: scale(1.05); */
    z-index: 100;
}
.flatrate-wrap .gesundheitstraining-headline{
    font-size: 2rem;
}
.flatrate-wrap .price{
    font-size: 2.5rem;
    color: var(--md_pink);
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 30px 0;
    width: 100%;
    /* text-shadow: 0px 0px 3px #fff; */
    /* -webkit-text-stroke: 1px #fff; */
    
}
.flatrate-wrap small{
    /* font-size: 0.8rem; */
    color: var(--md_pink);
}
.flatrate-wrap .footnote{
    padding-top: 30px;
    font-size: 0.8rem;
    line-height: 1em;
    color: #ddd;
}
.flatrate-wrap .gesundheitstraining-data{
    padding-bottom: 30px;
    text-align: center;
    background-color: var(--md_pink);
    margin-bottom: 30px;
}
.flatrate-wrap .gesundheitstraining-data span{
    display: block;
    font-size: 0.8rem;
}

.gesundheitstraining-icon-wrap{
    margin-bottom: 0.7rem;
    text-align: center;
}
.gesundheitstraining-icon{
    background: url('../img/svg/icon_party.svg') center center / contain no-repeat;
    width: 60px;
    width: 100px;
    aspect-ratio: 1;
    /* margin: 0 auto; */
    margin-left: 20%;
    margin-left: 0;
    /* left: 50%; */
    display: inline-block;
}
.gesundheitstraining-headline{
    /* text-align: center; */
    color: #e60073;
    color: var(--md_pink);
    margin-left: 24%;
    margin-left: 0;
    margin-bottom: 0.7rem;
    font-weight: 600;
    text-align: center;
}
.gesundheitstraining-text{
    color: #000;
}

.gesundheitstraining-section hr{
    margin: 0;
}

.schritte{
    padding: 3rem 0 1rem;
    box-sizing: border-box;
    width: 60%;
}

.padding_container .bearbeiten{
    position: relative;
    font-size: 0.8rem;
    color: #000;
    float: right;
    opacity: 0;
    z-index: 0;
    transition: all 0.5s ease-in;
}
.padding_container .bearbeiten.show{
    z-index: 1;
    opacity: 1;
}

.padding_container .memberbtn{
    margin-top: 1rem;
}
.padding_container .memberbtn.hide{
    display: none;
}

.inline-block{
    display: inline-block;
}

.margin-left-auto{
    margin-left: auto;
}


/* Buchung START */

.padding_container .flex-grow{flex:1;}
.padding_container .justify-around{justify-content: space-around;}
.padding_container .detailbox{background-color: #e9e9e9; color:#000; padding:2rem; box-sizing:border-box; margin-bottom: 1.5rem;}
.padding_container .innerbox{column-gap:5%}
/* .padding_container .buchungsdetails{ background-color:#fff; color:#fff; padding:2rem; display:flex; flex-flow:row wrap; width:fit-content;width: fit-content; max-width: 900px; column-gap: 10px; margin: 0 auto;} */
.padding_container .buchungsdetails{ background-color:#fff; color:#fff; 
    padding:0 0 2rem; 
    display:block; width:100%; max-width: 900px; margin: 0 auto;
    box-sizing: border-box;
}
.padding_container .buchungsdetails h2{width:100%; text-align:center}
.padding_container .detail{padding:0.8rem 0}
.padding_container .buchungsdetails p{width: 100%;text-align: end;}			
.padding_container .buchungsdetails #weiter,
.padding_container .buchungsdetails #payment
{padding: 0 2rem;
box-sizing: border-box;}			

.padding_container .buchungsdetails .detailbox p{
    width: 100%;
    text-align: start;
    text-align: center;
}			
.padding_container .accordion{display:grid; grid-template-rows:1fr; transition:grid-template-rows 500ms ease}
.padding_container .accordion.close{grid-template-rows:0fr;}
.padding_container .personendatenform{overflow:hidden; display:flex; flex-flow:row wrap; justify-content:space-between;}
.padding_container .formstyle{padding: 5px;font-size: 1em;width: 100%;box-sizing: border-box;}
.padding_container .laufzeitSelect{padding: 5px;font-size: 1em;width: 100%;box-sizing: border-box; margin:1rem 0;}
.padding_container .personendatenform .listdisplay{border: transparent;background-color: transparent;pointer-events: none;appearance: none;}
/* Buchung ENDE */

.paketpreise .grid-item{
    aspect-ratio: auto;
    background: #e3e3e3;
    box-sizing: border-box;
    padding: 20px;
    padding: 2.5rem;
}

.preisebig{
    /* font-family: Roboto-bold; */
    font-size: 7rem;
    line-height: 7rem;
    padding: 3rem 0 1rem;
}
.infobtns{
    margin-bottom: 1rem;
    gap: 10px;
}

.infoicon{
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    aspect-ratio: 1;
    background: url(../img/svg/icon_kinder.svg) center center/contain no-repeat blue;
    cursor: pointer;
}

.paragraphwrapper{
    border-bottom: 1px solid black; 
    margin-bottom: 1rem;
}

.paragraphwrapper p{
    max-width: 1000px;
}

.news .btn-small{
    height: fit-content;
}

.padding_container.news img,
.padding_container.events img{
    margin-block-end: 1em;
    height: auto !important;
}

.eventinfos{
    margin-bottom: 1rem;
    display: flex;
    user-select: none;
}
.eventinfoborder{
    width: 100%;
    border-bottom: 1px solid #e60073;
    border-bottom: 1px solid var(--md_pink);
}
.eventinfotext{
    white-space: nowrap;
    padding-right: 40px;
    box-sizing: border-box;
    background: url(../img/svg/arrow-down.svg) right/contain no-repeat;
}
.eventaccordion{
    display: grid;
    grid-template-rows: 0fr;
    transition: all .5s ease-in-out;
}
.eventinfos.open ~ .eventaccordion{
    display: grid;
    grid-template-rows: 1fr;
    margin-bottom: 2rem;
}
.eventinfos.open .eventinfotext{
    padding-left: 40px;
    padding-right: 0;
    overflow: hidden;
    width: 0;
    background-image: url(../img/svg/arrow-up.svg);
}
.overflow-hidden{
    overflow: hidden;
}

.posrel{
    position: relative;
}
.eventdate{
    position: absolute;
    top: 0;
    left: 0;
    background: #e60073;
    background: var(--md_pink);
    padding: 10px 20px;
    -webkit-text-stroke-width: thick;
    color: #fff;
}
.eventmonth{
    -webkit-text-stroke-width: thin;
    font-size: .7em;
}
.eventtime{
    position: absolute;
    bottom: 30%;
    background: black;
    padding: 10px;
    color: #fff;
}





.previewimg{
       /* width: 80%; */
       height: 500px;
       aspect-ratio: 16/9;
       border: 3px solid black;
       background: center center/contain no-repeat;
       
}
.img_select_wrap{
    width: 80%;
    width: 100%;
    overflow-x: auto;
    /* background: green; */
    height: 150px;
    margin-top: 1.5rem;
    display: flex;
}
.scrolldiv{
    display: flex;
    flex: 1;
    gap: 15px;
    padding-bottom: 0.5rem;
    user-select: none;
}
.thumbnailimges{
    flex: 0 0 250px;
    border: 2px outset black;
}

.thumbnailimges.active{
    border: 2px solid #2da249;
}


.administrativ_container{
    background-color: #e9e9e9;
    color: #000;
    padding: 2rem;
    flex: 0 1 100%;
}
.mindestlaufzeit_wrap{
    max-width: 400px;
    max-width: 1200px;
    margin: 0 auto;

    position: relative;
}
.administrativ_container label{
    display: block;
}

.padding_container .w-100{flex: 1 1 100%;}
.padding_container .w-70{flex: 0 1 70%;}
.padding_container .w-60{flex: 0 1 60%;}
.padding_container .w-50{flex: 0 1 50%;}
.padding_container .w-48{flex: 0 1 48%;}
.padding_container .w-40{flex: 0 1 40%;}
.padding_container .w-30{flex: 0 1 30%;}
.padding_container .w-20{flex: 0 1 20%;}

.padding_container .w-30.imgorder{
    /* background-color: var(--md_pink); */
    /* align-content: center; */
}
.padding_container .w-30.imgorder img{
    display: block;

    margin-top: 4rem;
}

@media screen and (max-width:600px) {
    .dispdesktop{
        display: none;
    }
    .dispmobil{
        display: block;
    }
    .padding_container .imgorder{
        order: 0;
    }

    .padding_container .badgediv {width: 100%;}

    .padding_container .mw-100{flex: 1 1 100%;}
    .padding_container .mw-70{flex: 0 1 70%;}
    .padding_container .mw-60{flex: 0 1 60%;}
    .padding_container .mw-50{flex: 0 1 50%; }
    .padding_container .mw-40{flex: 0 1 40%;}
    .padding_container .mw-30{flex: 0 1 30%;}
    .padding_container .kursdetails{gap:5px;}

    .padding_container{
        padding: 3rem;
        padding: 1rem;
    }

    .padding_container .kursdetails {
        
        flex-flow: column nowrap;
    }

    .padding_container .home-leistung {
        padding: 0;
        margin-bottom: 20px;
        gap: 20px;
    }

    .padding_container.leistung{
        padding: 1rem 0;
    }
    .padding_container.gesundheitstraining{
        padding: 1rem;
    }

    .padding_container .leistung-block{
        padding: 20px;
    }

    .gesundheitstraining-left,
    .gesundheitstraining-right{
        flex: 1 1 100%;
    }
    .gesundheitstraining-left{
        order: 1;
    }
    .gesundheitstraining-right{
        order: 0;
        margin-bottom: 1rem;
    }

    .gesundheitstraining-top-part-left,
    .gesundheitstraining-top-part-right{
        flex: 1 1 100%;
    }

    .gesundheitstraining-desc-item {
        flex: 1;
        padding: 0;
    }
    .schritte{
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .unserteam .p{
        width: 100%;
    }

    body{
        font-size: 0.8rem;
        font-size: 1rem;
        line-height: 1.5em;
    }
}
@media screen and (max-width: 1199px) {
    .padding_container .leistungcontent-wrap{
        justify-content: center;
    }
}


@media screen and (min-width:600px) {
    .dispdesktop{
        display: block;
    }
    .dispmobil{
        display: none;
    }

    .padding_container .description{
        padding: 0 4rem 1.2rem 0;
    }
    
    .padding_container .kontaktformwrap form{
        width: 100%;
        max-width: 700px;
    }

    .padding_container .kontaktformwrap .description{
        width: 100%;
        padding: 0 0 1.2rem 0;
        max-width: 865px;
    }
    
    #kursdetail .h2{
        min-width: 60%;
    }
}

@media screen and (min-width: 700px){
    .paketpreise .grid{
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (min-width: 1200px){
    .padding_container .leistungleft,
    .padding_container .leistungright{
        flex: 1 1 45%;
    }
    .padding_container .leistung-block{
        column-gap: 35px;
    }
}
@media screen and (min-width: 1300px){
    .paketpreise .grid{
        grid-template-columns: 1fr 1fr 1fr;
    }
    
}

@media screen and (min-width: 1500px) {
    .paketpreise .grid{
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}









/* The message box is shown when the user clicks on the password field */
#pwmessage {
    display:none;
    /* background: #f1f1f1; */
    color: #000;
    position: relative;
    padding: 10px;
    /* margin-top: 10px; */
    font-size: 0.8em;
  }
  
  #message span {
    padding: 5px 5px 5px 25px;
    /* font-size: 18px; */
    display: block;
  }
  
  /* Add a green text color and a checkmark when the requirements are right */
  .valid {
    color: green;
  }
  
  .valid:before {
    position: relative;
    left: -5px;
    content: "✔";
  }
  
  /* Add a red text color and an "x" when the requirements are wrong */
  .invalid {
    color: red;
  }
  
  .invalid:before {
    position: relative;
    left: -5px;
    content: "✖";
  }

#showpass{
    cursor: pointer;
}
#showpass:before{
    position: relative;
    left: -5px;
    content: "👁";    
}


textarea:required:invalid, textarea:focus:invalid, 
input:required:invalid, input:focus:invalid {
    border: 1px solid red; 
    
}
textarea:required:valid,
input:required:valid {
    border: 1px solid green;
}




#headervideo{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}
@media (max-width: 1000px){
    
    #headervideo{
        top: 50px;
    }
}
header{
    overflow: hidden;
    background-color: #000;

    padding-top: 100px;
}
@media (max-width: 1000px){
    header{
        padding-top: 50px;
    }
}
header.light .bgcol{
background-color: rgba(255,255,255,0.2);

}
header.light h1{
    color: #000;

    color: #fff;
        text-shadow: 0 0 10px #000;

}


/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* MEGAMENU */

#menu .megamenu{
    background-color: rgba(255,255,255,0.9);
    position: fixed;
    top: 101px;
    top: 120px;
    left: 50%;
    width: 100%;
    max-width: 1440px;
    transform: translateX(-50%);   
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease-in-out, visibility 0ms linear;
    max-height: 80vh;
    max-height: 80%;
    height: auto;
    overflow-y: auto;
    -webkit-transform: translateX(-50%) translateZ(0) translate3d(0,0,0);
    

}

#menu .megamenu.show{
    opacity: 1;
    visibility: visible;
}

#menu .megamenu ul{
    display: flex;
    flex-wrap: wrap;
    /* gap: 20px; */
    /* padding: 20px; */
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
#menu .megamenu ul li{
    display: inline-block;
    position: relative;
    padding: 0;
    margin: 0;
    width: calc( 100% / 6);
    box-sizing: border-box;
}

#menu .megamenu ul li a{
    display: block;
    font-weight: normal;
    transition: all 200ms ease-in-out;
    padding: 20px;
    font-family: 'BebasNeue', sans-serif;
}
#menu .megamenu ul li a .tgimage{
    background: no-repeat center center/cover;
    aspect-ratio: 1;
    width: 100%;
    min-height: 50px;
    display: block;
    transition: all 200ms ease-in-out;
}
#menu .megamenu ul li a:hover .tgimage{
    border-bottom-right-radius: 100% 30%;
    
}
#menu .megamenu ul li a .tgimage.aboutus{
    background-image: url(/assets/img/menu/ueber-uns.webp);
}
#menu .megamenu ul li a .tgimage.studio{
    background-image: url(/assets/img/menu/studio.webp);
}
#menu .megamenu ul li a .tgimage.prevention{
    background-image: url(/assets/img/menu/praeventionstraining.webp);
}
#menu .megamenu ul li a .tgimage.flatrates{
    background-image: url(/assets/img/menu/flatrate.webp);
}
#menu .megamenu ul li a .tgimage.vouchers{
    background-image: url(/assets/img/menu/vouchers.webp);
}
#menu .megamenu ul li a:hover .tgimage{
    /* background-size: auto 110%; */
}
#menu .megamenu ul li a .tgname{
    padding: 10px;
    font-size: 0.9em;
    display: block;
    transition: all 200ms ease-in-out;
}
#menu .megamenu ul li a:hover .tgname{
    font-size: 1em;
}
#menu .li-level-0.expand{
    /* padding-right: 30px; */


    /* content: '+'; */
}

#menu .chevron {
    display: inline-block;
    transition: transform 0.3s ease;
    transform: rotate(90deg);
    margin-left: 10px;
}
  
#menu .expand.open > a .chevron {
    transform: rotate(270deg);
}

@media(max-width: 1000px){
    #menu .li-level-0.expand{
        padding: 0;
    }
    #menu .megamenu{
        display: flex;
        position: relative;
        top: 0;
        left: 0;
        transform: translateX(0);
        display: none;
    }
    #menu .open .megamenu{
        display: flex;
    }
    #menu .megamenu ul li{
        width: 25%;
    }
    #menu .megamenu ul li a{
        padding: 10px;
    }
}
@media(max-width: 500px){
    #menu .megamenu ul li{
        width: 33.3%;
    }
}

/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* SLIDER */
@media(orientation: portrait){
    header.withslider {
        aspect-ratio: 9/16;
        /* height: 100vh; */
        height: auto;
        width: 100%;
    }
}
@media(orientation: landscape){
    header.withslider{
        aspect-ratio: auto;
        height: calc(100vh - 100px);
    }
}

.slider-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}
.slider-container .slider-box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: none;
}
.slider-container .slider-box a{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0,0,0,0.8); */
    /* background-color: rgba(0,0,0,0.0); */
    
    background: radial-gradient(ellipse at center,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 21%,rgba(0,0,0,0.6) 99%,rgba(0,0,0,0.9) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    /* object-fit: contain; */
    /* padding: 30px 50px; */
    /* text-transform: uppercase;
    text-decoration: none; */
    transition: 300ms ease-in-out all;
    opacity: 0;
}
/* .slider-container .slider-box a .slider-cta{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    text-align: center;
    background-color: var(--md_pink);
    padding: 30px 50px;
    transition: 300ms ease-in-out all;
    
} */
.slider-container .slider-box a:hover{
    
    /* background-color: rgba(0,0,0,0.2); */
    /* background-color: var(--md_pink); */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+99&0+21,0.7+100 */
opacity: 1;
    
}
.slider-container .slider-box img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    object-fit: contain;
}
/* .slider-container .slider-box-3{
    animation: slidemovement 5000ms ease-in-out infinite;
} */
.slider-container .slider-box.animate{
    display: block;
    animation: slidemovement 5000ms ease-in-out;
}
.slider-container .slider-box.show{
    display: block;
}
@keyframes slidemovement {
    0%{
        transform: scale(1);
        opacity: 0;

    }
    10%{
        opacity: 1;
    }
    90%{
        opacity: 1;
    }
    100%{
        transform: scale(1.1);
        opacity: 0;
    }
}
.wrap-inner.footer{
    background: url(/assets/img/footer.webp) #ccc no-repeat center center/cover;
    background: #111;


     position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    /* background-color: #2da249; */
    z-index: 0;
}
.wrap-inner.footer .wrap-inner-position{
   
}


.sliderleftright{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    width: 10%;
    min-width: 45px;
    z-index: 200;
    background: no-repeat center rgba(0,0,0,0.3);
    background-size: 10% auto;
    cursor: pointer;
    }
@media(max-width:600px){
    .sliderleftright{
            opacity: 0.6;
            background-size: 30% auto;
    }
    .sliderleftright:active{
            opacity: 1;
    }

}
.sliderleft{
    left: 0;
    /* background-image: url(/assets/img/slider/arrow-slider.png); */
}
.sliderright{
    right: 0;
    /* background-image: url(/assets/img/slider/arrow-slider-right.png); */
}
    .sliderright:before{
        content: "\276F";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.sliderleft:before{
    content: "\276E";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}







/* +++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++ */
/* design boxen */
.design-box{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 100px 0 !important;
    /* border-bottom-right-radius: 50% 30%; */
}
@media(orientation: portrait){
    .design-box {
        padding: 20px 0 !important;
    }
}
.design-box h1,
.design-box h2,
.design-box h3,
.design-box h4{
    color: #fff !important;
}
.design-box h1:after,
.design-box h2:after,
.design-box h3:after,
.design-box h4:after{
    content: '';
    margin: 20px 0 30px;
    border-bottom: 3px solid #ccc;
    width: 50%;
    display: block;
}

.design-box > div{
    width: 50%;
    /* height: 100%; */
    /* min-height: 100px; */
    box-sizing: border-box;
    position: relative;
    background-color: #000;
}
.design-box .design-box-left{
    
    color: #fff;
    padding: 50px;
}
.design-box .design-box-right{
    /* background-color: #666; */
    aspect-ratio: 4/3;
    background-color: #333;
}
.design-box > div img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    /* object-position: 0 0; */
    object-fit: cover;
}


.box{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    /* border-radius: 20px; */
    /* overflow: hidden; */
    position: relative;
    margin: 100px 0;
}
.box > div{
    width: 50%;
    box-sizing: border-box;
    position: relative;
    text-align: center;
}
@media(orientation: portrait){
    .design-box > div,
    .box > div{
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
}

/* +++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++ */
/* push */
/* push push push */

.push-it{
    opacity: 1;
    transform: translate(0,0);
    transition: all 0.5s ease-in-out;
}
.push-top{
    transform: translate(0,300px);
    opacity: 0;
    
}
.push-left{
    transform: translate(-300px,0);
    opacity: 0;
}
.push-right{
    transform: translate(300px,0);
    opacity: 0;
}

/* +++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++ */
/* scroller */
#scroller{
    /* background-color: gold; */
    /* margin: 100px 0; */
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}
#scroll-box{
    /* background-color: gold; */
    /* width: 150%; */
    /* height: 300px; */
    transition: all 800ms ease-in-out;
}
#scroller ul{
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    justify-content: center;
    /* padding: 20px; */
}
#scroller ul li{
    display: inline-block;
    /* width: 200px;
    height: 200px; */
    /* background-color: #ccc; */
    text-align: center;
    /* line-height: 200px; */
    /* font-size: 2em; */
    /* border-radius: 20px; */
    /* border-bottom-right-radius: 100% 10%; */
    width: 25%;
    overflow: hidden;
    box-sizing: border-box;
}
@media(max-width: 900px){
    #scroller ul li{
        width: 50%;
    }
}
#scroller.noscroll ul{
    
    flex-wrap: wrap;
    gap: 0;
}
#scroller.noscroll ul li{    
    padding: 10px;
}

#scroller ul li a{
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    background-color: #000;
    text-align: center;  
    text-decoration: none;
    transition: all 200ms ease-in-out;
    color: #666;
    color: #fff;
    font-family: 'BebasNeue', sans-serif;
    font-size: 1.2rem;
}
#scroller ul li a:hover{
    background-color: var(--md_pink);
    color: #fff;
}
#scroller ul li a .tgimage{
    background: no-repeat center center/cover;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    background-color: #000;    
    border-bottom-right-radius: 100% 30%;
    transition: all 200ms ease-in-out;
    filter: grayscale(50%);
}
#scroller ul li a:hover .tgimage{    
    border-bottom-right-radius: 100% 60%;
    filter: grayscale(0);
}
#scroller ul li a .tgname{
    display: block;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.btn-cta{
    font-family: 'BebasNeue', sans-serif;
    border: 1px solid #fff;
    background: #000;
    padding: 10px 20px;
    color: #fff;
    border-radius: 0;
    transition: all 200ms ease-in-out;
}
.btn-cta:hover{
    /* border-color: #000; */
    background: var(--md_pink) !important;
    color: #fff !important;
}
.btn-cta.probestunde{
    background: var(--md_pink);
    color: #fff;
}
.btn-cta.probestunde:hover{
    background: #000 !important;
    color: #fff !important;
}

.w-75{
    width: 75% !important;
    margin: 0 auto !important;
    padding: 20px;
    box-sizing: border-box;
}
@media screen and (max-width: 600px){
    .w-75{
        width: 100% !important;
    }
}

/* +++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++++++ */
/* Grid */
.grid-item{
    position: relative;
}
.grid-a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #2da249; */
    /* z-index: 100; */
}
.grid-info{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    transition: all 200ms ease-in-out;
    z-index: 100;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
}
.grid-a:hover .grid-info{
    opacity: 1;
}
.grid-info h5{
    font-size: 2rem;
    padding: 1rem 0;
    text-align: center;
}
.grid-info .gold{
    color: gold;
    text-align: center !important;
    display: block;
}
.name-preview{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 2rem;
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
    font-family: 'BebasNeue', sans-serif !important;
    text-align: center;
    background-color: rgba(0,0,0,0.3);
    line-height: 1em;
    transition: all 200ms ease-in-out;
    opacity: 1;
}
.grid-a:hover .name-preview{
    
    opacity: 0;
    padding-bottom: 50%;
}

section.center{
    text-align: center;
    padding-bottom: 10vh;
    background-color: #fff;
}
section.center form{
    margin: 0 auto;
}
@media screen and (max-width: 600px){
    #scroller.noscroll ul li{
        width: 100%;
    }    
}


.scroller-arrow{
    position: absolute;
    top: 50%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #000;
    /* background-color: magenta; */
    color: #fff;
    z-index: 1000;
    opacity: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 3rem;
    transition: all 200ms ease-in-out;
    user-select: none;
}
.scroller-arrow:hover{
    opacity: 0.9;
}
#scroller-toleft.scroller-arrow{
    left: 70px;
    transform: translate(-50%, -50%);
        
}
#scroller-toright.scroller-arrow{
    right: 70px;
    transform: translate(50%, -50%);
    
}

#scroller-toright.scroller-arrow:before{
    content: "\276F";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#scroller-toleft.scroller-arrow:before{
content: "\276E";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}


.padding_container a:hover {
    background-color: #333;
    background-color: transparent;
    color: var(--md_pink);

    color: #fff;

}
#menu .megamenu ul li a .tgimage.mydata {
    background-image: url(/assets/img/menu/mydata.webp);
}
#menu .megamenu ul li a .tgimage.mymembers {
    background-image: url(/assets/img/menu/mymembers.webp);
}
#menu .megamenu ul li a .tgimage.mybookings {
    background-image: url(/assets/img/menu/mybookings.webp);
}
#menu .megamenu ul li a .tgimage.myaccess {
    background-image: url(/assets/img/menu/myaccess.webp);
}



/* +++++++++++++++++++++ */
/* +++++++++++++++++++++ */
/* +++++++++++++++++++++ */
/* +++++++++++++++++++++ */
/* GALLERY */
#gallery{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
#gallery .tn{
    width: 25%;
    cursor: pointer;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}
#gallery .tn:hover,
#gallery .tn:active{
    opacity: 1;
    transform: scale(1.05);
}
@media(max-width: 800px){
    #gallery .tn{
        width: 33.3%;
    }
}
@media(max-width: 600px){
    #gallery .tn{
        width: 50%;
    }
}
@media(max-width: 400px){
    #gallery .tn{
        width: 100%;
    }
}
#lightbox{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    background-color: rgba(0,0,0,0.8);
    /* cursor: pointer; */
    padding: 10px;
    padding: 0px;
    box-sizing: border-box;
}
#lightbox img{
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0;
    border: 0;
}
#lightbox .lightbox-close{
    position: absolute;
    /* width: 20%; */
    /* height: 50px; */
    top: 0;
    display: block;
    margin: 0;
    border: 0;
    background-color: forestgreen;
    background-color: rgba(0,0,0,0.3);
    color: #fff;
    font-size: 1rem;
    padding: 10px 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    text-transform: uppercase;
    cursor: pointer;
    /* transition: 300ms ease-in-out all; */
}
#lightbox .lightbox-close:hover{
    background-color: var(--md_pink);
}
#lightbox .lightbox-close:before{
    content: "\00D7";
    margin-right: 5px;
    font-size: 1.5rem;
    display: inline-block;
}
@media(max-width: 800px){
    #lightbox .lightbox-close{
        background-color: transparent;
     
        padding: 5px 15px;
        
        text-shadow: 0 0 10px #000;
    }
    /* #lightbox .lightbox-close:before{
    } */
}
#lightbox .lightbox-change{
    position: absolute;
    width: 30%;
    height: 100%;
    top: 0;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    margin: 0;
    border: 0;
    background-color: peru;
    background-color: rgba(0,0,0,0);
    cursor: pointer;
}
#lightbox .lightbox-change:hover{
    /* background-color: rgba(0,0,0,0.2); */
}
#lightbox #lightbox-next{
    right: 0;
}
#lightbox #lightbox-next:before{
    content: "\276F";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(100%, -50%);
    transition: ease-in-out all 300ms;
}
#lightbox #lightbox-next:hover:before{
    font-size: 4rem;
    transform: translate(-50%, -50%);
    left: 50%;
}
#lightbox #lightbox-last{
    left: 0;
}
#lightbox #lightbox-last:before{
    content: "\276E";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-100%, -50%);
    transition: ease-in-out all 300ms;
}
#lightbox #lightbox-last:hover:before{
    font-size: 4rem;
    transform: translate(-50%, -50%);
    left: 50%;
}   


/* GALLERY */
/* +++++++++++++++++++++ */
/* +++++++++++++++++++++ */
/* +++++++++++++++++++++ */
/* +++++++++++++++++++++ */

.cta{
    position: relative;
    transform: rotate(-5deg);
    display: inline-block;
    margin:70px 30px;
}
.cta a{
    color: #000;
    background-color: gold;
    padding: 30px 50px;
    font-size: 1.5rem;
    border-radius: 10px;
    font-weight: bold;
    transition: 200ms ease-in all;
    white-space: nowrap;
}
.cta a:hover,
.cta a:active{
    background-color: var(--md_pink);
    color: #fff;
}
@media(max-width: 500px){
    .cta{
        margin: 50px 0;
    }
    .cta a{
        padding: 20px;
    }
    
}



.sociallogo{
    background-color: var(--md_pink);
    border-radius: 10px;
    /* border-top-left-radius: 50%; */
}






#tarifselectwrapscroll{
    overflow-x: scroll;
    overflow-x: hidden;
}
#tarifselectwrap{
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    width: auto;
    /* background-color: firebrick; */
    justify-content: center;
    gap: 10px;
    transition: 500ms ease-in-out all;
}
#tarifselectwrap .tarifbox{
    display: table-cell;
    /* width: 30%; */
    width: 280px;
    background-color: var(--black);
    padding: 50px 20px;
    box-sizing: border-box;
    text-align: center;
    border: 5px solid #ccc;
    border-radius: 10px;
    /* cursor: pointer; */
    transition: ease-in-out 200ms all;
    color: #fff;
    margin: 20px 0;
}
/* #tarifselectwrap .tarifbox.selected{
    border-color: var(--md_pink);
    border-color: #ffe800;     
}*/

/* #tarifselectwrap .tarifbox:hover,
#tarifselectwrap .tarifbox:hover:before{
    transform: scale(1.05);
} */
/* #tarifselectwrap .selected:before{
    content: '✔';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--md_pink) !important;
    font-size: 3rem;
} */
#tarifselectwrap h3{
    text-align: center;
    color: var(--md_pink) !important;
}
#tarifselectwrap h3 span{
    font-size: 1.5rem;
    display: block;
}
#tarifselectwrap .tarifprice,
 .tarifprice{
    color: #fff;
    font-size: 3rem;
    background-color: var(--md_pink) !important;
    display: block;
    line-height: 3rem;
    padding: 20px 0 5px;
}
/* #tarifselectwrap .tarifbox.selected .tarifprice{    
    background-color: #ffe800 !important;
    color: #000;
} */
#tarifselectwrap .tarifprice span,
.tarifprice span{
    display: block;
    font-size: 0.8rem;
}
#tarifselectwrap .tarifmintime,
#tarifselectwrap .noticeperiode{
    font-size: 0.8rem;
}
#tarifselectwrap .showdesc{
    /* color: var(--md_pink); */
    font-weight: bold;
    font-size: 0.8rem;
}
#tarifselectwrap .tarifdesc{
    display: none;
    display: block;
    font-size: 0.9rem;
}
#tarifselectwrap .tarifdesc.show{
    display: block;
}
#tarifselectwrap .tarifdetails{
    font-size: 0.8rem;
    padding: 1em 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}










.btn.btn-accent.buchungsbtn{
    font-family: 'BebasNeue', sans-serif;
    font-size: 2rem;
    padding: 20px;
    width: 80%;
    margin: 20px auto;
}
.btn.btn-accent.buchungsbtn:hover{
    color: #fff;
}
.btn.btn-accent.buchungsbtn-tarifbox{
    font-family: 'BebasNeue', sans-serif;
    font-size: 1.5rem;
    padding: 10px 20px;
    width: 100%;
    margin: 20px auto;
    box-sizing: border-box;
    border: 1px solid #fff;
}
.btn.btn-accent.buchungsbtn-tarifbox:hover{
    color: #fff;
}



.flatrate-conditions{
    font-size: 0.8rem;
    line-height: 1em;
}
.flatratecourses{
    max-height: 0;
    transition: 500ms ease-in-out all;
    opacity: 0;
    overflow: hidden;
}
.flatratecourses.show{
    max-height: 5000px;
    opacity: 1;
}
.flatratecourses ul{
    /* padding-left: 0; */
    margin-left: -15px;
}


/* +++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++ */
/* +++++++++++++++++++++++++ */
.tarifeleftright{
    position: absolute;
    top: 50%;
    width: 30px;
    height: 50%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    cursor: pointer;
}
.tarifeleftright.tarifeleft{
    left: 0;
    transform: translate(-100%, -50%);
}
.tarifeleftright.tariferight{
    right: 0;
    transform: translate(100%, -50%);
}
.tarifeleftright.tariferight:before{
    content: "\276F";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
}
.tarifeleftright.tarifeleft:before{
content: "\276E";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
}



/* Buchungsprozess Partnerabfrage */
.booking_concerning_partner button{
    display: inline-block;
    margin: 5px;
    background-color: #999;
    color: #fff;
    outline-color: #999 !important;
    border:none !important;
}
.booking_concerning_partner button:hover{
    
    background-color: #fff;
    color: #000;
    
    outline: 3px solid #999 !important;
}
.booking_concerning_partner button.disabled{
    display:none;
}
.booking_concerning_partner button.selected.disabled{
    display:inline-block;
}
.booking_concerning_partner button.selected{
    outline: 3px solid var(--md_pink) !important;
    color: #000 !important;
    background-color: #fff;

}
.booking_concerning_partner{
    padding: 20px;
}

.bookingpartner{
    display: none;
}
.bookingpartner.showalways{
    display: block;
}
.bookingpartner.showifchecked{
    display: none;
}
.bookingpartner.showifchecked.show{
    display: block;
}
#show_on_partner_yes{
    display: none;
}
#show_on_partner_yes.show{
    display: block;
}

#popups{
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 100%;
    max-width: 800px;
    
    max-height: 50%;
    height: 50%;
    height: auto;
    z-index: 1000;
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    border-radius: 20px;
    /* overflow: hidden; */
    padding: 20px;
    box-sizing: border-box;
    transition: all 500ms ease-in-out;
}
#popups.show{
    transform: translate(-50%, 0);
}
#popups-inner{
    display: block;
    /* position: absolute; */
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    
    background-color: var(--md_pink);
    color: #fff;
    height: auto;
    max-height: 300px;
    overflow-y: scroll;
    /* border-top-left-radius: 50% 50px; */
}
#popups-scroll{
    display: block;
    width: 100%;
    box-sizing: border-box;
    
    /* background-color: thistle; */
    color: #fff;
}
#popups-close{
    position: absolute;
    top: 20px;
    right: 30px;
    /* transform: translate(-50%, -50%); */
    /* background-color: #000; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    /* border-radius: 50%; */
    font-size: 45px;
    line-height: 45px;
    cursor: pointer;
}
#popups-news{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: #000 0px 0px 10px;
    
}
.popup-header h3{
    padding: 0;
    margin: 0;
}
.popup{
    padding-bottom: 20px;
    border-bottom: 2px solid #fff;
    margin-bottom: 20px;
}
.popup:last-child{
    padding-bottom: 0;
    border: none;
    margin-bottom: 0;
}
.popup-body img{
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 20px auto 0;

}
.popup-body a{
    background-color: #000;
    font-size: 1rem;
    padding: 10px 20px;    
    display: block;
    margin: 0 auto;
}