:root {
	--fade_duration: 1.5s;
	--move_duration: 1.5s;
	--ivp_animation_delay: 0s;
}
.ivp { overflow: visible; }

.einblenden.ivp:not(.above_viewport) { 
	opacity: 0; 
	position: relative; 
}
.einblenden.ivp.iivp {
	opacity: 1; 
	transition: opacity var(--fade_duration) ease-in-out var(--ivp_animation_delay);
}

.einblendenVonHinten.ivp:not(.above_viewport) { 
	opacity: 0; 
	transform: scale(.8);
	position: relative;
}
.einblendenVonHinten.ivp.iivp {
	opacity: 1; 
	transform: scale(1);
	transition: transform var(--move_duration) ease-out var(--ivp_animation_delay), opacity var(--fade_duration) ease-out var(--ivp_animation_delay);
}

.einblendenVonVorne.ivp:not(.above_viewport) { 
	opacity: 0; 
	transform: scale(1.1);
	position: relative;
}
.einblendenVonVorne.ivp.iivp {
	opacity: 1; 
	transform: scale(1);
	transition: transform var(--move_duration) ease-out var(--ivp_animation_delay), opacity var(--fade_duration) ease-out var(--ivp_animation_delay);
}

.einblendenVonRechts.ivp:not(.above_viewport) { 
	opacity: 0; 
	transform: translateX(100px);
	position: relative; 
}
.einblendenVonRechts.ivp.iivp {
	opacity: 1; 
	transform: translateX(0); 
	transition: opacity var(--fade_duration) ease-out var(--ivp_animation_delay), transform var(--move_duration) ease-out var(--ivp_animation_delay); 
}

.einblendenVonLinks.ivp:not(.above_viewport) { 
	opacity: 0; 
	transform: translateX(-100px); 
	position: relative; 
}
.einblendenVonLinks.ivp.iivp {
	opacity: 1; 
	transform: translateX(0);
	transition: opacity var(--fade_duration) ease-out var(--ivp_animation_delay), transform var(--move_duration) ease-out var(--ivp_animation_delay); 
}

.mod_article:has(.einblendenVonOben) { overflow: hidden; }
.einblendenVonOben.ivp:not(.above_viewport) { 
	opacity: 0; 
	transform: translateY(-100px);
	position: relative; 
}
.einblendenVonOben.ivp.iivp {
	opacity: 1; 
	transform: translateY(0); 
	transition: opacity var(--fade_duration) ease-out var(--ivp_animation_delay), transform var(--move_duration) ease-out var(--ivp_animation_delay); 
}

.mod_article:has(.einblendenVonUnten) { overflow: hidden; }
.einblendenVonUnten.ivp:not(.above_viewport),
.einblendenVonUnten.ivp:not(.above_viewport) .formbody > * { 
	opacity: 0; 
	transform: translateY(100px); 
	position: relative; 
}
.einblendenVonUnten.ivp.iivp, 
.einblendenVonUnten.ivp.iivp .formbody > * { 
	opacity: 1; 
	transform: translateY(0);
	transition: opacity var(--fade_duration) ease-out var(--ivp_animation_delay), transform var(--move_duration) ease-out var(--ivp_animation_delay); 
}

.mod_article .content-text.einblendenVonBeidenSeiten.ivp:not(.above_viewport) { 
	.rte, & > figure img { position: relative; }
	&.media--right {
		.rte {		opacity: 0; transform: translateX(-100px); }
		& > figure img {opacity: 0; transform: translateX(100px); }
	}
	&.media--left {
		.rte {		opacity: 0; transform: translateX(100px); }
		& > figure img {opacity: 0; transform: translateX(-100px); }
	}
}
.mod_article .content-text.einblendenVonBeidenSeiten.ivp.iivp {
	.rte, & > figure img {
		transition: opacity var(--fade_duration) ease-out var(--ivp_animation_delay), transform var(--move_duration) ease-out var(--ivp_animation_delay);
	}
	&.media--right { 
		.rte {		opacity: 1; transform: translateX(0); }
		& > figure img {opacity: 1; transform: translateX(0); }
	}
	&.media--left { 
		.rte {		opacity: 1; transform: translateX(0); }
		& > figure img {opacity: 1; transform: translateX(0); }
	}
}
.mod_article .content-text.einblendenVonBeidenSeiten.nacheinanderEinblenden.ivp.iivp {
	&.media--right { 
		.rte {		transition: opacity var(--fade_duration) ease-out var(--ivp_animation_delay), transform var(--move_duration) ease-out var(--ivp_animation_delay); }
		& > figure img {transition: opacity var(--fade_duration) ease-out var(--ivp_animation_delay, .5s), transform var(--move_duration) ease-out var(--ivp_animation_delay, .5s); }
	}
	&.media--left { 
		.rte {		transition: opacity var(--fade_duration) ease-out var(--ivp_animation_delay, .5s), transform var(--move_duration) ease-out var(--ivp_animation_delay, .5s);  }
		& > figure img {transition: opacity var(--fade_duration) ease-out var(--ivp_animation_delay), transform var(--move_duration) ease-out var(--ivp_animation_delay); }
	}
}

