/* =======================================
   Variables
   ======================================= */
:root {
    /* smooth height transition */
    interpolate-size: allow-keywords;
    
    /* font shortcut var */
    --roboto-slab: "Roboto Slab", Arial, Helvetica, sans-serif;

    /* color theme vars */
    --TA-main-blue-dark: 0,35,45;
    --TA-main-blue-normal: 0,80,153;
    --TA-main-green-normal: 50,168,82;
    --TA-main-yellow-normal: 247,202,24;
    --TA-main-red-normal: 218,76,44;
    --TA-main-teal-normal: 96,176,249;
    
    --TA-background-black: 0,0,0;
    --TA-background-gray-darkest: 33,43,53;
    --TA-background-gray-darker: 63,75,89;
    --TA-background-gray-dark: 100,112,126;
    --TA-background-gray-medium: 208,209,210;
    --TA-background-gray-light: 235,239,243;
    --TA-background-gray-lighter: 240,244,248;
    --TA-background-gray-lightest: 248,249,250;
    --TA-background-gray-hover: 222,226,230;
    --TA-background-gray-hover-dark: 100,112,126;
    --TA-background-white: 255,255,255;
    --TA-border-gray-dark: 173,181,189;
    --TA-border-gray-medium: 108,117,125;
    --TA-border-gray-light: 222,226,230; /* bootstrap border default */
    --TA-border-gray-lighter: 240,244,248;
    --TA-border-white: 255,255,255;

    --TA-boxshadow-black: 0,0,0;
    --TA-boxshadow-white: 255,255,255;
    
    --TA-textcolor-black: 0,0,0;
    --TA-textcolor-gray-darkest: 33,43,53;
    --TA-textcolor-gray-darker: 73,85,99;
    --TA-textcolor-gray-dark: 173,181,189;
    --TA-textcolor-gray-medium: 108,117,125;
    --TA-textcolor-gray-light: 222,226,230;
    --TA-textcolor-gray-lighter: 240,244,248;
    --TA-textcolor-white: 255,255,255;

    --TA-textshadow-black: 0,0,0;
    --TA-textshadow-white: 255,255,255;
    
    --TA-linkcolor-darkest: 33,43,53;
    --TA-linkcolor-darker: 73,85,99;
    --TA-linkcolor-dark: 90,102,116;
    --TA-linkcolor-medium: 108,117,125;
    --TA-linkcolor-light: 222,226,230;
    --TA-linkcolor-lighter: 232,236,240;
    --TA-linkcolor-lightest: 240,244,248;
    --TA-linkcolor-white: 255,255,255;
    --TA-linkcolor-blue-dark: 0,80,153;
    --TA-linkcolor-blue-light: 13,131,242;
    
    --TA-starcolor: 251,188,4;

    --TA-focusvisible-lighttheme: rgba(13,110,253,.25);
    --TA-focusvisible-darktheme: rgba(240,244,248,.5);

    
    /* font sizes base size 16px */
    --1px: .0625rem;--2px: .125rem;--3px: .1875rem;--4px: .25rem;--5px: .3125rem;--6px: .375rem;--7px: .4375rem;--8px: .5rem;--9px: .5625rem;--10px: .625rem;
    --11px: .6875rem;--12px: .75rem;--13px: .8125rem;--14px: .875rem;--15px: .9375rem;--16px: 1rem;--17px: 1.0625rem;--18px: 1.125rem;--19px: 1.1875rem;--20px: 1.25rem;
    --22px: 1.375rem;--23px: 1.4375rem;--24px: 1.5rem;--25px: 1.5625rem;--26px: 1.625rem;--28px: 1.75rem;--30px: 1.875rem;
    --32px: 2rem;--34px: 2.125rem;--35px: 2.1875rem;--36px: 2.25rem;--38px: 2.375rem;--40px: 2.5rem;
    --46px: 2.875rem;--48px: 3rem;--50px: 3.125rem;
    --52px: 3.25rem;

    --focus-box-shadow: 0 0 0 var(--4px) var(--TA-focusvisible-lighttheme);
}

/* =======================================
   Custom Icons
   ======================================= */

@font-face {
    font-family: 'icomoon';
    src:  url('../fonts/icomoon.eot?mgsnnj');
    src:  url('../fonts/icomoon.eot?mgsnnj#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?mgsnnj') format('truetype'),
        url('../fonts/icomoon.woff?mgsnnj') format('woff'),
        url('../fonts/icomoon.svg?mgsnnj#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
  
i[class^="bi-technikon"]:before, i[class*=" bi-technikon"]:before {
    font-family: 'icomoon' !important;
}
  
.bi-technikon:before {
    content: "\e900";
    font-size:75%;
}
/* =======================================
   Animations
   ======================================= */

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-180deg);
    }
}
/* spin is used, search: #animation spin */

@keyframes jump {
    0% {
        bottom: 70px;
    }
    50% {
        bottom: 90px;
    }
    100% {
        bottom: 70px;
    }
}
/* jump is used, search: #animation jump */

/* =======================================
   Global Overrides and Resets
   ======================================= */
*:focus-visible {
    outline: 0;
    box-shadow: var(--focus-box-shadow);
}
html {
    scroll-padding-top: 80px;
}
body {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    /* bootstrap overrides */
    --bs-body-line-height: var(--25px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h5,.h6 {
    font-family: var(--roboto-slab);
    font-weight: 700;
}
h1,.h1 {font-size: var(--30px);}
h2,.h2 {font-size: var(--26px);}
h3,.h3 {font-size: var(--22px);}
h4,.h4 {font-size: var(--20px);}
h5,.h5 {font-size: var(--18px);}
h6,.h6 {font-size: var(--16px);}

h1.decorative,.h1.decorative,
h2.decorative,.h2.decorative,
h3.decorative,.h3.decorative,
h4.decorative,.h4.decorative,
h5.decorative,.h5.decorative,
h6.decorative,.h6.decorative {
    display: inline-block;
    padding-left: 23px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: .125rem;
    color: rgb(var(--TA-main-blue-normal));
}
h1.decorative::before,.h1.decorative::before,
h2.decorative::before,.h2.decorative::before,
h3.decorative::before,.h3.decorative::before,
h4.decorative::before,.h4.decorative::before,
h5.decorative::before,.h5.decorative::before,
h6.decorative::before,.h6.decorative::before,
h1.decorative::after,.h1.decorative::after,
h2.decorative::after,.h2.decorative::after,
h3.decorative::after,.h3.decorative::after,
h4.decorative::after,.h4.decorative::after,
h5.decorative::after,.h5.decorative::after,
h6.decorative::after,.h6.decorative::after {
    content: "";
    left: 6px;
    right: auto;
    border-left: 2px solid;
    width: 2px;
    height: 100%;
    position: absolute;
    transform: rotate(20deg);
    top: 0;
}
h1.decorative::after,.h1.decorative::after,
h2.decorative::after,.h2.decorative::after,
h3.decorative::after,.h3.decorative::after,
h4.decorative::after,.h4.decorative::after,
h5.decorative::after,.h5.decorative::after,
h6.decorative::after,.h6.decorative::after {
    left: 12px;
}

a,a:not(:visited),a:active,a:visited,
details>summary,
details>summary:active {
    text-decoration: none;
    color: rgb(var(--TA-linkcolor-blue-dark));
    transition: all .3s ease;
}
a:hover,a:focus,a:focus-visible,
details>summary:hover,
details>summary:focus,
details>summary:focus-visible {
    text-decoration: none;
    color: rgb(var(--TA-linkcolor-blue-light));
}
a>svg {
    fill: rgb(var(--TA-linkcolor-blue-dark));
}
a:hover>svg {
    fill: rgb(var(--TA-linkcolor-blue-light));
}

button {
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    transition: all .3s ease;
}
button.btn:hover,
button.btn:focus-visible,
button:hover,
button:focus-visible {
    background: rgb(var(--TA-background-gray-lightest));
    color: rgb(var(--TA-textcolor-gray-medium));
}

button.btn:focus-visible,
button:focus-visible {
    box-shadow: 0 0 0 var(--4px) var(--TA-focusvisible-lighttheme);
}
/*
details {
    interpolate-size: allow-keywords;
}
details::details-content {
    block-size: 0;
    transition: block-size .3s ease, content-visibility .3s ease;
    transition-behavior: allow-discrete;
    overflow: hidden;
}
details[open]::details-content {
    block-size: auto;
    block-size: calc-size(auto, size);
}
details>summary {
    list-style-position: outside;
	position: relative;
    cursor: pointer;
    padding-left: 20px;
}
details>summary::marker {
    content: '»';
    content: none;
}
details>summary::before {
	content: '»';
    position: absolute;
    font-size: 2em;
    line-height: 1em;
    left:0px;
    top:-1px;
	transition: rotate 0.3s;
}
details[open]>summary::before {
	rotate: 90deg;
}
details>*:not(summary) {

}
*/

/* =======================================
   Component: Header
   ======================================= */

header#site-header {
    position: fixed;
    width: 100vw;
    z-index: 9000;
    box-shadow: 0px 0px 15px rgba(var(--TA-boxshadow-black),.15);
}
header#site-header .theme-toggler {
    height: var(--38px);
    width: var(--38px);
    border-radius: var(--6px);
    font-size: var(--20px);
    line-height: var(--20px);
    padding: 5px;
}
header#site-header button.btn {
    color: rgb(var(--TA-linkcolor-darkest));
}