.mod_article .media--second_image.BilderEinblenden.ivp:not(.above_viewport) { 
	overflow: visible;
	figure > figure:not(.second_image), figure > figure.second_image { position: relative; }
	figure > figure:not(.second_image) { opacity: 0; transform: translateX(-100px); }
	figure > figure.second_image { opacity: 0; transform: translateX(100px); }
}
.mod_article .content-text.BilderEinblenden.ivp.iivp {
	figure > figure:not(.second_image), figure > figure.second_image { transition: opacity var(--fade_duration) ease-out var(--ivp_animation_delay), transform var(--move_duration) ease-out var(--ivp_animation_delay); } 
	figure > figure:not(.second_image) { opacity: 1; transform: translateX(0); }
	figure > figure.second_image { opacity: 1; transform: translateX(0); }
}
.mod_article .media--second_image.BilderEinblendenVonUnten.ivp:not(.above_viewport) { 
	overflow: visible;
	figure > figure:not(.second_image), figure > figure.second_image { position: relative; }
	figure > figure:not(.second_image) { opacity: 0; transform: translateY(100px); }
	figure > figure.second_image { opacity: 0; transform: translateY(100px); }
}
.mod_article .content-text.BilderEinblendenVonUnten.ivp.iivp {
	figure > figure:not(.second_image), figure > figure.second_image { transition: opacity var(--fade_duration) ease-out var(--ivp_animation_delay), transform var(--move_duration) ease-out var(--ivp_animation_delay); } 
	figure > figure.second_image { transition: opacity var(--fade_duration) ease-out .5s, transform var(--move_duration) ease-out .5s; } 
	figure > figure:not(.second_image) { opacity: 1; transform: translateY(0); }
	figure > figure.second_image { opacity: 1; transform: translateY(0); }
}

.einblendenVonUnten.ivp.iivp .formbody > * { 
	&:nth-child(1) { transition-delay: 0s; }
	&:nth-child(2) { transition-delay: .2s; }
	&:nth-child(3) { transition-delay: .4s; }
	&:nth-child(4) { transition-delay: .6s; }
	&:nth-child(5) { transition-delay: .8s; }
	&:nth-child(6) { transition-delay: 1s; }
	&:nth-child(7) { transition-delay: 1.2s; }
	&:nth-child(8) { transition-delay: 1.4s; }
	&:nth-child(9) { transition-delay: 1.6s; }
	&:nth-child(10) { transition-delay: 1.8s; }
	&:nth-child(11) { transition-delay: 2s; }
	&:nth-child(12) { transition-delay: 2.2s; }
}
.AnimationVerzögert.ivp.iivp,
.verzögert.ivp.iivp,
.AnimationVerzögert025.ivp.iivp,
.verzögert025.ivp.iivp { transition-delay: .25s; }
.AnimationVerzögert05.ivp.iivp,
.verzögert05.ivp.iivp { transition-delay: .5s; }
.AnimationVerzögert1.ivp.iivp,
.verzögert1.ivp.iivp { transition-delay: 1s; }
.AnimationVerzögert15.ivp.iivp,
.verzögert15.ivp.iivp { transition-delay: 1.5s; }
.AnimationVerzögert2.ivp.iivp,
.verzögert2.ivp.iivp { transition-delay: 2s; }
.AnimationVerzögert25.ivp.iivp,
.verzögert25.ivp.iivp { transition-delay: 2.5s; }

.Animationsdauer.ivp.iivp,
.Animationsdauer025.ivp.iivp,
.Dauer025.ivp.iivp { transition-duration: .25s; }
.Animationsdauer05.ivp.iivp,
.Dauer05.ivp.iivp { transition-duration: .5s; }
.Animationsdauer1.ivp.iivp,
.Dauer1.ivp.iivp { transition-duration: 1s; }
.Animationsdauer15.ivp.iivp,
.Dauer15.ivp.iivp { transition-duration: 1.5s; }
.Animationsdauer2.ivp.iivp,
.Dauer2.ivp.iivp { transition-duration: 2s; }
.Animationsdauer25.ivp.iivp,
.Dauer25.ivp.iivp { transition-duration: 2.5s; }