/* =======================================
   Component: Header Top
   ======================================= */

header#site-header .header-top {
    background: rgb(var(--TA-background-white));
}


/* Navbar Toggler (Bootstrap override) */
header#site-header .header-top .navbar .navbar-toggler {
    border: none;
    height: 54px;
}
header#site-header .header-top .navbar .navbar-toggler:focus {
    box-shadow: none;
}
header#site-header .header-top .navbar .navbar-toggler:focus-visible {
    box-shadow: inset 0 0 0 var(--4px) var(--TA-focusvisible-lighttheme);
}
header#site-header .header-top .navbar .navbar-toggler .custom-toggler {
    display: inline-block;
    width: 30px;
    height: 20px;
    position: relative;
    transition: transform .35s ease;
    transform: rotate(0deg);
}
header#site-header .header-top .navbar .navbar-toggler .custom-toggler .line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(var(--TA-background-black));
    border-radius: 2px;
    transition: all .35s ease;
}
header#site-header .header-top .navbar .navbar-toggler .custom-toggler .line1 {
    top: 0;
}
header#site-header .header-top .navbar .navbar-toggler .custom-toggler .line2 {
    top: 50%;
    transform: translateY(-50%);
}
header#site-header .header-top .navbar .navbar-toggler .custom-toggler .line3 {
    bottom: 0;
}

/* bootstrap navbar toggler expanded states */
header#site-header .header-top .navbar .navbar-toggler:not(.collapsed) .custom-toggler {
    transform: rotate(180deg); /* Spin full circle during transition */
}
header#site-header .header-top .navbar .navbar-toggler:not(.collapsed) .custom-toggler .line1 {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
header#site-header .header-top .navbar .navbar-toggler:not(.collapsed) .custom-toggler .line2 {
    opacity: 0;
    transform: translateY(0%) rotate(180deg); /* Slide out for fade effect */
}
header#site-header .header-top .navbar .navbar-toggler:not(.collapsed) .custom-toggler .line3 {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* =======================================
   Component: Header Bottom
   ======================================= */
header#site-header .heater-top #logo-img {
    height: 30px;
}
header#site-header .header-bottom {
    background: rgb(var(--TA-background-gray-lightest));
}
header#site-header .header-bottom .navbar-collapse {
    max-width: 100%;
}
/*
header#site-header .header-bottom .searchbar-m {
}*/
header#site-header .header-bottom .searchbar-m form {
    flex: 1;
}
header#site-header .header-bottom ul.navbar-nav {
    background: none;
}
header#site-header .header-bottom ul.navbar-nav.navbar-nav-scroll {
    max-height: var(--bs-scroll-height, 50vh);
}
header#site-header .header-bottom ul.navbar-nav a,
header#site-header .header-bottom ul.navbar-nav a:active,
header#site-header .header-bottom ul.navbar-nav a:visited {
    color: rgb(var(--TA-linkcolor-darkest));
}
header#site-header .header-bottom ul.navbar-nav a:hover {
    background: rgb(var(--TA-background-gray-hover));
    color: rgb(var(--TA-linkcolor-medium));
}
header#site-header .header-bottom ul.navbar-nav a:focus-visible {
    box-shadow: inset 0 0 0 var(--4px) var(--TA-focusvisible-lighttheme);
}
header#site-header .header-bottom ul.navbar-nav>li.nav-item {
    border-bottom: solid 1px rgb(var(--TA-border-gray-dark));
}
header#site-header .header-bottom ul.navbar-nav>li.nav-item a {
    padding: var(--16px) var(--8px) var(--16px) var(--7px);
}
header#site-header .header-bottom ul.navbar-nav>li.nav-item.dropdown a {
    border-right: solid 1px rgb(var(--TA-border-gray-light));
}
header#site-header .header-bottom ul.navbar-nav>li.nav-item>ul.dropdown-menu {
    padding: 0;
    border-radius: 0;
}
header#site-header .header-bottom ul.navbar-nav>li.nav-item>ul.dropdown-menu>li.nav-item {
    border-bottom: solid 1px rgb(var(--TA-border-gray-light));
}
header#site-header .header-bottom ul.navbar-nav>li.nav-item>ul.dropdown-menu>li.nav-item a {
    border: none;
    padding: var(--9px) 0 var(--8px) var(--16px);
}
header#site-header .header-bottom ul.navbar-nav>li.nav-item>ul.dropdown-menu>li.nav-item.nav-item-last {
    margin-bottom: var(--8px);
    border-bottom: none;
}
header#site-header .header-bottom ul.navbar-nav li.nav-item:last-child,
header#site-header .header-bottom ul.navbar-nav li.nav-item>ul.dropdown-menu>li.nav-item.nav-item-last a {
    border-bottom: none;
}





/* Navbar Firefox/Safari Fix (Bootstrap override) */
.ua-ff #header-navbar,
.ua-ios #header-navbar {
    display:block !important;
    overflow:hidden !important;
    height: auto !important;
    max-height: 0;
    transition: max-height .35s ease-in-out !important;
}
.ua-ff #header-navbar.show,
.ua-ios #header-navbar.show,
.ua-ff #header-navbar.collapsing,
.ua-ios #header-navbar.collapsing {
    height: auto !important;
    max-height: var(--WA-max-height) !important;
}

/* =======================================
   Component: Dropdown Menu (Submenu)
   ======================================= */
#skip-header {
    opacity:0;
    position: absolute;
    top:20px;
    left:20px;
    background-color: rgb(var(--TA-main-blue-normal));
    color: rgb(var(--TA-linkcolor-white));
    padding: 2px 5px;
    pointer-events: none;
    z-index: 999999999;
}
#skip-header:focus,
#skip-header:focus-within,
#skip-header:focus-visible {
    opacity: 1;
}
header#site-header .header-bottom .dropdown-menu {
    margin-top: 0;
    display: block !important;
    height: 0;
    transition: height .35s ease-in-out;
    overflow: hidden;
    background: transparent;
    border: none;
}
header#site-header .header-bottom .dropdown-menu.show,
header#site-header .header-bottom .dropdown-menu:has(:focus-visible) {
    height: auto;
}

.ua-ff header#site-header .header-bottom .dropdown-menu,
.ua-ios header#site-header .header-bottom .dropdown-menu {
    height: auto;
    transition: max-height .35s ease-in-out;
    max-height: 0;
}
.ua-ff header#site-header .header-bottom .dropdown-menu.show,
.ua-ios header#site-header .header-bottom .dropdown-menu.show,
.ua-ff header#site-header .header-bottom .dropdown-menu:has(:focus-visible),
.ua-ios header#site-header .header-bottom .dropdown-menu:has(:focus-visible) {
    max-height: var(--WA-max-height);
}

/* bootstrap submenu-toggler */ 