#btn-logout {
    top: 3vh;
    position: fixed;
    right: 15em;
    border: 2px solid #ff6b86 !important;
    font-size: 0.9em;
    color: white;
    border-radius: 60px;
    min-width: fit-content;
    margin-top: 1em;
    background-color: #ff6b86;
    text-align: center;
    width: 8%;
    height: 4vh;
    font-size: 1em;
    min-width: fit-content;
    display: flex;           
    align-items: center;     
    justify-content: center;
}
::-webkit-scrollbar {
    width:10px;
}
.left-links {
    line-height: 1.3;
}
.footer-logo img {
    width: 3.5em;
    /*heigth: 1em;*/
}
.blurry-header {
    backdrop-filter: blur(30px);
     -webkit-backdrop-filter: blur(30px);
}
.cols_4 {
    margin-top:0;
    margin-bottom:0;
    margin-left:-0.75em;
}
.kunst2-galerie {
    position:relative;
    padding:0 1em 0 0;
}
#overlay {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: none;
}
.right-header {
    display: flex;
    align-items: center;
    gap: 3em;
}
.right-footer {
    text-align: right;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 1.2em;
    line-height: 1.2;
}
.mod_cookiebarOpener {
    display:none;
}
.breadcrumb {
    width:45%;
    left:17em;
    top:2.5em;
    position:fixed;
    margin-top:0;
    font-size:1em;
    display:flex;
    flex-wrap: wrap;
}
.accordion_title {
    font-size:1.7em;
}
div#logo-footer {
    /*margin: 5px;*/
        bottom:0.5%;
        position: fixed;
        left: 90%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
}
.icon_kunst {
    width: 0.8em;
    height: 0.8em;
}
#kunst2-video-mobil,
#kunst2-video-home {
    display: none;
}
#mark-text .highlight {
    color: white;
    background-color: #ff6b86 !important;
}
#header .inside {
    position: fixed;
    box-sizing: border-box;
    width: 100%;
    height: 12em;
    justify-content: space-between;
    z-index: 999;
    align-items: center;
    display: flex;
    /*padding: 0 2em;*/
    padding: 0 2.5em 0 0.4em;
}
#container {
    bottom:0;
    left:0;
    right:0;
    top:0;
    position:fixed;
    padding-top:10em;
    padding-left:23em;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    overflow-y: auto;
}
.titles-kunst {
    margin-top: 2em;
    display: flex;
    flex-direction: column;
}
.logo_kunst2 {
    margin:1%;
    padding:5px;
    display: flex;
    align-items: center;
}
#title_site {
    font-weight: normal;
    font-size: 2.2em;
    margin-top: 0;
    white-space: nowrap;
}
#title_category {
    margin-top:0;
    margin-bottom:0;
    font-size:1em;
    font-weight:normal;
}
.sub-menu-kunst {
    margin-left:.5em;
}
.kunst-menu-title {
    cursor: pointer;
    color:black;
    text-decoration: none;
}
.foreground_desktop {
    margin-top:20%;
    width: 100%;
     height: auto;
}
.text-under-acc {
    font-size: 40px;
        margin-top: 0;
        margin-left: 2em;
}
html,
body {
    font-family: 'Raleway';
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    display: flex;
      flex-direction: column;
      min-height: 100vh;
}
#acc_menu_kunst2 {
    z-index: 9999;
     line-height: 1.2;
     margin-left: 1em;
    width: 70vw;
    height: 100%;
    overflow-y: auto;
     position: fixed;
        left: 10px;
        top: 3em;
}
.foreground_mobile {
    position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 30%;
}
.hamburger_menu {
    display: flex;
    cursor:pointer;
    margin-left: auto;
    flex-direction: column;
}
.sr-only {
    display:none;
}
#trigger {
    position: absolute;
      right: 10px;
      top: 10px;
      z-index: 100;
      margin: 2%;
}
.sm_hidden {
    display:none;
}
.f2 {
    text-align: end;
}
#right-kunst {
    width:100% !important;
    background-color:blue;
    display: inline-grid;
    width: calc(25% - 6px);
    vertical-align: top;
}
.image-container {
    margin-left:2%;
}
main {
    box-sizing: border-box;
    max-width: 55vw;
    font-size: 1.3em;
    position: relative;
    /* overflow-y: auto !important;  entfernen*/
    left: -2.6em;
    padding-bottom: 5em;
    scrollbar-width: none;
     overflow: visible;
}
#footer {
    position: fixed;
    font-size: 1em;
    box-sizing: border-box;
    bottom: 0;
    width: 100%;
    padding: 0.5em 2em;
    a{
    color:black;
    text-decoration: none;
    }
}
#footer div.inside {
    display: flex;
     justify-content: space-between;
    white-space: nowrap;
}