header#site-header .header-bottom ul.navbar-nav .submenu-toggler {
    outline: 0;
    aspect-ratio : 1 / 1;
    height: var(--52px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0;
    border: none;
    font-weight: bold;
    font-size: var(--24px);
    background: transparent;
    overflow: hidden;
    flex-shrink: 0;
}
header#site-header .header-bottom ul.navbar-nav .submenu-toggler:hover {
    background: rgb(var(--TA-background-gray-hover));
}
header#site-header .header-bottom ul.navbar-nav .submenu-toggler:focus-visible {
    box-shadow: inset 0 0 0 var(--4px) var(--TA-focusvisible-lighttheme);
}
header#site-header .header-bottom ul.navbar-nav .submenu-toggler i.bi {
    line-height: 0;
    color: rgb(var(--TA-textcolor-gray-darkest));
}

header#site-header .header-bottom ul.navbar-nav .submenu-toggler i.spinning {
    animation: spin .35s ease-in-out;
}
header#site-header .header-bottom ul.navbar-nav .submenu-toggler i.expanded.spinning {
    animation: spin .35s ease-in-out reverse;
}
/* spin used, search: #animation spin */


/* =======================================
   Component: Main
   ======================================= */

main {
    margin-top: 89px;
    display: flex;
    flex-direction: column;
}

/* =======================================
   Component: Site-Footer
   ======================================= */


footer#site-footer {
    position: relative;
    background: rgb(var(--TA-main-blue-dark));
    color: rgb(var(--TA-textcolor-white));
    overflow: hidden;
    z-index: 200;
}
footer#site-footer>* {
    z-index: 10;
}
footer#site-footer::before {
    content: "";
    position: absolute;
    background-image: url('/assets/img/footer-bg.webp');
    background-repeat: no-repeat;
    opacity: .25;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}
footer#site-footer a,
footer#site-footer a:visited,
footer#site-footer a:active { 
    color: rgb(var(--TA-linkcolor-white));
}
footer#site-footer a:hover,
footer#site-footer a:focus-visible { 
    color: rgb(var(--TA-linkcolor-blue-light));
}
footer#site-footer a svg,
footer#site-footer a:visited svg,
footer#site-footer a:active svg { 
    fill: rgb(var(--TA-linkcolor-white));
}
footer#site-footer a:hover svg,
footer#site-footer a:focus-visible svg { 
    fill: rgb(var(--TA-linkcolor-blue-light));
}
footer#site-footer ul {
    list-style-type:none;
    padding: 0;
}
footer#site-footer .footer-top {
    padding: 42px 0 0;
}
footer#site-footer .footer-top h2,
footer#site-footer .footer-top h3,
footer#site-footer .footer-top h5 {
    font-size: var(--18px);
    margin: var(--10px) 0 var(--30px);
}
footer#site-footer .footer-top ul li {
    padding: var(--13px) 0 var(--13px);
}
footer#site-footer .footer-top ul li:first-child {
    padding-top: 0;
}
footer#site-footer .footer-top .fo-timelist ul li{
    border-bottom: 1px solid rgba(var(--TA-border-white), .1);
    display: flex;
    justify-content: space-between;
}
footer#site-footer .footer-top .fo-timelist ul li:last-child {
    border:none;
}
footer#site-footer .footer-top .fo-reviews .reviews-azav {
    display: flex;
    align-items: start;
}
footer#site-footer .footer-top .fo-reviews .reviews-bar {
    margin-top: var(--19px);
}
footer#site-footer .footer-top .fo-reviews .reviews-bar h2,
footer#site-footer .footer-top .fo-reviews .reviews-bar h3,
footer#site-footer .footer-top .fo-reviews .reviews-bar h5 {
    margin-bottom: var(--10px);
}
footer#site-footer .footer-top .fo-reviews .reviews-bar .reviews {
    display: flex;
    justify-content: start;
    gap: var(--16px);
}
footer#site-footer .footer-top .fo-reviews .reviews-bar .reviews a { 
    display: flex;
    align-items: end;
    gap: var(--3px);
}
footer#site-footer .footer-top .fo-reviews .reviews-bar .reviews a:has(svg) svg .tp-logo__text,
footer#site-footer .footer-top .fo-reviews .reviews-bar .reviews a:has(svg) svg .tp-tp-logo__star,
footer#site-footer .footer-top .fo-reviews .reviews-bar .reviews a:has(svg) svg .tp-tp-logo__star-notch {
    transition: all .3s ease;
}
footer#site-footer .footer-top .fo-reviews .reviews-bar .reviews a:has(svg):hover svg .tp-logo__text {
    fill: rgb(var(--TA-linkcolor-blue-dark));
}
footer#site-footer .footer-top .fo-newsletter-socials .social-bar {
    margin-top: var(--19px);
}
footer#site-footer .footer-top .fo-newsletter-socials .social-bar h2,
footer#site-footer .footer-top .fo-newsletter-socials .social-bar h3,
footer#site-footer .footer-top .fo-newsletter-socials .social-bar h5 {
    margin-bottom: var(--10px);
}
footer#site-footer .footer-top .fo-newsletter-socials .social-bar ul.social-links {
    display: flex;
    gap: var(--16px);
    font-size: var(--18px);
    margin: 0;
}
footer#site-footer .footer-top .fo-newsletter-socials .social-bar ul.social-links li {
    padding: 0;
}
footer#site-footer .footer-top .fo-newsletter-socials .social-bar ul.social-links li a:has(svg){
    align-items: start;
    display: flex;
}
footer#site-footer .footer-top .fo-newsletter-socials .social-bar ul.social-links li a svg{
    width: 1.125em;
    height: 1.125em;
}

footer#site-footer .footer-bottom {
    margin: var(--28px) 0 0;
    border-top: solid 1px rgba(var(--TA-border-white), .1);
    padding: var(--28px) 0 var(--32px);
    font-size: var(--14px);
    color: rgb(var(--TA-textcolor-gray-medium));
}
footer#site-footer .footer-bottom>div {
    display: flex;
    justify-content: space-around;
}
footer#site-footer .footer-bottom .fobot-nav {
    padding: var(--28px) 0 0;
}
footer#site-footer .footer-bottom ul.footermenu {
    gap: var(--18px);
    justify-content: space-around;
    margin: 0;
}
footer#site-footer .footer-bottom ul.footermenu li:not(:last-child):after {
    position: absolute;
    content: "|";
    color: rgb(var(--TA-border-white));
    padding-left: var(--8px);
}

footer#site-footer #totop {
    font-weight: 900;
    color: #fff;
    display: none;
    position: fixed;
    right: 34px;
    bottom: 70px;
    z-index: 999;
    height: 0;
    width: 0;
    font-size: 0;
    text-align: center;
    padding-top: 3px;
    line-height: 34px;
    border-radius: 0px;
    transition: .3s ease-in-out;
    background-color: rgb(var(--TA-main-blue-normal));
}

footer#site-footer #totop.top-visible {
    height: 40px;
    width: 40px;
    font-size: 22px;
    display: inline;
    animation: jump 4s infinite;
}

/* dekra siegel */
#dekrasiegel {
    position: fixed;
    left: 20px;
    z-index: 20;
    bottom: 50px;
    height: 168px;
    pointer-events: none;
}

#dekrasiegel img {
    display: block;
    opacity: 1;
    height: 168px;
}

/* =======================================
   Section: Frontpage Slider
   ======================================= */
#frontpage-slider {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

#frontpage-slider .slider-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}
#frontpage-slider .slider-track {
    display: flex;
    width: 100%;
    position: relative;
    transition: transform 1s ease-in-out;
}
#frontpage-slider .slider-track .slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    min-height: 250px; /*desktop 450px*/
    position: relative;
    background-color: rgb(var(--TA-background-white));
}
#frontpage-slider .slider-track .slide .bg-image {
    background-image: var(--bg);
    top: 0;left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    opacity: .85;
    background-position: center center;
}
#frontpage-slider .slider-track .slide .content {
    display: flex;
    position: relative;
    height: 100%;
    width:100%;
    color: rgb(var(--TA-textcolor-white));
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}
#frontpage-slider .slider-track .slide .content p.h2,
#frontpage-slider .slider-track .slide .content span,
#frontpage-slider .slider-track .slide .content a {
    text-shadow: 1px 1px 2px rgba(var(--TA-textshadow-black),.9);
}
#frontpage-slider .slider-track .slide .content a {
    box-shadow: 1px 1px 2px rgba(var(--TA-textshadow-black),.55);
}
#frontpage-slider .slider-track .slide .content p.h2 {
    font-size: var(--25px);
}
#frontpage-slider .slider-track .slide .content span {
    font-family: var(--roboto-slab);
    font-weight: bold;
}
#frontpage-slider .slider-track .slide .content span>img {
    margin: 0 5px;
    filter: drop-shadow(1px 1px 2px rgba(var(--TA-textshadow-black),.6));
}
#frontpage-slider .slider-track .slide .content a {
    display: block;
    font-weight: bold;
    color: rgb(var(--TA-linkcolor-white));
    font-family: var(--roboto-slab);
    text-transform: uppercase;
    border: solid 1px #fff;
    padding: 10px 20px;
    backdrop-filter: blur(10px);
}
#frontpage-slider .slider-track .slide .content a:hover,
#frontpage-slider .slider-track .slide .content a:focus,
#frontpage-slider .slider-track .slide .content a:focus-visible {
    background-color: rgba(var(--TA-background-white),.5);
}

/* =======================================
   Section: Frontpage Kurse
   ======================================= */
#frontpage-kurse {
    background-color: rgb(var(--TA-background-gray-lightest));
    padding: 20px 0 50px;
}
#frontpage-kurse header {
    text-align: center;
}
/* kurskategorien */
#frontpage-kurse .kurskategorien {
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
    gap:8px;
    align-items:flex-start;
    margin-top: 20px;
    margin-bottom: 20px;
}
#frontpage-kurse .kurskategorien button.kurskategorie {
    background: rgb(var(--TA-background-gray-light));
    color: rgb(var(--TA-textcolor-gray-darkest));
    font-family: var(--roboto-slab);
    padding: 5px 10px;
    font-size: var(--14px);
}
#frontpage-kurse .kurskategorien button.kurskategorie.active {
    background: rgb(var(--TA-main-blue-normal));
    color: rgb(var(--TA-textcolor-white));
}
/* kurse */
#frontpage-kurse .kurse-outer {
    position: relative;
    background: rgb(var(--TA-background-white));
    overflow-x: clip;
    padding: 0;
}
#frontpage-kurse .kurse-outer::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 95%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 0px 5px 0px 10px rgba(var(--TA-main-blue-normal), .75);
    background: rgba(var(--TA-main-blue-normal),.75);
    filter: blur(12px);
    opacity: 0.95;
    pointer-events: none;
}
#frontpage-kurse .kurse-inner {
    display: flex;
    flex-wrap: nowrap;
    gap:20px;
    margin-top: 30px;
    overflow-x: auto;
    position: relative;

    scrollbar-width: none;
    -ms-overflow-style: none;

    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single {
    display: flex;
    flex-direction: column;
    background: rgb(var(--TA-background-white));
    border-top: solid 2px rgb(var(--TA-main-blue-normal));
    border-bottom:solid 15px rgb(var(--TA-main-blue-normal));
    padding: 20px 15px 20px;
    position:relative;

    flex: 0 0 85%;
    scroll-snap-align: start;

    transition: 
        opacity .4s ease,
        transform .4s ease,
        height .4s ease,
        width .4s ease,
        flex-basis .4s ease,
        flex .4s ease,
        margin .4s ease,
        padding .4s ease,
        border-width .4s ease;
    transition-behavior: allow-discrete;
    transform-origin: center;
    will-change: transform, opacity;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single>* {
    opacity: 1;
    width: auto;
    height: auto;
    overflow: visible;
    transition: opacity .8s ease-in;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single:nth-child(1 of :not(.hidden)) {
    margin-left: 80%;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single:nth-last-child(1 of :not(.hidden)) {
    margin-right: 80%;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single button:hover {
    background: none;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .bookmark {
    position: absolute;
    top: 15px;
    right: 21px;
    font-size: var(--25px);
    padding-top: 2px;
    color: rgb(var(--TA-main-green-normal));
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .bookmark .bi-bookmark-star-fill {
    display: none;
    color: rgb(var(--TA-main-green-normal));;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .bookmark.active .bi-bookmark-star {
    display:none;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .bookmark.active .bi-bookmark-star-fill {
    display: initial;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .tags {
    padding-right: 35px;
    min-height: 2lh;
    font-size: var(--14px);
    line-height: var(--15px);
    letter-spacing: 5%;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .title-container {
    font-size:var(--18px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    min-height: 3lh;
    overflow: hidden;
    padding: 5px;
    margin: 5px -5px -5px;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .title {
    font-size:var(--18px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    color: rgb(var(--TA-main-blue-normal));
    margin: 0;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex: 1 1 100%;
}

#frontpage-kurse .kurse-inner .frontpage-kurse-single .details .details-left .sup {
    font-size: var(--12px);
    line-height: var(--12px);
    margin-top: -9px;
    display: block;
    padding: 5px 0 0 25px;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .details .details-left .price-r-line {
    color: rgb(var(--TA-main-green-normal));
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .details .details-left .price-r-value,
#frontpage-kurse .kurse-inner .frontpage-kurse-single .details .details-left .price-value {
    font-weight: bold;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .details .details-left .price-value {
    color: rgb(var(--TA-main-blue-normal));
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .details .details-left .price-r-value {
    color: rgb(var(--TA-main-green-normal));
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .details .details-left .price-oldprice-outer {
    padding: 1px 6px;
    background: rgba(var(--TA-main-red-normal));
    border-radius: 7px;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .details .details-left .price-oldprice {
    font-size: var(--14px);
    line-height: var(--15px);
    color: rgb(var(--TA-textcolor-white));
    position: relative;
    font-weight: bold;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .details .details-left .price-oldprice::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left bottom,
        transparent 48%,
        rgba(255,255,255,1) 49%,
        rgba(255,255,255,1) 51%,
        transparent 52%
    );
    pointer-events: none;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .details .details-right {
    display: flex;
    flex-direction: column;
    justify-content: end;
    row-gap: 10px;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .details .details-right a,
#frontpage-kurse .kurse-inner .frontpage-kurse-single .details .details-right button {
    font-size: var(--35px);
    line-height: var(--34px);
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .details .details-right button[data-tippy-content] {
    color: rgb(var(--TA-main-green-normal));
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single .details .details-right button[aria-describedby],
#frontpage-kurse .kurse-inner .frontpage-kurse-single .details .details-right button[aria-describedby]:hover {
    color: rgb(var(--TA-main-green-normal));
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single.hidden {
    height: 0;
    width: 0;
    flex: 0 0 0;
    flex-basis: 0;
    padding: 0;
    opacity: 0;
    border-width: 0;
    transform: scale(0) translateX(100%) translateY(100%);
    margin-left: -20px;
    scroll-snap-align: none;
}
#frontpage-kurse .kurse-inner .frontpage-kurse-single.hidden>* {
    height: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
}
#frontpage-kurse .kurse-outer .empty-infotext {
    display: none;
    flex-direction: column;
    background: rgb(var(--TA-background-white));
    border-top: solid 2px rgb(var(--TA-main-blue-normal));
    border-bottom:solid 15px rgb(var(--TA-main-blue-normal));
    padding: 20px 15px 20px;
    position:relative;

    flex: 0 0 100%;
    scroll-snap-align: center;
    text-align: center;
}
#frontpage-kurse .kurse-outer:not(:has(.frontpage-kurse-single:not(.hidden))) .empty-infotext {
    display: flex;
}
#frontpage-kurse>footer .desktop {
    display:none;
}

/* =======================================
   Section: Frontpage Reviews
   ======================================= */
#frontpage-reviews {
    background: linear-gradient(
        to bottom,
        rgb(var(--TA-background-gray-lightest)) 0%,
        rgb(var(--TA-background-gray-lightest)) 40%,
        rgb(var(--TA-background-white)) 60%,
        rgb(var(--TA-background-white)) 100%
    );
    overflow: hidden;
    position: relative;
}
#frontpage-reviews .h3 {
    position: relative;
    text-align: center;
}
#frontpage-reviews .ReviewCarousel-container {
    margin: 0;
    position: relative;
    padding: 5px 0;
    overflow: hidden;
}

#frontpage-reviews .ReviewCarousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: stretch;
    margin: 0 20px;
    gap: 0;
}
#frontpage-reviews .RC-item {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 0;
    display: flex;
    align-items: center;
}
#frontpage-reviews .RC-item-inner {
    padding: 10px 20px 5px;
    background: rgb(var(--TA-background-white));
    text-align: center;
    margin: 0 10px;
    box-shadow: 0px 1px 3px rgba(var(--TA-background-black), 0.4);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-wrap:nowrap;
    gap: 5px;
    justify-content: flex-start;
    width:100%;
    max-height: 195px;
    border: solid 1px rgb(var(--TA-main-teal-normal));
}
#frontpage-reviews .RC-item .text-container {
    flex: 1 1 auto;
    display: flex;
    overflow-y: auto;
    hyphens: auto;
}
#frontpage-reviews .RC-item p {
    display: block;
    margin: auto 0;
    line-height: normal;
}

#frontpage-reviews .RC-item cite {
    flex: 0 0 auto;
    font-style: normal;
    color: rgb(var(--TA-textcolor-gray-medium));
    font-size:14px;
}
#frontpage-reviews .RC-item cite i.bi {
    color: rgb(var(--TA-starcolor));
    letter-spacing: 1px;
}
#frontpage-reviews .RC-item cite a {
    display: inline-flex;
    align-items: flex-end;
    line-height: 10px;
    gap: 2px;
    font-style: normal;
    color: rgb(var(--TA-linkcolor-blue-dark));
    font-weight: 500;
}
#frontpage-reviews .RC-item cite a.review-trustpilot {
    transform: translateY(2px);
}
#frontpage-reviews .RC-item cite a:hover {
    color: rgb(var(--TA-linkcolor-blue-light));
}
#frontpage-reviews .RC-item cite a svg {
    fill: rgb(var(--TA-linkcolor-blue-dark));
}
#frontpage-reviews .RC-item cite a:hover svg {
    fill: rgb(var(--TA-linkcolor-blue-light));
}