@media screen and (max-width: 699px) {
#btn-logout {
    right: 7em;
}
.logo_kunst_img {
    margin-top: -1em !important;
}
.breadcrumb li:last-child {
    margin-top:.3em;
    font-size:1.8em;
}
.footer-logo img {
    width: 3.6em;
}
.not-accordeon {
    font-size:1.8em;
}
#cboxTitle {
    /*top: 85%;
        left: 15%;*/
    top: 7vh;
    left: 0;
}
#cboxClose {
    /*left: 70vw;
    width: 20vw;
    height: 18vw;*/
    left: 80vw;
    width: 14vw;
    height: 15vw;
}
#cboxPrevious {
    top: 50%;
    left: 8%;
     width: 4vw;
    top:55% !important;
}
#cboxNext {
    margin-left: 3vw;
     width: 4vw;
    top:55% !important;
}
.cols_4 {
    margin-left:0;
    margin-block-start: 0;
    padding-inline-start: 1.3em;
}
#kunst2-video-mobil {
    display: block;
}
#kunst2-video,
#kunst2-video-home {
    display: none !important;
}
.kunst2-start video {
    max-height: 100vh;
        object-fit: cover;
        left: 0;
        top: 0;
        position: fixed;
        right: 0;
        bottom: 0;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -1;
        overflow: hidden;
}
.titles-kunst {
    margin-left: 1em;
     margin-top: 0.5em;
}
.right-header {
    display: inline-block;
}
.breadcrumb img.icon_kunst {
    width: 1em !important;
    height: 1em !important;
}
.breadcrumb {
    width:100%;
    left:-1em;
    top:9.5em;
    margin-top:1.5em;
    font-size:.7em;
}
.toggler {
    font-size: 1.4em; /* 2em;*/
}
main .submenu {
    font-size: 1.9em !important;
}
main   .kunst-menu-title {
    font-size:1.7em !important;
}
.right-header {
    gap: 1em;
}
.text_kunst_big {
    font-size:20px;
}
.toggler.active + .accordion,
.accordion {
    font-size:20px;
    /*margin-left:30px*/
}
.logo_kunst2 img {
    height: auto;
    margin-top: 2em;
    width: 9em;
}
#title_site {
    font-size:1.6em;
}
#footer div.inside {
    font-size: 0.4em;
}
.hamburger_menu img {
    margin-top:-1em;
    width: 100%;
}
.hamburger_menu {
    width: 100%;
    margin-top: -1em;
     height:  auto;
     max-width: 4em;
}
#header .inside {
    height: 9.5em;
    /*padding: 0 0.8em;*/
    padding: 0 1.5em 0 0.8em;
}
#container {
    padding-top:17em;
    padding-left:2em;
    font-size:10px;
}
#acc_menu_kunst2 {
    width:100%;
    top:6em;
}
main {
    font-size:15px;
    max-width: 85vw !important;
    left:0.6em;
    padding-bottom: 12em;
    scrollbar-width: none;
}
#title_category {
    margin-top:-1em;
    font-size:1.1em;
}
#footer {
    padding-right:.7em;
    padding-left:1.2em;
}
}

/**start Seite*/
.inside {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#acc_menu_kunst2 {
    position: fixed;
    left: 10px;
    top: 8%;
}
#header .inside {
    height: 7em !important;
}
.submenu {
        font-size: 1.4em !important;
    }


 @media screen and (max-height: 1000px) {
    #kunst2-video-home-750 {
        display: block !important;
    }
     
   }
   
.hamburger_menu {
    margin-top: 5em !important;
}

@media screen and (max-width:699px) {
      .hamburger_menu img {
        margin-top: -4em !important;
    }
}

 @media screen and (max-width:1280px) and (min-width:700px){
 	main 
    .submenu {
        line-height: 1.7 !important;
        font-size: 1.7em;
	}
	.toggler {
		line-height: 1.3 !important;
	    font-size: 1.3em !important;
	}
	    .kunst-menu-title {
	        font-size: 1em !important;
	    }
 }
 
 