#frontpage-reviews .RC-nav {
    position: absolute;
    top: 50%;
    bottom: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0;
    
    max-width: 100%;
    position: sticky;
    display: flex;
    justify-content: space-between;
}

#frontpage-reviews .RC-nav button {
    padding: 8px;
    font-size: var(--19px);
    background: rgb(var(--TA-background-gray-darkest));
    color: rgba(var(--TA-textcolor-white));
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: opacity 0.3s;
    pointer-events: auto;
}

#frontpage-reviews .RC-nav button:hover {
    opacity: 1;
}

#frontpage-reviews .RC-nav button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
/* =======================================
   Section: Imageboxes
   ======================================= */

#frontpage-imageboxes {
    margin-top: 50px;
}
#frontpage-imageboxes .imagebox-wrapper {
    margin-bottom: 1rem;
}

#frontpage-imageboxes .imagebox-inner {
    display: flex;
    flex-direction: column;
}
#frontpage-imageboxes .imagebox-text {
    hyphens: auto;
}
#frontpage-imageboxes .imagebox-text a {
    text-decoration: underline;
}
#frontpage-imageboxes .imagebox-image-box {
    height: 170px;
    cursor: pointer;
    position: relative;
}
#frontpage-imageboxes .imagebox-image-overlay-wrapper {
    background-image: var(--bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
#frontpage-imageboxes .imagebox-image-overlay-wrapper .imagebox-overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
#frontpage-imageboxes .imagebox-image-linkcontainer {
    position: relative;
    height: 100%;
    width: 100%;
}
#frontpage-imageboxes .imagebox-image-box .imagebox-overlay {
    transition: opacity 200ms linear;
    opacity: .5;
}
#frontpage-imageboxes .imagebox-image-box:hover .imagebox-overlay {
    opacity: .75;
}
#frontpage-imageboxes .imagebox-image-box.overlay-blue {--icon-hovercolor:var(--TA-main-blue-normal);}
#frontpage-imageboxes .imagebox-image-box.overlay-blue .imagebox-image-overlay-wrapper .imagebox-overlay {
    background: linear-gradient(0deg, rgba(var(--TA-main-blue-normal),1) 25%, rgba(0,0,0,0) 45%);
}
#frontpage-imageboxes .imagebox-image-box.overlay-green {--icon-hovercolor:var(--TA-main-green-normal);}
#frontpage-imageboxes .imagebox-image-box.overlay-green .imagebox-image-overlay-wrapper .imagebox-overlay {
    background: linear-gradient(0deg, rgba(var(--TA-main-green-normal),1) 25%, rgba(0,0,0,0) 45%);
}
#frontpage-imageboxes .imagebox-image-box.overlay-yellow {--icon-hovercolor:var(--TA-main-yellow-normal);}
#frontpage-imageboxes .imagebox-image-box.overlay-yellow .imagebox-image-overlay-wrapper .imagebox-overlay {
    background: linear-gradient(0deg, rgba(var(--TA-main-yellow-normal),1) 25%, rgba(0,0,0,0) 45%);
}
#frontpage-imageboxes .imagebox-image-box.overlay-red {--icon-hovercolor:var(--TA-main-red-normal);}
#frontpage-imageboxes .imagebox-image-box.overlay-red .imagebox-image-overlay-wrapper .imagebox-overlay {
    background: linear-gradient(0deg, rgba(var(--TA-main-red-normal),1) 25%, rgba(0,0,0,0) 45%);
}

#frontpage-imageboxes .imagebox-image-link { 
    display: flex;
    align-items: flex-end;
    height: 100%;
    width: 100%;    
    padding: 15px 25px;
}
#frontpage-imageboxes .imagebox-image-link-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    width: 100%;
}
#frontpage-imageboxes .imagebox-image-link-inner h4,
#frontpage-imageboxes .imagebox-image-link-inner .h3,
#frontpage-imageboxes .imagebox-image-link-inner i {
    color: rgb(var(--TA-textcolor-white));
    margin: 0;
    font-weight: 350;
}
#frontpage-imageboxes .imagebox-image-link-inner h4,
#frontpage-imageboxes .imagebox-image-link-inner .h3 {
    text-shadow: 0 0 2px rgba(var(--TA-textshadow-black), .9);
}
#frontpage-imageboxes .imagebox-image-box .imagebox-image-link-inner .imagebox-arrow {
    height: 50px;
    width: 50px;
    min-width: 50px;
    line-height: 48px;
    text-align: center;
    background-color: transparent;
    transition: background-color .35s;
    border: 1px solid #fff;
    color: rgb(var(--TA-textcolor-white));
    font-size: var(--26px);
}
#frontpage-imageboxes .imagebox-image-box:hover .imagebox-image-link-inner .imagebox-arrow {
    background-color: rgb(var(--TA-background-white));
}
#frontpage-imageboxes .imagebox-image-box:hover .imagebox-image-link-inner .imagebox-arrow i {
    color: rgb(var(--icon-hovercolor));
}

/* =======================================
   Section: Störer
   ======================================= */
#stoerer {
    color: rgba(var(--TA-textcolor-white),.8);
    z-index:20;
    margin: 20px 0 0;
    background-color: rgb(var(--TA-background-gray-lightest));
}
#stoerer a, #stoerer a:not(:visited) {
    color: rgb(var(--TA-textcolor-white));
}
#stoerer p {
    margin: 0;
}
#stoerer .centerbox-wrapper {
    position: relative;
    overflow: hidden;
}
#stoerer .bg-icon-overflow {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
#stoerer .bg-icon {
    position: absolute;
    opacity: 0.25;
}
#stoerer .bi,
#stoerer .title {
    color: rgb(var(--TA-textcolor-white));
}
#stoerer .title {
    font-family: var(--roboto-slab);
    margin: 0 0 15px;
}
#stoerer .stoerer-details {
    background-color: rgb(var(--TA-main-blue-normal));
    padding: 25px;
}
#stoerer .stoerer-details .bg-icon.bg-technikon {
    font-size: 280px;
    bottom: -37px;
    right: -50px;
}
#stoerer .stoerer-search {
    background-color: rgb(var(--TA-main-green-normal));
    padding: 25px;
}
#stoerer .bg-icon.bg-search {
    font-size: 150px;
    bottom: -43px;
    right: 11px;
    transform: rotate(-13deg);
}
#stoerer .stoerer-search button {
    background-color: rgb(var(--TA-main-blue-normal));
}
/* =======================================
   Section: Dates Kurse
   ======================================= */
#frontpage-dates-kurse {
    margin-top: 40px;
}

#frontpage-dates-kurse .dates-kurse-listcontainer {
    display: flex;
    flex-direction: column;
    gap: var(--25px);
    padding: 20px 0;
}
#frontpage-dates-kurse .dates-kurse-row {
    background: rgb(var(--TA-background-gray-lightest));
    display: flex;
    flex-direction: column; 
    align-items: center;
}
#frontpage-dates-kurse .dates-kurse-start {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(var(--TA-main-blue-normal));
    color: rgb(var(--TA-textcolor-white));
    padding: 5px 20px;
    align-self: stretch;
}
#frontpage-dates-kurse .dates-kurse-start .day,
#frontpage-dates-kurse .dates-kurse-start .month-short,
#frontpage-dates-kurse .dates-kurse-start .month-long {
    font-weight: 500;
    line-height: normal;
    font-size: var(--36px);
    text-transform: uppercase;
}
#frontpage-dates-kurse .dates-kurse-start .day {
    padding-right: var(--10px);
}
#frontpage-dates-kurse .dates-kurse-start .month-short {
    display: none;
}

#frontpage-dates-kurse .dates-kurse-center {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 0px;
    align-self: stretch;
}
#frontpage-dates-kurse .dates-kurse-center-start {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

#frontpage-dates-kurse .dates-kurse-center-start .title {
    font-size: var(--22px);
    letter-spacing: .5px;
    font-weight: 300;
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
}
#frontpage-dates-kurse .dates-kurse-center-start .details {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
    column-gap: 20px;
    padding: 12px 0 0;
    margin: 10px 0 0;
    align-self: stretch;
}
#frontpage-dates-kurse .dates-kurse-center-start .details::before {
    content: '';
    position: absolute;
    top: 0;
    background-color: rgb(var(--TA-background-gray-medium));
    left: 25%;
    width: 50%;
    height: 1px;
}
#frontpage-dates-kurse .dates-kurse-center-end {
    display: flex;
    align-items: start;
    flex-direction: column;
    margin-top: 10px;
}

#frontpage-dates-kurse .dates-kurse-center-end .price-oldprice-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3px;
    padding-bottom:10px;
    align-self: stretch;
}
#frontpage-dates-kurse .dates-kurse-center-end .price-r-percent,
#frontpage-dates-kurse .dates-kurse-center-end .price-oldprice {
    font-size: var(--14px);
    line-height: var(--15px);
    color: rgb(var(--TA-textcolor-white));
    background: rgba(var(--TA-main-red-normal));
    border-radius: 7px;
    padding: 4px 7px;
    white-space: nowrap;
}
#frontpage-dates-kurse .dates-kurse-center-end .price-r-percent {
    font-weight: bold;
}
#frontpage-dates-kurse .dates-kurse-center-end .price-r-percent-outer {
    flex: 1 0 100%;
    display: flex;
    justify-content: center;
}
#frontpage-dates-kurse .dates-kurse-center-end .price-r-percent {
    background: rgba(var(--TA-main-green-normal));
}
#frontpage-dates-kurse .dates-kurse-center-end .price-oldprice-value {
    position: relative;
    display: inline-block;
    text-decoration: none;
}
#frontpage-dates-kurse .dates-kurse-center-end .price-value,
#frontpage-dates-kurse .dates-kurse-center-end .price-r-value {
    font-weight: bold;
    color: rgb(var(--TA-main-blue-normal));
    font-size: var(--22px);
    line-height: var(--24px);
}
#frontpage-dates-kurse .dates-kurse-center-end .price-r-value {
    color: rgb(var(--TA-main-green-normal));
}
#frontpage-dates-kurse .dates-kurse-center-end .price,
#frontpage-dates-kurse .dates-kurse-center-end .price-brutto {
    font-size: var(--16px);
    line-height: var(--15px);
    display: flex;
    justify-content: space-between;
    align-self: stretch;
    align-items: end;
}
#frontpage-dates-kurse .dates-kurse-center-end .price-baseline,
#frontpage-dates-kurse .dates-kurse-center-end .price-taxline,
#frontpage-dates-kurse .dates-kurse-center-end .price-perperson {
    font-size: var(--13px);
    line-height: var(--14px);
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 5px;
    margin-top: 5px;
    align-self: stretch;
}
#frontpage-dates-kurse .dates-kurse-center-end .price-oldprice-value::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left bottom,
        transparent 48%,
        rgba(255,255,255,1) 49%,
        rgba(255,255,255,1) 51%,
        transparent 52%
    );
    pointer-events: none;
}
#frontpage-dates-kurse .dates-kurse-end {
    display: flex;
    position: relative;
    padding: 0;
    margin: 15px 0 20px;
    align-self: stretch;
    justify-content: space-between;
    padding: 20px 20px 0;
}
#frontpage-dates-kurse .dates-kurse-end::before {
    content: '';
    position: absolute;
    top: 0;
    background-color: rgb(var(--TA-background-gray-medium));
    left: 25%;
    width: 50%;
    height: 1px;
}
#frontpage-dates-kurse .dates-kurse-end a,
#frontpage-dates-kurse .tooltip-btn {
    flex-grow: 0;
}
#frontpage-dates-kurse .dates-kurse-end a {
    font-size: var(--20px);
    background-color: rgb(var(--TA-background-gray-light));
    color:rgb(var(--TA-main-blue-normal));
    padding: 10px 15px;
    border-radius: 7px;
}
#frontpage-dates-kurse .dates-kurse-end a .link-label-lg {
    display: none;
}
#frontpage-dates-kurse .tooltip-btn {
    font-size: var(--35px);
    line-height: var(--34px);
    color: rgba(var(--TA-main-green-normal),.8);
    padding: 0 5px;
}

/* =======================================
   page-kurskategorie
   ======================================= */
#page-kurskategorie .page-layout-wrapper {
    background-color: rgb(var(--TA-background-gray-lightest));
}
#page-kurskategorie .page-layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "start" "end";
    align-items: start;
    margin-top:20px;
}
#page-kurskategorie .page-layout #kurskategorie-kurse {grid-area: start;}
#page-kurskategorie .page-layout #kurskategorie-aside {grid-area: end; text-align: center;}

#page-kurskategorie .page-layout #kurskategorie-aside h2 {padding-top: 8px;}

#page-kurskategorie .page-layout #kurskategorie-aside ul { padding: 0; margin: 0; list-style-type: none;}
#page-kurskategorie .page-layout #kurskategorie-aside ul li { padding: 0; margin: 0 0 10px;}
#page-kurskategorie .page-layout #kurskategorie-aside ul li ul { 
    padding: 5px 0 0;
    /*padding: 5px 0 0 16px;*/
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap:7px;
    row-gap: 7px;
    justify-content: center;
}
#page-kurskategorie .page-layout #kurskategorie-aside ul li ul li {
    padding: 0;
    margin: 0;
    white-space: nowrap;
}
#page-kurskategorie .page-layout #kurskategorie-aside ul li ul li a {
    display: block;
    background: rgb(var(--TA-background-gray-light));
    padding: 3px 7px;
}
#page-kurskategorie .page-layout #kurskategorie-aside ul li ul li.self>a {
    background: rgb(var(--TA-main-blue-normal));
    color: rgb(var(--TA-textcolor-white));
}