@media screen and (max-width:1400px) and (min-heigth:700px) and (min-width:1350px){
	#kunst2-video {
		display: none !important;
	}
	#kunst2-video-home {
		display: block !important;
	}
}

@media screen and (max-width: 999px) {
    #kunst2-video-home {
        display: block !important;
    }
	#kunst2-video{
        display: none!important;
    }
}

.kunst2-start video {
	left: 0;
    top: 0;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto; 
    z-index: -1;
    overflow: hidden;
}
::selection {
	background:white;
	color:black;
}
.toggler.active ~ .sub-menu-kunst {
    line-height: 1.2;
}

#cboxNext:focus, #cboxPrevious:focus {
	outline:none;
	box-shadow:none;
}

.lang-de, .lang-en {
	    text-underline-position: under;
}

.accordion {
	padding-left: 0.5em;
    font-size: 1.5em;
	overflow: unset;
    /*font-size: 3rem;*/
}

.toggler.active + .accordion {
    display: block;
    padding-left: 0.5em;
    font-size: 1.5em; 
}
#acc_menu_kunst2 .sr-only {
    display:none;
}

.dropdown-arrow-closed ,.dropdown-arrow-open{
    display: contents;
}

.dropdown-arrow{
	display:contents;
}

.dropdown-arrow img {
    width: 20px;
    height: 20px;
}

.toggler a {
	color: black;
	text-decoration:none;
}

.toggler.active .dropdown-arrow img {
    content: url("../../files/modellbau/icons/Dropdown-arrow-open.svg");
}

.toggler:not(.active) .dropdown-arrow img {
    content: url("../../files/modellbau/icons/Dropdown-arrow-closed.svg");
}


main{
	.kunst_acc {
		white-space:nowrap;
        position: relative;
        a {
			background-image: none !important;
		}
	}
	.submenu {
		line-height: 1.7;
 		font-size: 1.7em;
	 }
	  .kunst-menu-title {
	 	font-size: 1.1em !important;
	 }
	 
		.kunst_acc img{
			width: 0.8em;
        	height: 0.7em;
	}
	.login .closed {display:none;}
	.search-kunst .closed {display:none !important;}
}

.orange-icon a {
	color:#ff6b86 !important;
}

.orange-icon a::before {
	content:"";
	background-repeat: no-repeat;
    margin-right: 0.5em; 
	background-image: url('../../files/modellbau/icons/Navigation-internal-link-arrow-orange.svg') !important;
}
.orange-icon {
    padding-top: 0.5em;
	margin-left:0 !important;
}
.orange-icon .accordion p a {
    padding-left: 0.5em !important;
}

a {
	line-height: 1.2;
    text-decoration: none; 
    color: black; 
}

.accordion_title{
	display: inline-block;
	background-image: url('../../files/modellbau/icons/Dropdown-arrow-closed.svg');
    background-repeat: no-repeat;
    background-size: 30px; 
    padding-left: 25px;
}

.text_kunst_big{
	font-size: 2.7rem;
}

.accordion-icon{
	width: 0.7em;
    height: 0.7em;
}
	.toggler.active .accordion-icon {
		    width: 0.7em;
    content: url("../../files/modellbau/icons/Dropdown-arrow-open.svg");
}

.accordion p{
	margin-bottom: 0;
    margin-left: 0.8em;
    font-size: 0.7em;
    margin-top: 3px;
}
/*
.accordion p{
	margin-bottom: 0;
    margin-left: 0.5em;
    font-size: 0.6em; 
    margin-top: 3px;
}*/

 .toggler:hover {
        cursor: pointer;
    }
 
#kunst2-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  display: block;
}

.screen-reader-text {
	display:none;
}

.previous {
	display: flex;
}

.language-switcher {
    display: block !important;
    margin-bottom: 4%;
    left: 84% !important;
    position: fixed;
    font-weight: bold;
    display: flex;
    justify-content: flex-end;
    display: flex;
}

/*Design for lightbox colorbox*/
#cboxOverlay {
    backdrop-filter: blur(30px);
    background: transparent;
    opacity: 1 !important;
    -webkit-backdrop-filter: blur(30px);
}

#cboxClose {
	right: 2em;
	padding-right:1em;
    position: fixed;
    top: calc(2% + 2em);
    margin-left:auto;
    left: calc(86% + 2em); /*calc(90%);*/
    display: block;
    background: url(../../files/modellbau/icons/X-Menu.svg) no-repeat top center;
    width: 12em;
    height: 9em;
    text-indent: -9999px;
}
#colorbox, #cboxOverlay, #cboxWrapper {
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: unset; 
    -webkit-transform:none !important;
}

#cboxCurrent {
    display: none !important;
}
#cboxContent {
    margin-top: 20px;
    background: transparent; 
}
#cboxLoadedContent {
    border:0;
    background: #fff;
    max-width: 100%;
    max-height: 100vh !important;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cboxNext {
    margin-left: 2vw;
    position: fixed;
    top: 50%;
    left: 85vw !important;
    right: 0;
    margin-top: -32px;
    background: url(../../files/modellbau/icons/arrow-right.svg) no-repeat top right;
    width: 1vw;
    height: 5vw;
    text-indent: -9999px;
}

#cboxPrevious {
	margin-right: 2vw;
	/*position: relative;
    top: -45vh;
    left: -20vh;*/
    position: fixed;
    top: 50%;
    left: 12%;
    right: 0;
    margin-top: -32px;
    background: url(../../files/modellbau/icons/arrow-left.svg) no-repeat top left;
    width: 1vw;
    height: 5vw;
    text-indent: -9999px;
}

#cboxNext:hover,  #cboxPrevious:hover {

    background-position: unset; 
}

#cboxTitle {
	margin-right: 2vw; 
    right: 0;
    margin-top: -32px;
    bottom: 0px !important;
    color: #000;
    position: relative !important;
    top: 4vh;
    left: 0;
}
.headline-description{
	font-size: 0.5em;
}

#cboxLoadedContent {
    max-height: 80vh;
    overflow: auto;
}

@media screen and (max-width:1400px) {
	.contao-cookiebar.cc-middle.cc-active .cc-inner {
	    font-size: 10px;
	}
}
@media screen and (max-width:850px) and  (min-width:700px) {
	.logo-link img {
	width: 15em;
	}
	.breadcrumb{
		left: 15em;
	    top: 5em;
	    font-size: 1em;
	}
}
.not-accordeon {
	line-height: 1.7;
	font-size: 1.3em;
}
.icon_kunst_insta {
    height: 0.5em !important;
    width: 0.8em !important;
}


@media screen and (max-height: 750px) {
  .cc-footer .save {
    font-size: 1.5rem !important;
  }
 
  .cc-footer .success {
    font-size: 1.5rem !important;
  }

}