#page-kurskategorie .page-layout #kurskategorie-aside .self>details>summary,
#page-kurskategorie .page-layout #kurskategorie-aside .self>details>summary>a,
#page-kurskategorie .page-layout #kurskategorie-aside .self>a {
    color: rgb(var(--TA-main-blue-normal));
}
#page-kurskategorie .page-layout #kurskategorie-aside .active>details>summary,
#page-kurskategorie .page-layout #kurskategorie-aside .active>details>summary>a,
#page-kurskategorie .page-layout #kurskategorie-aside .active>a {
    font-weight: bold;
}

#page-kurskategorie #kurskategorie-textcontent {
    margin-top: 40px;
    background-color: rgb(var(--TA-background-white));
}
#page-kurskategorie #kurskategorie-textcontent a {
    text-decoration: underline;
}


/* =======================================
   Section: Kurskategorie Kurse
   ======================================= */
#kurskategorie-kurse {
    padding: 10px 0 50px;
}
#kurskategorie-kurse header h1 {
    text-align: center;
}
#kurskategorie-kurse .kurskategorie-kurse-inner {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-direction: column;
}
/* kurse */
#kurskategorie-kurse .kurskategorie-kurse-single {
    display: flex;
    flex-direction: column;
    background: rgb(var(--TA-background-white));
    padding: 20px 15px 20px;
    position:relative;

    flex: 0 0 85%;
    scroll-snap-align: start;

    transition: 
        opacity .4s ease,
        transform .4s ease,
        height .4s ease,
        width .4s ease,
        flex-basis .4s ease,
        flex .4s ease,
        margin .4s ease,
        padding .4s ease,
        border-width .4s ease;
    transition-behavior: allow-discrete;
    transform-origin: center;
    will-change: transform, opacity;
}
#kurskategorie-kurse .kurskategorie-kurse-single>* {
    opacity: 1;
    width: auto;
    height: auto;
    overflow: visible;
    transition: opacity .8s ease-in;
}
#kurskategorie-kurse .kurskategorie-kurse-single button:hover {
    background: none;
}
#kurskategorie-kurse .kurskategorie-kurse-single .bookmark {
    position: absolute;
    top: 15px;
    right: 21px;
    font-size: var(--25px);
    padding-top: 2px;
    color: rgb(var(--TA-main-green-normal));
}
#kurskategorie-kurse .kurskategorie-kurse-single .bookmark .bi-bookmark-star-fill {
    display: none;
    color: rgb(var(--TA-main-green-normal));;
}
#kurskategorie-kurse .kurskategorie-kurse-single .bookmark.active .bi-bookmark-star {
    display:none;
}
#kurskategorie-kurse .kurskategorie-kurse-single .bookmark.active .bi-bookmark-star-fill {
    display: initial;
}
#kurskategorie-kurse .kurskategorie-kurse-single .title-container {
    font-size:var(--18px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    min-height: 3lh;
    overflow: hidden;
    padding: 5px;
    margin: 5px -5px -5px;
}
#kurskategorie-kurse .kurskategorie-kurse-single .title {
    font-size:var(--18px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    color: rgb(var(--TA-main-blue-normal));
    margin: 0;
    padding-right: 35px;
    max-height: 3lh;
}
#kurskategorie-kurse .kurskategorie-kurse-single .details {
    display: flex;
    flex-direction: row;
    flex: 1 1 100%;
    justify-content: start;
    gap: 15px;
    flex-wrap: wrap;
}
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-left {
    order: 2;
}
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-left .sup {
    font-size: var(--12px);
    line-height: var(--12px);
    margin-top: -9px;
    display: block;
    padding: 5px 0 0 25px;
}
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-left .price-r-line {
    color: rgb(var(--TA-main-green-normal));
}
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-left .price-r-value,
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-left .price-value {
    font-weight: bold;
}
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-left .price-value {
    color: rgb(var(--TA-main-blue-normal));
}
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-left .price-r-value {
    color: rgb(var(--TA-main-green-normal));
}
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-left .price-oldprice-outer {
    padding: 1px 6px;
    background: rgba(var(--TA-main-red-normal));
    border-radius: 7px;
}
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-left .price-oldprice {
    font-size: var(--14px);
    line-height: var(--15px);
    color: rgb(var(--TA-textcolor-white));
    position: relative;
    font-weight: bold;
}
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-left .price-oldprice::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left bottom,
        transparent 48%,
        rgba(255,255,255,1) 49%,
        rgba(255,255,255,1) 51%,
        transparent 52%
    );
    pointer-events: none;
}
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-center {
    order: 1;
    flex: 1 0 100%;
    padding: 15px 0 0;
}
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-center p {
    margin: 0;
}
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-right {
    display: flex;
    flex-direction: column;
    justify-content: end;
    row-gap: 10px;
    margin-left: auto;
    order: 3;
}
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-right a,
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-right button {
    font-size: var(--35px);
    line-height: var(--34px);
}
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-right button[data-tippy-content] {
    color: rgb(var(--TA-main-green-normal));
}
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-right button[aria-describedby],
#kurskategorie-kurse .kurskategorie-kurse-single .details .details-right button[aria-describedby]:hover {
    color: rgb(var(--TA-main-green-normal));
}
#kurskategorie-kurse .kurskategorie-kurse-single.hidden {
    height: 0;
    width: 0;
    flex: 0 0 0;
    flex-basis: 0;
    padding: 0;
    opacity: 0;
    border-width: 0;
    transform: scale(0) translateX(100%) translateY(100%);
    margin-left: -20px;
    scroll-snap-align: none;
}
#kurskategorie-kurse .kurskategorie-kurse-single.hidden>* {
    height: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
}
#kurskategorie-kurse .summary {
    display: none;
}
#kurskategorie-kurse .summary a {
    text-decoration: underline;
}
#kurskategorie-kurse .filters {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 15px;
    padding: 0 15px;
    gap: 5px;
}
#kurskategorie-kurse .filters>* {
}
#kurskategorie-kurse .filters>*:first-child {
    
}
#kurskategorie-kurse .filters .page-info {
    text-align: center;
}
#kurskategorie-kurse .pagination {
    display: flex;
    justify-content: space-between;
    flex: 1 1 100%;
    margin-top: 15px;
}
#kurskategorie-kurse .pagination .pag-prev-button,
#kurskategorie-kurse .pagination .pag-next-button {
    padding: 5px 10px;
    border: solid 1px rgb(var(--TA-main-blue-normal));
    border-radius: 5px;
    color: rgb(var(--TA-main-blue-normal));
}
#kurskategorie-kurse .pagination .pag-numbers {
    display: flex;
    align-items: center;
}
#kurskategorie-kurse .pagination .pag-numbers .pag-ellipsis {
    padding: 0 2px;
}
#kurskategorie-kurse .pagination .pag-numbers button {
    color: rgb(var(--TA-linkcolor-blue-dark));
    margin: 0;
    padding: 3px 11px;
}
#kurskategorie-kurse .pagination .pag-numbers .pag-current button {
    font-weight: bold;
}
#kurskategorie-kurse .featured-links {
    text-align: center;
    margin-top: 30px;
}
#kurskategorie-kurse .featured-links a {
    padding: 10px 20px;
    color: rgb(var(--TA-linkcolor-white));
    background: rgb(var(--TA-main-blue-normal));
}
#kurskategorie-kurse footer .filters .page-info {
    width: 100%;
    text-align: center;
}
#kurskategorie-kurse header .page-info,
#kurskategorie-kurse header .pagination,
#kurskategorie-kurse footer .filters .filterLimit,
#kurskategorie-kurse footer .filters .filterSort {
    display: none;
}

/* =======================================
   Section: Kurskategorie Imageboxes
   ======================================= */

#kurskategorie-imageboxes {
    margin-top: 20px;
    background: linear-gradient(
        to bottom, 
        rgb(var(--TA-background-gray-lightest)) 0%,
        rgb(var(--TA-background-gray-lightest)) 30%,
        rgb(var(--TA-background-white)) 70%,
        rgb(var(--TA-background-white)) 100%
    );
}

#kurskategorie-imageboxes .imagebox-inner {
    display: flex;
    flex-direction: column;
}
#kurskategorie-imageboxes .imagebox-text {
    hyphens: auto;
}
#kurskategorie-imageboxes .imagebox-image-box {
    height: 170px;
    cursor: pointer;
    position: relative;
}
#kurskategorie-imageboxes .imagebox-image-overlay-wrapper {
    background-image: var(--bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
#kurskategorie-imageboxes .imagebox-image-overlay-wrapper .imagebox-overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
#kurskategorie-imageboxes .imagebox-image-linkcontainer {
    position: relative;
    height: 100%;
    width: 100%;
}
#kurskategorie-imageboxes .imagebox-image-box .imagebox-overlay {
    transition: opacity 200ms linear;
    opacity: .5;
}
#kurskategorie-imageboxes .imagebox-image-box:hover .imagebox-overlay {
    opacity: .75;
}
#kurskategorie-imageboxes .imagebox-image-box.overlay-blue {--icon-hovercolor:var(--TA-main-blue-normal);}
#kurskategorie-imageboxes .imagebox-image-box.overlay-blue .imagebox-image-overlay-wrapper .imagebox-overlay {
    background: linear-gradient(0deg, rgba(var(--TA-main-blue-normal),1) 25%, rgba(0,0,0,0) 45%);
}
#kurskategorie-imageboxes .imagebox-image-box.overlay-green {--icon-hovercolor:var(--TA-main-green-normal);}
#kurskategorie-imageboxes .imagebox-image-box.overlay-green .imagebox-image-overlay-wrapper .imagebox-overlay {
    background: linear-gradient(0deg, rgba(var(--TA-main-green-normal),1) 25%, rgba(0,0,0,0) 45%);
}
#kurskategorie-imageboxes .imagebox-image-box.overlay-yellow {--icon-hovercolor:var(--TA-main-yellow-normal);}
#kurskategorie-imageboxes .imagebox-image-box.overlay-yellow .imagebox-image-overlay-wrapper .imagebox-overlay {
    background: linear-gradient(0deg, rgba(var(--TA-main-yellow-normal),1) 25%, rgba(0,0,0,0) 45%);
}
#kurskategorie-imageboxes .imagebox-image-box.overlay-red {--icon-hovercolor:var(--TA-main-red-normal);}
#kurskategorie-imageboxes .imagebox-image-box.overlay-red .imagebox-image-overlay-wrapper .imagebox-overlay {
    background: linear-gradient(0deg, rgba(var(--TA-main-red-normal),1) 25%, rgba(0,0,0,0) 45%);
}

#kurskategorie-imageboxes .imagebox-image-link { 
    display: flex;
    align-items: flex-end;
    height: 100%;
    width: 100%;    
    padding: 15px 25px;
}
#kurskategorie-imageboxes .imagebox-image-link-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    width: 100%;
}
#kurskategorie-imageboxes .imagebox-image-link-inner h4,
#kurskategorie-imageboxes .imagebox-image-link-inner .h3,
#kurskategorie-imageboxes .imagebox-image-link-inner i {
    color: rgb(var(--TA-textcolor-white));
    margin: 0;
    font-weight: 350;
}
#kurskategorie-imageboxes .imagebox-image-link-inner h4,
#kurskategorie-imageboxes .imagebox-image-link-inner .h3 {
    text-shadow: 0 0 2px rgba(var(--TA-textshadow-black), .9);
}
#kurskategorie-imageboxes .imagebox-image-box .imagebox-image-link-inner .imagebox-arrow {
    height: 50px;
    width: 50px;
    min-width: 50px;
    line-height: 48px;
    text-align: center;
    background-color: transparent;
    transition: background-color .35s;
    border: 1px solid #fff;
    color: rgb(var(--TA-textcolor-white));
    font-size: var(--26px);
}
#kurskategorie-imageboxes .imagebox-image-box:hover .imagebox-image-link-inner .imagebox-arrow {
    background-color: rgb(var(--TA-background-white));
}
#kurskategorie-imageboxes .imagebox-image-box:hover .imagebox-image-link-inner .imagebox-arrow i {
    color: rgb(var(--icon-hovercolor));
}

/* =======================================
   Page: Einfache Seite
   ======================================= */
#page-einfache-seite #titleimg {
    position: relative;
}
#page-einfache-seite #titleimg img {
    height: 190px;
    object-fit: cover;
    width: 100%;
    object-position: center center;
}
#page-einfache-seite #titleimg .secondarytitle {
    position: absolute;
    bottom: 0;
    width: 100%;
}
#page-einfache-seite #titleimg .secondarytitle .decorative {
    color: rgb(var(--TA-textcolor-white));
    text-shadow: 0 0 5px rgba(var(--TA-textshadow-black), .9);
    margin: 0 0 16px;
}
#page-einfache-seite #maincontent {
    position: relative;
}
#page-einfache-seite #maincontent .page-layout {
    display: grid;
    grid-template-areas: 
    "title"
    "content";
    grid-template-columns: 1fr;
    gap:10px;
    margin-bottom: 15px;
}
#page-einfache-seite #maincontent .page-layout:has(.linkbuttons) {
    grid-template-areas: 
    "title"
    "content"
    "linkbuttons";
}
#page-einfache-seite #maincontent .bg-icon {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
#page-einfache-seite #maincontent .bg-icon::after {
    display: inline-block;
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: 400 !important;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-variant: normal;
    content: "\e900";
    
    position: absolute;
    top: 25%;
    left: 25%;
    font-size: 2500%;

    
    color: rgba(var(--TA-textcolor-black), .05);
}
#page-einfache-seite #maincontent h1 {
    grid-area: title;
}
#page-einfache-seite #maincontent .content {
    grid-area: content;
    position: relative;
}
#page-einfache-seite #maincontent .content a {
    text-decoration: underline;
}
#page-einfache-seite #maincontent .content img {
    object-fit: cover;
    max-width: 40%;
}
#page-einfache-seite #maincontent .content img[style*="float: left"],
#page-einfache-seite #maincontent .content img[style*="float:left"] {
    margin: 0 10px 5px 0;   /* right + bottom gap */
}

#page-einfache-seite #maincontent .content img[style*="float: right"],
#page-einfache-seite #maincontent .content img[style*="float:right"] {
    margin: 0 0 5px 10px;   /* left + bottom gap */
}
#page-einfache-seite #maincontent .linkbuttons {
    grid-area: linkbuttons;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#page-einfache-seite #maincontent .linkbuttons .linkbuttonitem {
    position: relative;
}
#page-einfache-seite #maincontent .linkbuttons .linkbuttonitem a {
    display: block;
    min-height: 35px;
}
#page-einfache-seite #maincontent .linkbuttons .linkbuttonitem a span {
    width: 100%;
    position: absolute;
    bottom: 0;
    display: block;
    color: rgb(var(--TA-linkcolor-white));
    padding: 5px 15px;
    text-shadow: 0 0 4px rgba(var(--TA-textshadow-black), 1);
}
#page-einfache-seite #maincontent .linkbuttons .linkbuttonitem a::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    /*without image*/
    opacity: .75;
    background: linear-gradient(0deg, rgba(var(--TA-main-blue-normal),1) 0%, rgba(0,0,0,0) 100%);
    transition: opacity 300ms ease;
}
#page-einfache-seite #maincontent .linkbuttons .linkbuttonitem a:has(img)::before {
    /* with image */
    background: linear-gradient(0deg, rgba(var(--TA-main-blue-normal),1) 0%, rgba(0,0,0,0) 50%);
}
#page-einfache-seite #maincontent .linkbuttons .linkbuttonitem a:hover::before,
#page-einfache-seite #maincontent .linkbuttons .linkbuttonitem a:focus::before,
#page-einfache-seite #maincontent .linkbuttons .linkbuttonitem a:focus-visible::before {
    opacity: 1;
}
#page-einfache-seite #maincontent h1 {
    text-align: center;
    margin: 20px 0 15px;
}

/* =======================================
   Tests ++ NEW ++ TEMP
   ======================================= */