@media screen and (max-width:470px){
	main 
	    .kunst_acc {
	        font-size: 0.76em;
	}
}.visually-hidden{
    display : none;
}
.cc-window{opacity:1;transition:opacity 1s ease}.cc-window.cc-invisible{opacity:0}.cc-animate.cc-revoke{transition:transform 1s ease}.cc-animate.cc-revoke.cc-top{transform:translateY(-2em)}.cc-animate.cc-revoke.cc-bottom{transform:translateY(2em)}.cc-animate.cc-revoke.cc-active.cc-bottom,.cc-animate.cc-revoke.cc-active.cc-top,.cc-revoke:hover{transform:translateY(0)}.cc-grower{max-height:0;overflow:hidden;transition:max-height 1s}
.cc-link,.cc-revoke:hover{text-decoration:underline}.cc-revoke,.cc-window{position:fixed;overflow:hidden;box-sizing:border-box;font-family:Helvetica,Calibri,Arial,sans-serif;font-size:16px;line-height:1.5em;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;z-index:9999}.cc-window.cc-static{position:static}.cc-window.cc-floating{padding:2em;max-width:24em;-ms-flex-direction:column;flex-direction:column}.cc-window.cc-banner{padding:1em 1.8em;width:100%;-ms-flex-direction:row;flex-direction:row}.cc-revoke{padding:.5em}.cc-header{font-size:18px;font-weight:700}.cc-btn,.cc-close,.cc-link,.cc-revoke{cursor:pointer}.cc-link{opacity:.8;display:inline-block;padding:.2em}.cc-link:hover{opacity:1}.cc-link:active,.cc-link:visited{color:initial}.cc-btn{display:block;padding:.4em .8em;font-size:.9em;font-weight:700;border-width:2px;border-style:solid;text-align:center;white-space:nowrap}.cc-banner .cc-btn:last-child{min-width:140px}.cc-highlight .cc-btn:first-child{background-color:transparent;border-color:transparent}.cc-highlight .cc-btn:first-child:focus,.cc-highlight .cc-btn:first-child:hover{background-color:transparent;text-decoration:underline}.cc-close{display:block;position:absolute;top:.5em;right:.5em;font-size:1.6em;opacity:.9;line-height:.75}.cc-close:focus,.cc-close:hover{opacity:1}
.cc-revoke.cc-top{top:0;left:3em;border-bottom-left-radius:.5em;border-bottom-right-radius:.5em}.cc-revoke.cc-bottom{bottom:0;left:3em;border-top-left-radius:.5em;border-top-right-radius:.5em}.cc-revoke.cc-left{left:3em;right:unset}.cc-revoke.cc-right{right:3em;left:unset}.cc-top{top:1em}.cc-left{left:1em}.cc-right{right:1em}.cc-bottom{bottom:1em}.cc-floating>.cc-link{margin-bottom:1em}.cc-floating .cc-message{display:block;margin-bottom:1em}.cc-window.cc-floating .cc-compliance{-ms-flex:1;flex:1}.cc-window.cc-banner{-ms-flex-align:center;align-items:center}.cc-banner.cc-top{left:0;right:0;top:0}.cc-banner.cc-bottom{left:0;right:0;bottom:0}.cc-banner .cc-message{-ms-flex:1;flex:1}.cc-compliance{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:justify;align-content:space-between}.cc-compliance>.cc-btn{-ms-flex:1;flex:1}.cc-btn+.cc-btn{margin-left:.5em}
@media print{.cc-revoke,.cc-window{display:none}}@media screen and (max-width:900px){.cc-btn{white-space:normal}}@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape){.cc-window.cc-top{top:0}.cc-window.cc-bottom{bottom:0}.cc-window.cc-banner,.cc-window.cc-left,.cc-window.cc-right{left:0;right:0}.cc-window.cc-banner{-ms-flex-direction:column;flex-direction:column}.cc-window.cc-banner .cc-compliance{-ms-flex:1;flex:1}.cc-window.cc-floating{max-width:none}.cc-window .cc-message{margin-bottom:1em}.cc-window.cc-banner{-ms-flex-align:unset;align-items:unset}}
.cc-floating.cc-theme-classic{padding:1.2em;border-radius:5px}.cc-floating.cc-type-info.cc-theme-classic .cc-compliance{text-align:center;display:inline;-ms-flex:none;flex:none}.cc-theme-classic .cc-btn{border-radius:5px}.cc-theme-classic .cc-btn:last-child{min-width:140px}.cc-floating.cc-type-info.cc-theme-classic .cc-btn{display:inline-block}
.cc-theme-edgeless.cc-window{padding:0}.cc-floating.cc-theme-edgeless .cc-message{margin:2em 2em 1.5em}.cc-banner.cc-theme-edgeless .cc-btn{margin:0;padding:.8em 1.8em;height:100%}.cc-banner.cc-theme-edgeless .cc-message{margin-left:1em}.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn{margin-left:0}
.contao-cookiebar *{box-sizing:unset}.contao-cookiebar:before{height:0}.contao-cookiebar.cc-active.cc-blocked{z-index:9999;pointer-events:auto;background-color:inherit !important;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);animation:cookiebar-overlay-in .5s ease-in-out forwards}.contao-cookiebar.cc-saved.cc-blocked{pointer-events:none;backdrop-filter:none !important;-webkit-backdrop-filter:none !important;animation:cookiebar-overlay-out .5s ease-in-out forwards}.contao-cookiebar .cc-btn{display:inline-block;cursor:pointer;width:100%;padding:8px 14px;margin-bottom:8px;font-size:15px;outline:0 none;border:2px solid #000 !important;border-radius:4px;color:#444;background:#f5f5f5}.contao-cookiebar .cc-group .cc-detail-btn{font-family:"Raleway";border:0 none;outline:0 none;background:rgba(0,0,0,0);font-size:1.7em !important;letter-spacing:0;text-transform:initial;cursor:pointer;color:#000 !important;padding:8px 10px;line-height:1.2rem}.cc-footer .save,.cc-footer .success{font-family:"Raleway"}.cc-inner{max-width:750px;height:-webkit-fill-available;text-align:center}.cc-btn+.cc-btn{margin-left:0}.cc-head p{font-size:2em;color:#000}.cc-cookie{margin-top:10px}.cc-cookie label{cursor:pointer}.cc-cookie p{margin:5px 0}.toggle-group{display:none}.cc-detail-btn-details{cursor:pointer}.cc-footer button{padding:10px 20px;border:3px solid #000;cursor:pointer}.cc-footer .save{margin-top:1em;background-color:inherit;color:#000;border-radius:60px;height:4vh !important;width:45% !important;font-size:2em;font-weight:normal}.cc-footer .success{background-color:#ff6b86 !important;border:2px solid #ff6b86 !important;border-radius:60px;height:4vh !important;width:40% !important;font-size:2em;font-weight:normal;margin-top:1em}.contao-cookiebar{color:#333;padding:10px;border-bottom:1px solid #ccc}.contao-cookiebar .cc-inner{display:inline-flex;padding:25px;border-radius:0;overflow:hidden;-webkit-box-shadow:none;box-shadow:none;background:rgba(0,0,0,0);flex-direction:column}.contao-cookiebar .cc-group{display:block;align-content:center;position:relative;border:none;border-radius:unset;margin-bottom:10px}.contao-cookiebar .cc-cookies{width:100%;background:inherit;border-radius:0 0 5px 5px}.contao-cookiebar .cc-cookies>p,.contao-cookiebar .cc-cookies>.cc-cookie{margin:0;padding:15px;border-top:none}.contao-cookiebar .cc-cookies>p{font-size:1.5em}.contao-cookiebar p{color:#000;line-height:1.4}.cc-group input:disabled{border-color:#000 !important}.contao-cookiebar input:disabled+label:before{background:#f0f8ff;border-color:#000}.contao-cookiebar input:disabled+label:after{background:#000}.contao-cookiebar input+label:before{content:"";position:absolute;top:6px;left:0;width:35px;height:18px;margin:0;box-sizing:content-box;border-radius:10px;background:#fff;border:2px solid #000;transition:border-color .2s}.contao-cookiebar label{color:#000;position:relative;display:block;padding:8px 13px 8px 0;line-height:1.2rem}.contao-cookiebar .cc-group .cc-detail-btn-details{display:inline-block;border:0 none;outline:0 none;background:rgba(0,0,0,0);font-size:13px;letter-spacing:0;text-transform:initial;cursor:pointer;color:#000;text-decoration:underline;padding:0;margin:0 0 10px}.contao-cookiebar .cc-btn:hover{background:#ececec}.contao-cookiebar .cc-group>label{font-weight:normal;font-size:2em;flex-grow:1;margin:5px 0 1em 10px}.cookie-accordion-icon{display:inline-block;width:30px;height:30px}.acc-open-cookies-kunst2-btn::before{content:"";display:inline-block;width:.5em;height:.7em;background-image:url(../../files/modellbau/icons/Dropdown-arrow-closed.svg);background-repeat:no-repeat;margin-right:.5em}.acc-close-cookies-kunst2-btn::before{content:"";display:inline-block;width:.7em;height:.5em;background-image:url(../../files/modellbau/icons/Dropdown-arrow-open.svg);background-repeat:no-repeat;margin-right:.5em}.contao-cookiebar .cc-group .cc-detail-btn{border:0 none;outline:0 none;background:rgba(0,0,0,0);font-size:1.7em !important;letter-spacing:0;text-transform:initial;cursor:pointer;color:#000 !important;padding:8px 10px;line-height:1.2rem}.contao-cookiebar input:disabled+label{font-size:3em;pointer-events:none;margin-bottom:-0.2em}.contao-cookiebar .cc-info>p{text-align:left;padding-left:2.5em;font-size:1.8em}.contao-cookiebar .cc-footer{text-align:left;margin-top:1em}.highlight{display:contents}@media screen and (max-width: 699px){.cc-btn{min-width:70vw !important;white-space:nowrap}.contao-cookiebar .cc-group .cc-detail-btn{font-size:1.5em !important;white-space:nowrap}.contao-cookiebar input:disabled+label{font-size:1.5em}}label.group,label.cookie{height:2vw;max-width:none;white-space:nowrap}#mbw-group6 .cc-info{display:none}#mbw-group6 label{font-size:3em !important;margin-bottom:10px}#mbw-group7 .cc-info{display:none}#mbw-group7 label{font-size:3em !important;margin-bottom:10px}.cc-cookie-info{font-size:3em !important;background:rgba(0,0,0,0);border:none;padding:10px}.cc-cookie a{font-size:1.3em}.ex a::before{content:"";display:inline-block;width:.5em !important;height:.5em !important;background-image:url(../../files/files/modellbau/icons/External-link-arrow.svg) !important;background-repeat:no-repeat;margin-right:.2em !important}.contao-cookiebar .cc-inner{overflow:auto}.kunst2-more-info{display:none}.cc-info-mbw-more-services{color:#000;line-height:1.4;text-align:left;padding-left:2.5em;font-size:1.8em}.module-cookiebar-opener{display:none}.cc-close{display:none}
