
/* ************** ALLGEMEINE FORMATIERUNGEN *********************
*****************************************************************/

/*  w w w . a l p h a b e t a - w e b d e s i g n . c h   */


*{
	margin: 0px;
	padding: 0px;
}

html, body {
    box-sizing: border-box;
    scroll-behavior: smooth;
    padding: 0;
	font-size: 22px;
	line-height: 150px;

}
body::before {
    content: "";
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/noise-texture2.png);
    background-repeat: repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 100;
    animation: flicker 0.2s steps(2) infinite;
}
.deko-punkte {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;

}

.deko-punkt {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 10s infinite ease-in-out;

}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
}

@keyframes flicker {
    0% {
    background: url(../images/noise-texture3.png) repeat;
    }
    25% {
    background: url(../images/noise-texture4.png) repeat;
    }    
	50% {
    background: url(../images/noise-texture2.png) repeat;
    }
	75% {
    background: url(../images/noise-texture5.png) repeat;
    }
    100% {
    background: url(../images/noise-texture3.png) repeat;
    }
}
@font-face {
    font-family: freight-sans-pro;
    src: url(Rubik-Regular.ttf);
	font-display: auto;

}

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


/* ************************** TYPO ****************************
*****************************************************************/
   
/* Video-Container wie zuvor definiert */
.video-container {
    max-width: 800px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-top: 56.25%;
}

.video-container .video-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Steuerleiste - dunkler Hintergrund und hellere Icons */
.vjs-default-skin .vjs-control-bar {
    background-color: #222; /* dunkler Hintergrund */
    opacity: 0.9;
    color: #fff; /* helle Icons */
}

.vjs-default-skin .vjs-button {
    color: #ce4242;
    font-size: 1em;
    transition: color 0.3s ease;
}

.vjs-default-skin .vjs-button:hover {
    color: #B03131; /* helles Gelb beim Hover */
}

/* Fortschrittsleiste */
.vjs-default-skin .vjs-progress-holder {
    background-color: #333; /* dunkler Hintergrund */
}
span.bis {
    font-size: 15px;
    display: block;
    padding: 8px;
}
.vjs-default-skin .vjs-play-progress,
.vjs-default-skin .vjs-volume-level {
    background-color: #ff5722; /* kräftiges Orange für den Fortschritt */
}

.vjs-default-skin .vjs-load-progress {
    background-color: #666; /* grauer Hintergrund für gepufferte Bereiche */
}

/* Lautstärke- und Fortschrittsleiste Rundungen */
.vjs-default-skin .vjs-slider {
    border-radius: 4px;
}

/* Big Play Button */
.vjs-default-skin .vjs-big-play-button {
    background-color: rgba(255, 87, 34, 0.8); /* orange Hintergrund */
    color: #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
}

.vjs-default-skin .vjs-big-play-button:hover {
    background-color: #ffd54f; /* gelb beim Hover */
    color: #333;
}



body {
	font-family: "tablet-gothic", sans-serif;
font-weight: 400;
font-style: normal;
    font-size: 20px;
    color: #383838;
    line-height: 150%;
    height: 100%;
    background: #f7f7f7;
	
}
.container { 
  width: 100%;
  max-width: unset;
	padding: 0;
}
.socialmedia a {
    font-size: 28px;
    background: #f7ebe6;
    width: 42px;
    height: 42px;
    display: inline-block;
    line-height: 44px;
    border-radius: 5px;
    border: 5px solid #ce4242;
}
.socialmedia {
    position: relative;
    top: -112px;
    text-align: center;
    width: 150px;
    margin: auto;
	z-index: 1;
}
#tutti .socialmedia a {
    border: 1px solid #272727;
}
.cursor {
  background: #fff7e74f;
  width: 40px;
  height: 40px;
  border: 1px solid #e1f1ee;
  border-radius: 50%;
  position: absolute;
  animation: cursorAnim .5s infinite alternate;
  pointer-events: none;
  z-index: 9000000;
  background: -webkit-linear-gradient(140deg, #f4d6ab, #7ebfca);
  background: -o-linear-gradient(140deg, #f4d6ab, #7ebfca);
  background: linear-gradient(230deg, #f4d6ab, #7ebfca);
  opacity: 0;
  left: -8px;
  top: -52px;
}
.cursor2 {
  background: #545454;
  height: 6px;
  width: 6px;
  position: absolute;
  border-radius: 50%;
  z-index: 9000000;
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 0.5;
  left: 7px;
  top: -37px;
}
@keyframes cursorAnim {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(.9);
    }
}

@keyframes cursorAnim2 {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes cursorAnim3 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes cursorAnim4 {
    0% {
        transform: scale(1) rotate(0deg);
    }
   100% {
        transform: scale(1)rotate(360deg);

    }
}

.expand {
    animation: cursorAnim3 .5s forwards;
    border: 1px solid #93c8b6;
	box-sizing: border-box;
	border-radius: 50%;

}

.expand2 {
    animation: cursorAnim2 .5s forwards;
    box-shadow: 0 0 0 52px #1d8127;
	background: #586a64;
	box-sizing: border-box;
	border-radius: 50%;

}

.hoverlink {
  background: #414c48;
    background-color: rgb(65, 76, 72);
    background-image: none;
  background-color: rgb(65, 76, 72);
  background-image: none;
  background-color: rgb(65, 76, 72);
  background-image: none;
  height: 60px;
  width: 60px;
  box-sizing: border-box;
  opacity: 1;
  animation: cursorAnim4 7s;
    animation-iteration-count: 1;
  animation-iteration-count: 1;
  animation-iteration-count: 1;
  animation-iteration-count: 3;
  opacity: 0.8;
  background-image: url(/templates/lerchholz/images/saegeblatt.svg);
  left: -20px;
  top: -64px;
  border: 0;
  background-color: transparent;
	transition: unset;
}

p.com-content-category-blog__counter.counter.float-end.pt-3.pe-2 {
    display: none;
}
img {
    max-width: 100%;
    height: auto;
    transition: 0.5s ease all;
}
#oeffnemaps {
    cursor: pointer;
}
table {
    border-collapse: collapse;
}
p, table {
    line-height: 150%;
    font-weight: 400;
    margin: 0 0 5px 0;
    margin-bottom: 5px;
    text-align: left; 
}
#maps {
    display: block;
    max-width: 1024px;
    margin: auto;
    padding: 76px;
}


td, #customers th {
  padding: 8px;
}
table p {
    padding: 0!important;
    margin: 0;
    margin-bottom: 0!important;
}

a:hover {
    color: #b8c3d2;
}

a:active {
    color: #b8c3d2;
}

.ba-form-submit-btn {
  color: #fff7e7 !important;
}

 .popup-btn {
    padding: 10px 20px;
    right: 0;
    bottom: 0;
    position: relative;
   background: #ecf3ff;
    box-shadow: inset 3px 0 0 0px #0d4295 !important;
    transition: 1.5s ease all;
    color: #123060 !important;
    font-weight: 100 !important;
    width: 100%;
    text-align: left;
    margin: 5px 0 10px 0;
    display: block;
	box-sizing: border-box;
}

.popup-btn:hover, .btn:hover {
  background: #39b08b !important;
  color: #fff7e7 !important;
}

.popup-btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.popup-btn span:after {
  content: 'pdf';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -0px;
  transition: 0.5s;
	font-size: 20px;
}

.popup-btn:hover span {
  padding-right: 25px;
}

.popup-btn:hover span:after {
  opacity: 1;
  right: 0;
	
}

.ausstellung, .accordion-toggle  {
    font-size: 30px;
    font-weight: 400;
    margin: 2px 0 0px 0;
    background: unset;
    box-sizing: border-box;
    border-bottom: 2px solid #CFDDF0;
    width: 45%;
    display: inline-block;
    padding: 25px 0 13px!important;
}
.accordion-toggle {
	width: 100%;
}
.ausstellung:link, .ausstellung:visited, .accordion-toggle:link, .accordion-toggle:visited{
    color: #61789b;
	background: none!important;
}

.ausstellung:hover, .ausstellung:active, .accordion-toggle:hover, .accordion-toggle:active {
    color: #adbdd5!important;
}

.rl_sliders.accordion > .accordion-group.active > .accordion-heading > a.accordion-toggle {
    background-color: #f8f8f8;
    color: #61789b;
}

.pagination ul {
    list-style-type: none;
}

#artikeltext p:first-child{
	margin-top: 0px;
}
strong {
    font-weight: 700;
}
h1, h2, .item h2, h3, h4 {
    font-family: likely-sans, Arial, sans-serif;
    font-size: 38px;
    text-align: left;
    line-height: 92%;
    margin: 27px 0px 21px 0;
    color: #f4e7d7;
}
 h4 {
    color: #575d9e;
}
h1 {
    font-size: clamp(11px, 4.0vw, 41px);
    /* -webkit-text-stroke: 2px #000; */
    position: relative;
    transition: 0.2s ease all;
    letter-spacing: 0;
    font-weight: 400;
}
.page-header {
    position: relative;
    z-index: 5;
    height: auto;
    padding: 50px 0px 10px 0;
    box-sizing: border-box;
    width: 100%;
    margin: auto;
}
.small h1 {
    font-size: clamp(15px, 5vw, 141px);
}
.page-header h1 {
    line-height: 130%;
    font-size: 62px;
    max-width: 1024px;
    text-align: left;
    margin: auto;
    padding: 0;
}
.einleitung p {
    font-size: 39px;
    color: #fff7e7;
    letter-spacing: 1px;
}


h2 a {
    font-weight: 100 !important;
    color: #fff7e7 !important;
}
h2.einleitung {
    color: #fff7e7;
    font-size: clamp(15px, 5vw, 141px);
}
h3 {
    font-size: 28px;
    margin: 10px 0 3px 0;
    color: #5e65ab;
    font-weight: 400;
    line-height: 150%;
}
.headerone {
    width: calc(30% - 30px);
    position: relative;
    top: 0;
    z-index: 1;
    background: #d5853e;
    height: 500px;
    left: 30px;
    padding: 126px 20px 20px 80px;
    box-sizing: border-box;
}
h4 {
    font-size: 32px;
    font-weight: 100;
}
#sidebar h3 {
    font-family: "tablet-gothic", sans-serif;
    font-size: 40px;
    text-align: left;
    font-weight: 100;
    line-height: 150px;
    color: #383838;
	margin: 0;
}

#breadcrumb a{
    font-family: "tablet-gothic", sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: #fff7e7;
	text-decoration: none;
	line-height: 43px;
	margin-left: 30px;
}

#breadcrumb a:hover{
	text-decoration:underline;
}
header {
    margin: auto;
    display: block;
    height: 500px;
}
#artikeltext p {
    color: #414141;
    padding: 0 0 11px 0;
}

.bodytext {
    max-width: 1024px;
    margin: auto;
}
#artikeltext {
    line-height: 18px;
    max-width: 1024px;
    display: block;
    box-sizing: border-box;
    padding: 140px 0 127px 0;
    position: relative;
    z-index: 1;
}
#artikeltext #saegeblatt {
  top: -199px;
}
.leading #artikeltext {
  max-width: 100%;
	padding: 0;
}
a, a:link, a:visited {
    text-decoration: none;
    color: #2e336d;
    transition: 0.2s ease all;
    border-bottom: 1px solid #ff691b;
}
a:hover {
    color: #b8c3d2;
}

a:active {
    color: #b8c3d2;
}

a[href$=".pdf"] {
    display: inline-block;
    /* border: 2px solid; */
    padding: 0px 25px;
    width: 100%;
    background: #ff691b;
    color: white;
    border-radius: 50px;
    border: 3px solid #ff691b;
    position: relative;
    height: 50px;
    line-height: 45px;
    font-family: 'likely-sans';
    font-weight: 400;
    letter-spacing: 1px;
	font-size: 18px;
}
a[href$=".pdf"]::after {
    font-family: "Font Awesome 6 Pro";
    content: "\f1c1";
    color: inherit;
    font-weight: 900;
    /* padding: 0 0 0 9px; */
    position: absolute;
    right: 3px;
    background: #ff691b;
    width: 38px;
    height: 38px;
    border-radius: 50px;
    top: 3px;
    text-align: center;
    line-height: 41px;
    font-size: 19px;
}

a[href$=".pdf"]:hover {
    background: #5e65ab;
}

#tutti a {
    border: none;
}
.showtime-image a {
    border: none !important;
    border-radius: 0;
    overflow: hidden;
}
.showtime-image img:hover {
    opacity: 0.5;
}
.showtime-image img {
    width: 100%;
	border: 1px solid #010156!important;
    height: auto;
    outline: none;
    border: none;
    -webkit-box-shadow: rgb(0 0 0 / 13%) 0 1px 14px, rgb(0 0 0 / 12%) 0 0 0 1px;
    box-shadow: rgb(0 0 0 / 13%) 0 1px 14px, rgb(0 0 0 / 12%) 0 0 0 1px;
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #010156;
}

#artikeltext a.button {
    border: 1px solid #202e66;
    color: #202e66;
}
table {
  border: 3px solid #edd7cc;
  width: 100%;
  text-align: left;
  border-collapse: collapse;	
border-radius: 20px;
}
table td, table th {
    border: 1px solid #edd7cc;
    padding: 6px 12px;
}
table tbody td {
}
table tr:nth-child(even) {
    background: #f5e5dd;
}
table thead {
  background: #1C6EA4;
  border-bottom: 2px solid #444444;
}
table thead th {
  font-weight: bold;
  color: #FFFFFF;
}
table tfoot td {
}
table tfoot .links {
  text-align: right;
}
table tfoot .links a{
  display: inline-block;
  background: #1C6EA4;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 5px;
}
.wf-columns {

    margin-bottom: 1rem;
}
.wf-column {
    background: #edd7cc;
    padding: 20px;
    border-radius: 20px;
}
.wf-column a {
    display: inline-block;
    background: #ff691b;
    padding: 5px 20px;
    border-radius: 25px;
    color: white;
    border: 3px solid #ff691b;
    font-size: 18px;
    font-family: 'likely-sans';
    font-weight: 400;
    letter-spacing: 1px;
}
.wf-column a:hover {
	background: #5e65ab;

}

.result__title-text {
    font-size: 1.3rem;
    margin: 20px 0 0 0;
}
/* ************************** EASYEVENT ****************************
*****************************************************************/
.event_easy {
    background: #edd7cc;
    border-radius: 20px;
    position: relative;
    display: flex
;
    overflow: hidden;
    margin: 20px 0;
    transition: 0.2s ease all;
}
.event_easy:hover {
    transform: translate3d(-5px, -5px, 10px);
    box-shadow: 5px 5px #cdad9c;
}
.datum_easy {
    position: relative;
    background: white;
    padding: 40px 20px;
    width: 20%;
}
.content_easy {
    padding: 40px 20px ;
	width: 80%;
}
.title_easy  {
    font-family: 'likely-sans';
    color: #5e65ab;
	font-size: 30px;
}
.tag_easy {
    font-family: 'likely-sans';
    color: #5e65ab;
    font-size: 41px;
	    text-align: center;

}
.jahr_easy {
    font-family: 'likely-sans';
    padding: 010px 0 0 0;
    text-align: center;
}

/* ************************** NEWS ****************************
*****************************************************************/
#fixedcontact {
    background: #d5853e;
    width: 355px;
    padding: 25px;
    color: #fff7e7;
    font-weight: bold;
    position: fixed;
    right: 0;
    bottom: -250px;
    z-index: 4;
    transition: 1.4s cubic-bezier(.93,-0.38,.6,1.47) all;
    box-shadow: -2px 0px 7px -4px #321f06;
}
#fixedcontact h3 {
    color: #fff7e7;
}

#fixedcontact a {
    color: #fff7e7;
    border-bottom: 2px solid #321f06;
}

.newsflash {
    width: 100%;
    margin: auto;
	text-align: left;
} 
.newsbeitrag {
    position: relative;
    width: 1024px;
    float: left;
    box-sizing: border-box;
    min-height: auto;
    transition: 0.4s ease all;
    border-radius: 0;
    margin: 30px auto;
    /* padding: 20px; */
    opacity: 0;
    bottom: -53px;
    /* box-shadow: 0 0 23px -20px black; */
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    background: unset;
    border: 3px solid #edd7cc;
}
.newsbeitrag.blog {
    max-width: calc(33% - 40px);
    margin: 10px 20px;
    break-inside: avoid;
}

.realestateimg {
    width: 100%;
    max-height: 269px;
    overflow: hidden;
    margin: 0px 0 0 0px;
    border: 5px solid #fff7e7;
    position: relative;
    min-height: 260px;
	    border-radius: 10px;
}
.realestateeinleitung {
    display: flex;
}

.custom-field.startbild {
    width: 50%;
}
.realestateimg img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    position: absolute;
}

.custom-field.startbild img {
    border-radius: 12px;
}

.custom-fields.details {
    width: 50%;
    display: block;
}
.custom-fields.details {
    width: 50%;
    display: block;
    
    padding: 20px;
    line-height: 150%;
}
.custom-fields.details div {
	    border-bottom: 1px solid #f1e2d9;
}
.contact-link a {
    display: block;
    padding: 6px;
    color: #fff7e7;
    background: #272727;
    margin: 20px 0;
    border-radius: 5px;
}
.contact-link a img {
    height: 44px;
}
.contact-link a:hover {

    background: #BD7C57;

}
.custom-field.strasse-hausnummer {
    display: flex;
}
.custom-fields.details img {
    width: 44px;
    height: 44px;
    margin: 0 21px 0 0px;
}
a.telefonlink img {
    width: 22px;
    margin-right: 15px;
}
.objektart {
    padding: 8px 10px 10px 25px;
    background: #b1c9b1;
    color: #fff7e7;
    width: 100%;
    display: block;
}
.objektart.vermietet {
    background: #a51f185c;
}
.objektart.verkauft {

    background: #a51f185c;
}
#produkte > a {
    display: contents;
}
.angebot .newsbeitrag {
    height: 317px;
}
.quadrat {
    width: 30%;
    padding-top: 30%;
    position: relative;
}
.angebotsuebersicht .newsbild {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    width: auto;
}
.bildcontainer {
    width: 100%;
	height: 350px;
    padding-top: 0;
    position: relative;
}
.bildcontainer img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild füllt den Container aus, ohne das Seitenverhältnis zu verzerren */
    position: absolute; /* Bild in der Container-Position */
    top: 50%; /* Zentriert das Bild */
    left: 50%;
    transform: translate(-50%, -50%); /* Verschiebt das Bild zurück, um es zu zentrieren */
}
.blog .textinhalt {
    width: 100%;
}
.blog .newsbild {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    width: auto;
    background-image: url(../images/bg.webp);
}
.hauptb .newsbild {
    height: 250px;
}
.introtext.angebotsuebersicht {
    padding: 85px 30px 30px 30px;
    display: flex;
	    align-items: center;
}

#produkt .modultable h2 {
    display: block;
    width: 100%;
}
.angebotsuebersicht .textinhalt {
    width: 70%;
    float: right;
}
.adresse {
    float: left;
    display: block;
    width: 100%;
    padding: 24px 25px 25px 25px;
    color: #414141;
}
.adresse p {
    border-bottom: 1px solid #f1e2d9;
}
.newsbeitrag:hover {
  opacity: 1;
  background: #fff7e7;
  scale: 1.02;
}
.showtime-image h3 {
    font-size: 18px;
    margin: 0 0 5px 0;
    font-weight: 600;
    color: #006cae;
}
.newsbeitrag:hover > .newsbeitrag h4{
    opacity: 0.5;
    background: #fff7e7;
}
.newsbild {
    height: 250px;
    width: 50%;
    position: relative;
    right: 0;
    top: 0;
    transition: 0.5s ease all;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-color: #fff7e7;
    background: #fff7e7;
    /* background-position: center center; */
    float: left;
    margin: 0 0 0 0;
    border-radius: 4px;
    /* border: 5px solid #fff7e7; */
}
.textinhalt {
    padding: 45px;
    color: #414141;
    font-weight: 400;
    
}
/* ARTICLE MODUL /*/
.mod-articles-item {
    border: 3px solid #edd7cc;
    margin: 15px;
    display: block;
    width: calc(33.333% - 30px);
    position: relative;
    border-radius: 29px;
    background: #fff7e7;
	    line-height: 120%;
}
.mod-articles-items.mod-list {
    display: flex
;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}
a.mod-articles-item {
    border: 3px solid #edd7cc;
    width: 100%;
}
a.mod-articles-item:hover {
    background: #d7cdb9;
}
h4.mod-articles-title {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #5e65ab, transparent);
    left: 0;
    top: 0;
    color: #fff7e7;
    margin: 0;
    height: 60px;
    line-height: 120%;
    width: 100%;
    padding: 0 25px;
    font-size: 22px;
    height: 50%;
    padding: 20px;
    border-radius: 25px 25px;
    border: 3px solid #fff7e7;
}
.mod-articles-item .mod-articles-item-content {
    order: 1;
    background: #fff7e7;
    overflow: unset;
    border-radius: 25px;
}
.newsbeitrag.hauptbeitrag {
    width: calc(50% - 40px);
    margin: 20px;
    height: 250px;
}
.newsbeitrag.hauptbeitrag .newsbild {
    width: 100%;
}
.leading .newsbild {
  background: #006cae;
    background-image: none;
    background-size: auto;
  background-image: none;
  background-size: auto;
  width: 100%;
  position: relative;
  height: 80vh;
  background-size: cover;
}
.newsbeitrag:hover > .newsbild, .newsbeitrag:hover > .newsflash-title {
}
.newsbeitrag.kaufen {
    width: calc(50% - 40px);
    margin: 20px 20px;
}

.imageintro {
    width: 189px;
    position: relative;
    left: 0;
    height: auto;
}
.einleitungsbild {
    overflow: hidden;
}
.introtext {
    width: 100%;
    right: 0;
    box-sizing: border-box;
    top: 0;
    padding: 15px;
}
.introtext.stnd {
    padding: 0;
}
.newsbeitrag:hover > .introtext i{
  padding: 0 20px;

}
.newsbeitrag .introtext p {
    display: block;
    color: #414141;
    position: relative;
    opacity: 1;
    transition: 0.2s linear all;
    
    font-weight: 400;
}
.introtext p {
}
.email-lehrpers a {
    background: #ff691b;
    font-size: 15px;
    position: absolute;
    right: -15px;
    bottom: -15px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50pc;
    color: #5e65ab;
}
.custombutton a {
  font-size: 27px;
  margin: auto;
  border-bottom: 1.56px solid #fff7e7;
  height: 120%;
  display: inline-block;
  width: auto;
  padding: 20px 0 5px;
  color: #fff7e7;
  top: 30px;
  position: relative;
  margin: auto;
}
.custombutton a:hover {
  border-bottom: 3px solid #fff7e7;
}
.newsbeitrag:hover > .introtext {
  left: 0;
  border-radius: 0;
  filter: blur(0px);
}
.readmore {
  padding: 0px;
  right: 0;
  bottom: 0; 
  position: absolute;
  text-align: center;
  width: 100%;
  height: 100%;
  opacity: 1;
  box-sizing: border-box;
  font-weight: 900;
}
.readmore:hover {
    color: #fff7e7 !important;
    opacity: 1;
    font-size: 25px;
    padding: 0;
}



a.btn-secondary {
    display: block;
    height: 100% !important;
    transition: 1s cubic-bezier(.65,.05,.01,1.34) all;
}
.readmore span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 1.5s;
}
h2 {
    color: #202e63;
    line-height: 120%;
    margin: 0 0 13px 0;
    font-weight: 100;
    font-size: 42px;
    letter-spacing: 1px;
}
h2 strong {

	font-weight: 900;
}
.readmore:hover span {
  padding-right: 25px;
}

.readmore:hover span:after {
  opacity: 1;
  right: 0;
}

.buttons {
    background: #fff7e7;
}
.buttons .inhalt {
    max-width: 1024px;
    margin: auto;
    padding: 10px 11px 50px 11px;
    box-sizing: border-box;
}
.buttons .button {
    background: #fff7e7;
    box-shadow: 2px 2px 6px -3px #d5853e;
    color: #d5853e !important;
}
.buttons .button:hover {
    background: #fff7e7;
    box-shadow: 0 0 0 6px #d5853e;
    color: #d5853e !important;
}

#fb .ffp-feed-load-more-btn {
    background: #fff7e7;
    box-shadow: 2px 2px 6px -3px #d5853e;
    color: #d5853e !important;
    opacity: 1;
}
#fb .ffp-feed-load-more-btn:hover {
    background: #fff7e7;
    box-shadow: 0 0 0 6px #d5853e;
    color: #d5853e !important;
}

iframe {
  width: 100%;
  box-sizing: border-box;
    min-height: 750px;
  display: block;

}
#prefooter .readmore {
    position: relative;
    text-align: center;
    display: block;
    margin: 20px auto;
    height: 54px;
    line-height: 50px;
    border: 2px solid #ba875c;
}
#prefooter .readmore:hover {
    background: #ba875c;
    font-size: unset;
    color: #fff7e7 !important;
}
.newsbeitrag h4 {
    position: absolute;
    z-index: 1;
    background: linear-gradient(180deg, #5e65ab, transparent);
    left: 0;
    top: 0;
    color: #fff7e7;
    margin: 0;
    height: 60px;
    line-height: 120%;
    width: 100%;
    padding: 0 25px;
    font-size: 22px;
    height: 50%;
    padding: 20px;
}
.newsbeitrag h4 a {

    display: block;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 57px;
    line-height: 57px;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;

}
.newsbeitrag.blog::after {
    content: "";
    height: 44%;
    width: 100%;
    background: #e5ffbb;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    border-radius: 0 00% 122% 50%;
}
.calendar-list.mr-3 {
  background: padding-box;
  top: 8px;
  z-index: 8;
  position: relative;
  text-align: left;
  left: 12px;
  top: -3px;
}
#produkte .calendar-list.mr-3 {
}
.img-fulltext-left.blogbild {
    height: 50vh;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 50px 50px;
}
.article-info-term {
  display: none;
}

a .calendar-list.mr-3 {
  font-weight: 100;
  color: #6d757e ;
}
.lg-sub-html p {
    font-size: 18px;
    margin: 5px 0 0;
}

.newsflash-title {
    position: relative;
    z-index: 0;
    top: 0;
    left: 0;
    text-align: left;
}
.showtime-renderer-caption-title {
    font-size: 24px;
}

.faq .newsbeitrag .newsbild {
    display: none;
}
.system-unpublished {
    background: #ff696957;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    color: #fff7e7;
    line-height: 50px;
    font-size: 50px;
}
.system-unpublished p {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    position: absolute;
    display: block;
    bottom: 0;
    width: 100%;
    height: 54px;
    background: #c66541;
    line-height: 54px;
}

/* ************************** FB FEED ****************************
*****************************************************************/
#fb {
    width: 100%;
    padding: 43px;
    margin-bottom: 0;
    max-width: unset;
	    box-sizing: border-box;
}
.ffp-feed-wrap {
    font-family: unset!important;

}
#ffp-feed-1 .ffp-feed-posts-item {
    box-shadow: 2px 2px 6px -3px #d5853e!important;
	transition: 0.3s ease all;
}
#ffp-feed-1 .ffp-feed-posts-item:hover {
    box-shadow: 0px 0px 0px 6px #d5853e !important;
}
.ffp-feed-posts-item {
    border-radius: 0!important;
}.ffp-feed-posts-items {
    padding: 6px!important;
}
/* ************************** LAYOUT ****************************
*****************************************************************/
#wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: 100%;
    overflow: hidden;
	background: #fff7e7;
}

#logo p {
    margin: 0;
}
#nothing {
    display: block;
    height: 400px;
}
#information {
    display: block;
    height: 103px;
}
#logo {
    display: block;
    z-index: 5;
    position: absolute;
    transition: 0.5s ease all;
    height: 100%;
    box-sizing: border-box;
    border: none;
    left: 0;
    padding: 5px;
}

#logo img {
    width: 113px;
    transition: 0.5s ease all;
    border-radius: 10px;
}
.inhalt {
    margin: auto;
}
img.realicon {
    width: 40px;
    margin-right: 19px;
}
#main-header {
    width: 100%;
    transition: 0.5s ease all;
    box-sizing: border-box;
    top: 0;
    z-index: 10;
    height: 106px;
    position: fixed;
    font-weight: 300;
    display: flex
;
    flex-direction: row-reverse;
    border-radius: 0;
    box-sizing: border-box;
}
#layerslider_1 {
    z-index: 0;
}

#slider {
  overflow: hidden !important;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  z-index: 0;
}
#section-wrapper{
	width: 100%;
}
#content {
    background: #fff7e7;
}

a.mymap.mymap-inverse.resultmymap, span.detailsicon {
    display: none;
}
#content .inhalt {
    width: 100%;
    max-width: unset;
    border-radius: 5px;
    margin: 0 0px 0 0;
}
div#einelitung.small {
    height: 46vh;
    display: flex
;
    align-items: flex-end;
}
div#einelitung.small .img-fulltext-left {
    display: none;
}
div#einelitung {
    height: 68vh;
    display: flex;
    flex-direction: row;
    background: #5e65ab;
    align-items: flex-end;
}
#artikeltext img {
    border-radius: 20px;
}
.small .start {
    width: 100%;
    padding: 0 109px;
}
.start {
    width: 50%;
    padding: 80px;
}
.img-fulltext-left {
    float: unset;
    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center center;
    margin: auto;
    border-radius: 0;
    height: 107px;
}
.img-fulltext-left.standard {
    width: 50%;
    background-size: cover;
    background-position: center center;
    position: relative;
    height: 100%;
    z-index: 2;
}
.img-fulltext-small.standard{
    width: 50%;
    background-size: cover;
    background-position: center center;
    position: relative;
    height: 100%;
    z-index: 2;
}
.img-fulltext-left::before {
    content: "";
    display: block;
    width: 37px;
    height: 100%;
    position: absolute;
    bottom: 0;
    border-bottom: 76vh solid transparent;
}
#onthetop {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  left: 0;
  background: #fff7e7;
  z-index: 0;
  z-index: 0;
}
.quantummanager-height-medium {
    height: 89vh;
    border: 5px solid #006cae!important;
}

.showtime-default .showtime-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
}
#user_nav {
    position: absolute;
    top: 0;
    right: 0;
}
#user_nav .bearbeiten {
    position: relative;
    width: auto;
    margin-left: 5px;
}
#produkte .inhalt {
    margin: auto;
    max-width: 1024px;
}
#sidebar {
    width: 30%;
    float: right;
    box-sizing: border-box;
    z-index: 1;
    position: relative;
    color: #383838;
}
#blog, #news {
    box-sizing: border-box;
    padding: 0;
    margin: auto;
        margin-bottom: auto;
    position: relative;
    max-width: 90%;
    margin-bottom: 100px;
}
#tutti {
    padding: 84px 3px 337px 4px;
    text-align: center;
    background: #272727;
    max-width: 100%;
    margin: auto;
    background-image: url(header.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    border: 15px solid #272727;
}
#tutti .mod-custom {
    position: relative;
    max-width: 1024px;
    margin: auto;
}
#news {
    background: #272727;
}
#blog h3, #news h3, #fb h3 {
    /* font-size: 44px; */
    color: #d5853e;
    width: 100%;
    display: block;
    margin: 0;
    float: left;
    line-height: 105%;
    padding: 30px 00;
    font-family: 'freight-sans-pro', Arial, sans-serif;
    font-size: 57px;
   /* -webkit-text-stroke: 2px #000;*/
}
#produkte .moduletable h2 {
    font-size: 73px;
    color: #7fbb20;
    position: relative;
    left: -50px;
    top: -50px;
}
#news .newsbeitrag {
    background: #fff7e7;
}

#fb .inhalt {
    max-width: 1024px;
}
#news, #produkte {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    max-width: unset;
    position: relative;
    box-sizing: border-box;
}
#produkte {
    margin: auto;
    flex-wrap: wrap;
    background: #edd7cc;
    padding: 76px;
}
.com-content-category-blog__pagination {
    position: relative;
    z-index: 2;
    max-width: 1024px;
    margin: auto;
}
#news h3 {
    color: #fff7e7;
    z-index: 90;
    top: 0;
    text-align: center;

}
.start::after {
    display: block;
    /* background: red; */
    width: 100%;
    height: 43px;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    background-image: url(/images/Logo-Schule-ohne-Text.svg);
    pointer-events: none;
    background-position: bottom;
    opacity: 0.12;
    z-index: -1;
}
.custom {
    width: 100%;
}
.newsbeitrag.kaufen h4 {
    margin: 0;
    left: 0;
    top: 0;
    width: 100%;
    position: relative;
}
footer {
    box-sizing: border-box;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    background: #9fb3d1;
}
.footerlogo img {
    width: 400px;
    display: block;
    margin: auto;
}

.footerlogo p {
    line-height: 0;
    margin: 0;
}
.leading-0 .text {
    width: 50%;
    float: left;
}
.clear {
    clear: both;
    margin: 0;
}

a.button, .ffp-feed-load-more-btn {
    padding: 10px 25px;
    width: 250px;
    font-size: 22px;
    transition: 0.2s ease all;
    text-align: center;
    font-weight: 400;
    border-radius: 0;
    color: #fff7e7;
    border: 1px solid;
    display: block;
}

a.button:hover, a.button:active {
    background: #ce4242;
    display: block;
}
#prefooter {
    background: #5e65ab;
    text-align: center;
    color: #fff7e7;
}
#prefooter a {
    color: #fff7e7;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    margin: 0 5px 0 5px;
    transition: 0.5s ease all;
    border-bottom: 2px solid #cb4671;
}
#prefooter ul.mod-articles.mod-list li a {
    background: #edd7cc;
    color: #5e65ab;
    border: none;
    transition: 0.2s ease all;
    border-radius: 50px;
}
ul.mod-articles.mod-list li a:hover {
    transform: translate3d(-2px, -2px, 10px);
    box-shadow: 2px 2px #cdad9c;
}
.leaflet-pane.leaflet-marker-pane img {
    width: unset !important;
}
#prefooter a[href$=".pdf"] {
    display: unset;
    height: unset;
    border: unset;
    padding: unset;
    color: #fff7e7;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    margin: 0 5px 0 5px;
    transition: 0.5s ease all;
    border-bottom: 2px solid #cb4671;
    background: unset;
}
#prefooter a[href$=".pdf"]::after {
display: none;
	
}
#cash a {

    font-size: 16px;
}
#prefooter p {
    color: #1c1c1a;
    font-weight: 400;
}
#prefoot1 {
	padding: 76px 0;
    width: 100%;
    float: left;
    text-align: center;
}
a[href$=".pdf"] {
    padding: 0px 18px;
    border: 3px solid #ff691b;
    position: relative;
    height: 41px;
    line-height: 39px;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 16px;
}
a[href$=".pdf"]::after {
    font-family: "Font Awesome 6 Pro";
    content: "\f1c1";
    color: inherit;
    font-weight: 900;
    /* padding: 0 0 0 9px; */
    position: absolute;
    right: 3px;
    width: 28px;
    height: 28px;
    border-radius: 50px;
    top: 3px;
    text-align: center;
    line-height: 32px;
    font-size: 14px;

}
#prefoot2 {
    width: 50%;
    float: left;
	text-align: center;
}
#prefooter h3 {
    font-size: 36px;
    color: #fff7e7;
}

#prefoot2 {
    box-sizing: border-box;
}

#prefooter .newsbeitrag {

    background: none;
    margin: 0;
    color: #383838;

}

#prefooter .inhalt {
    max-width: 1024px;
}

#prefooter a {

    color: #fff7e7;
    font-weight: 400;

}

#prefoot1 .newsbeitrag {
    width: 100%;
}

#prefoot2 .newsbeitrag {
    padding: 0;
}

#prefoot1 .newsbeitrag {

    width: 45%;
    background: #f1f7ff;
    padding: 20px 0 0 0;
    border-radius: 0;

}
#prefooter2 {
    background: #321f06;
    color: #fff7e7;
    font-size: 22px;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}

#prefooter2 .inhalt {
    max-width: 1024px;
    padding: 46px;
	box-sizing: border-box;
}
#prefooter2 {
 
    padding: 40px 40px;
}

.prefoot2 a, .prefoot2 a:link {
    text-decoration: none;
    color: #fff7e7;
    border-bottom: 2px solid #d5853e;
    font-size: 25px;
    line-height: 141%;
    display: inline-flex;
    transition: 0.5s ease all;
}
.prefoot1 a i {
    background: #d5853e;
    padding: 5px;
    border-radius: 50%;
    color: #fff7e7;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin: 15px 0 0 0;
	transition: 0.2s ease all;
}
.prefoot1 a i:hover {
    background: #8b5a2e;
}

#prefooter2 p {
    font-size: 24px;
    line-height: 150%;
}
.prefoot1 {
    width: 50%;
    float: left;
}

.prefoot2 {
    width: 50%;
    float: left;
    text-align: right;
}

#merhinfos {
    display: flex;
    width: 100%;
    /* height: 100px; */
    position: relative;
}
#mehr1, #mehr2, #mehr3 {

}
#mehr1 {
            background-color: unset;
            flex: 1;
	padding: 74px;	

}
#mehr1 h2 {
    font-family: 'contempora-sans-condensed';
    font-size: clamp(40px, 4.5vw, 160px);
    font-weight: 100;
    text-align: right;
    color: #ce4242;
}
#mehr1 a:hover{
	border-bottom: 3px solid #006cae;
}
#mehr1 a:active{
	border-bottom: 3px solid #C7E5CB;
	color: #C7E5CB;
}
#mehr2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 32px;
    background: linear-gradient(272deg, #202e66 47%, transparent 50%);
}
#mehr2 h4 {
  text-align: left;
} 
#mehr3 {
    background-color: #202e66;
    flex: 1;
    color: #fff7e7;
    padding: 74px;
}
.stripe {
    width: 5px;
    height: 100%;
}

#footer1 { 
    color: #534a39;
    padding: 20px;
    width: 33%;
    float: left;
    box-sizing: border-box;
    z-index: 11;
    position: relative;
}
#footer2 {

    color: #534a39;
    padding: 0px ;
    width: 33%;
    float: left;
    box-sizing: border-box;
    margin: 0;

}

#footer3 {
    color: #534a39;
    width: 33%;
    float: right;
    padding: 20px ;
	box-sizing: border-box;
	text-align: right;
		z-index: 11;
	position: relative;
}

footer a:link, footer a:visited {
    color: #fff7e7;
    font-weight: 100 !important;
}

footer a:hover, footer a:active {
    color: #fff7e7!important;
    font-weight: 100 !important;
}

.facebook {

    display: block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999999999;
    width: 40px;
    height: 40px;
    background: #fff7e7;
    margin: 27px 20px 30px 20px;
    border-radius: 5px;

}

.facebook img {

    height: 80%;
    padding: 10px;

}

.rl_sliders.accordion > .accordion-group{
	border: none!important;
}
#artikeltext li {
    margin: 5px 0 10px 20px;
    
    line-height: 120%;
    padding: 1px 20px;
}
li::marker {
    color: #ff691b;
    padding: 20px;
    display: block;
}
.resp-home a {
    display: none;
    width: 60px;
    height: 60px;
    position: absolute;
    z-index: 80;
    color: #321f06;
    text-align: center;
    padding: 5px;
    font-size: 26px;
    line-height: 50px;
    box-sizing: border-box;
}

div#header-decoration {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
    height: 250px;
    width: 250px;

}
.deco-01 img {
    height: 369px;
    transform: rotate(24deg);
    top: -50px;
    position: absolute;
    left: -34px;
    transform: rotate(0deg);
    animation: pulsate 13.5s ease-in-out infinite;

}
.deco-02 img {
    position: absolute;
    top: -72px;
    right: 136px;
    height: auto;
    width: auto;
    animation: pulsate 9.5s ease-in-out infinite;

}
.deco-03 img {
    position: absolute;
    top: -9px;
    right: 9px;
    height: auto;
    width: auto;
    transform: rotate(25deg);
    animation: pulsate 15.5s ease-in-out infinite;

}
div#footer-decoration {
    position: absolute;
    z-index: 0;
    left: 0;
    top: -150px;
    height: 250px;
    width: 350px;
	pointer-events: none;
}
.deco-04 {
    width: 295px;
    height: 194px;
    position: absolute;
}
.deco-04 img {
    height: auto;
    transform: rotate(24deg);
    top: 0;
    position: absolute;
    left: -34px;
    transform: rotate(0deg);
    animation: pulsate 19.5s ease-in-out infinite;
}
.deco-05 {
    width: 488px;
    height: 66px;
    position: absolute;
    transform: rotate(-42deg);
}
.deco-05 img {
    position: absolute;
    bottom: 135px;
    right: 60px;
    height: auto;
    width: auto;
    animation: pulsate 9.5s ease-in-out infinite;
}
.deco-06 {
    width: 155px;
    position: absolute;
    bottom: 42px;
}
.deco-06 img {
    position: absolute;
    top: -9px;
    right: 9px;
    height: auto;
    width: auto;
    transform: rotate(25deg);
    animation: pulsate 15.5s ease-in-out infinite;

}
.deco-07 {
    width: 125px;
    height: 125px;
    position: relative;
    transform: rotate(90deg);
}
.deco-07 img {
    position: absolute;
    bottom: -22px;
    left: 74px;
    height: auto;
    width: auto;
    transform: rotate(25deg);
    animation: pulsate 15.5s ease-in-out infinite;
}
/* ************************** Search ************************
*****************************************************************/
.awesomplete mark {
    background: #e1d4b9;
    border-radius: 5px;
}
.awesomplete > ul{
	overflow: hidden;
}
.awesomplete > ul > li {
    cursor: pointer;
    padding: .2em .5em;
    text-align: left;
    color: #5e65ab;
    display: block;
}
.awesomplete > ul:before{
	display: none;
}
.awesomplete li:hover mark {
    background: #c3b598;
}
.awesomplete > ul > li:hover {
    color: #000;
    background: #ebe0c8;
}
.awesomplete li[aria-selected="true"] mark {
    color: #fff7e7;
    background: #d7cdb9;
}
.mark, mark {
    padding: 0 1px 0 4px;
    background-color: #d9b3a0;
    border-radius: 2px;
}
.awesomplete > ul > li[aria-selected="true"] {
    color: #fff7e7;
    background: #5e65ab;
}
ul#awesomplete_list_1 {
    border-radius: 20px;
    border: 5px solid #797fbd;
    top: 50px;
    background: #fff7e7;
}
input#mod-finder-searchword110 {
    height: 48px;
    border-radius: 40px;
    border: 5px solid #797fbd;
    background: #fff7e7;
    font-family: 'likely-sans';
    font-size: 18px;
    line-height: 30px;
}

.com-finder.finder {
    max-width: 1024px;
    margin: auto;
}
p.result__title a {
    border-bottom: none;
    font-family: 'likely-sans';
}
/*
@media (max-width: 767px) {
 ul.jover-timeline:before {
 left: 40px;
 }
 ul.jover-timeline > li > .jover-timeline-panel {
 float: right;
 width: calc(100% - 120px);
 width: -moz-calc(100% - 120px);
 width: -webkit-calc(100% - 120px);
 }
 ul.jover-timeline > li > .jover-timeline-panel:before {
 border-left-width: 0;
 border-right-width: 15px;
 left: -15px;
 right: auto;
 }
 ul.jover-timeline > li.jover-timeline-odd > .jover-timeline-panel {
 text-align: left;
 }
 ul.jover-timeline > li > .jover-badge {
 left: 25px;
 margin-left: 0;
 top: 26px;
 }
 ul.jover-timeline > li > .jover-timeline-panel:after {
 border-left-width: 0;
 border-right-width: 14px;
 left: -14px;
 right: auto;
 }
}*/

.balken {
    position: fixed;
    display: block;
    height: 90px;
    width: 100%;
    background: #e0e8e3;
    z-index: 1;
    bottom: 0;
}
.openlogin {
    position: absolute;
    left: 7px;
    bottom: 26px;
    color: #5e65ab;
    border: 2px solid #5e65ab;
    width: 24px;
    height: 28px;
    text-align: center;
    line-height: 32px;
    border-radius: 5px;
    z-index: 40;
}
.openlogin:hover {
     color: #B44B46;
    border: 2px solid #B44B46;
    cursor: pointer;
}
.img-fulltext-left img {
    position: absolute;
    bottom: -56px;
    width: 500px;
    height: auto;
    right: 0;
}
/* ************************** BREADCRUMPS ************************
*****************************************************************/
.brotbroesmeli {
    display: block;
    box-sizing: border-box;
    padding: 6px 0px;
    z-index: 6;
    position: absolute;
    width: auto;
    top: 555px;
    left: 37px;
    font-size: 16px;
}

.brotbroesmeli li a {
    color: #fff7e7;
    font-weight: 300;
    text-shadow: none;
}
.brotbroesmeli li {
  color: #e2f4f9;
  display: block;
  float: left;
  background: #006cae;
  padding: 5px 28px 5px 47px;
  font-weight: 300;
  margin: 0 0 0 0;
  transition: 0.5s ease all;
  z-index: 0;
  position: relative;
  background: #006cae;
  border-right: 1px solid #fff7e7;
}
.brotbroesmeli li:nth-child(3) a {
    box-sizing: border-box;
}

.brotbroesmeli li :hover {
    background: none;
}

.breadcrumb li {
    list-style-type: none;
}

.brotbroesmeli li:nth-child(1) {

    display: none;

}
.breadcrumb li:hover {
}
.brotbroesmeli li:nth-child(3), .brotbroesmeli li:nth-child(5) {
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: .5rem;
  color: #6d757e;
  content: unset;
}
.brotbroesmeli li:nth-child(2) {
  z-index: 90;
  padding: .5rem;
  background: #006cae;
}
.brotbroesmeli li:nth-child(3) {
    z-index: 88;
}
.brotbroesmeli li:nth-child(4) {
    z-index: 86;
}
.brotbroesmeli li:nth-child(5) {
    z-index: 84;
}
.brotbroesmeli li a:hover {
}

.brotbroesmeli li:nth-child(3) .divider {
    border-left: 18.5px solid #bb7231;
}
.breadcrumb > .active {
  color: #847366a3;
  cursor: context-menu;
  background: #fff7e7;
  z-index: 91 !important;
}


.mod-list {
    -webkit-padding-start: 0;
    padding-inline-start: 0;
    list-style: none;
    text-align: left;
}
.mod-list li {
    padding: .25em 0;
    display: inline;
    text-align: left;
}
#cash a {
    display: inline-block;
    background: #9fb3d1;
    border-radius: 20px;
    padding: 2px 21px;
    color: #f4e7d7;
    text-decoration: none;
    font-family: 'likely-sans';
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1px;
    border: 3px solid #9fb3d1;
    margin: 5px 1px;
}
#cash a:hover {
    text-decoration: unset;
    background: #788eaf;
}


/* ************************** NAVIGATION ************************
*****************************************************************/
#main-navigation {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 105px;
    transition: 1.2s ease filter;
    opacity: 1;
    padding: 0 20px;
z-index: 1;
}

#main-navigation.shownav {
    left: -0%;
	opacity: 1;
	filter: blur(0px);
}
.down{
	transform: 0.5s ease all;
}
 
a.iconlink {
    display: block;
    height: 105px;
    box-shadow: unset;
    border-left: 1px solid #d7cdb9;
    width: 102px;
    padding: 4px;
    line-height: 100px;
    color: #fff7e7;
    transition: 0.5s cubic-bezier(0, 1.02, 0.25, 1) all;
    background: radial-gradient(#ce424200 0%, #ce4242 0%);
    background-position: center;
    background-size: 100% 100%;
    box-sizing: border-box;
    font-size: 23px;
	text-align: center;
	position: relative;
	z-index: 10;
}
a.iconlink:hover {
    background: radial-gradient(#ce424200 50%, #ce4242 50%);
    background-size: 200% 200%;
    background-position: center;
    color: #ce4242;
    font-size: 23px;
}

a.iconlink.tel-resp {
    display: none;
}
a.iconlink.tel-wide{
	color:white;
}

#main-navigation .menu {
    list-style-type: none;
    width: auto;
    text-align: left;
    float: left;
    height: auto;
    position: relative;
    height: 100px;
}
.menu > li.active > ul {
    display: block;
    opacity: 1;
    background: none;
    width: auto;
    background: #ff691b;
    padding: 0;
   
}
.nav {
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    align-items: center;
    align-content: center;
}
#main-navigation .menu li a {
    font-family: likely-sans, Arial, sans-serif;
    padding: 11px 25px;
    color: rgb(244 231 215);
    background: #9fb3d1;
    border-radius: 50px;
    font-size: 16px;
    margin: 9px;
    letter-spacing: 2px;
    border: 2px solid #9fb3d1;
}
#main-navigation .menu li a.circle {
    padding: 13px 3px;
}
#main-navigation .menu .active a {
    background: #ff691b;
    border: 2px solid #ff691b;
}
#main-navigation .menu li a:hover {
    background: #ed6927;
}

div#parallax {
    margin-top: 98px;
}
.moduletable_menu {
    max-width: 100%;
    margin: auto;
}

#main-navigation .menu li a:hover {
    color: #ffffff;
    border: 2px solid #ff691b;
}


#main-navigation .menu .active a:hover {
    background: #ffb28b;
    color: #5e65ab;
}
#main-navigation p {
    margin: 0;
}
#main-navigation .menu li a.iconlink {
    display: block;
    height: 105px;
    box-shadow: unset;
    border-left: 1px solid #d7cdb9;
    width: 102px;
    padding: 4px;
    line-height: 100px;
    color: #fff7e7;
    transition: 0.5s cubic-bezier(0, 1.02, 0.25, 1) all;
    background: radial-gradient(#ce424200 0%, #ce4242 0%);
    background-position: center;
    background-size: 100% 100%;
    box-sizing: border-box;
    font-size: 23px;
}
#main-navigation .menu li a.iconlink:hover {
    background: radial-gradient(#ce424200 50%, #ce4242 50%);
    background-size: 200% 200%;
    background-position: center;
    color: #ce4242;
    font-size: 23px;

}
#menue2 {
    float: left;
    align-content: center;
    color: #fff7e7;
    border: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
    height: 100px;
    padding: 0 37px;
}
#main-navigation #menue2 .menu li a {
    font-size: 16px;
    font-weight: 800;
    text-transform: none;
}
.menu li {
    background: none;
    display: inline-block;
    position: relative;
    transition: 0.9s ease all;
}
li.nav-item.deeper.parent:hover > a {
    border: 2px solid #ff691b;
}
.menu > li > ul {
    text-decoration: none;
    width: auto;
    left: 0;
    box-sizing: border-box;
    box-shadow: 0 7px 17px -17px black;
    text-align: left !important;
    display: block;
    z-index: 9;
    padding: 0;
    pointer-events: none;
    display: block;
    opacity: 0;
    top: 49px;
    background: none;
    position: absolute;
    width: auto;
    background: #ff691b;
    padding: 0;
    left: 27px;
    border-radius: 20px;
    height: 39px;
    transition: 0.9s ease all;
    height: 0;
    overflow: hidden;
}
.menu li.active ul {
    pointer-events: unset;
    height: 0px;
    opacity: 0;
	overflow: hidden;
}
.menu li ul.show-menu {
    opacity: 1;
    height: auto;
	pointer-events: unset;
}
.menu > li.arrow > ul {
    display: block;
    position: absolute;
    top: 103px;
    opacity: 1;
    pointer-events: unset;
}

.field-label {
  display: none;
}
#main-navigation .menu #myDropdown a, #main-navigation .menu .active #myDropdown a:hover {
    background: #fbbb9a;
    color: #5e65ab;
}
#main-navigation .menu #myDropdown a, #main-navigation .menu #myDropdown a:hover {
    background: #fbbb9a;
    color: #5e65ab;
}
/*.deeper::after {
    display: block;
    background: #f2c979;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 5px;
    top: 24px;
    border-radius: 5px;
    text-align: center;
    line-height: 32px;
    color: #57758d;
    transition: 0.2s ease all;
    cursor: pointer;
    margin: auto;
    opacity: 1;
    content: "\f078";
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
}*/

.opensub {
    background: none;
    margin: 0;
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    padding: 0;
    font-size: 0px;
    width: 100%;
    height: 0;
    top: 41px;
    opacity: 0;
    transition: 0.2s ease all;
}
span.opensub.show-menu {
    height: 8px;
	opacity: 1;
	background: transparent;
}

.ausblenden{
	display: none; 
}

#main-navigation .menu #myDropdown a, #main-navigation .menu .active #myDropdown a {
    border: none;
    padding: 2px 24px;
    text-align: left;
    font-size: 15px;
    color: #fff7e7;
    background: #ff691b;
    line-height: 32px;
    margin: 0px;
    border: 3px solid #ff691b;
    width: 100%;
    display: block;
    border-radius: 20px;
}
#main-navigation .menu .active #myDropdown .active a {
    background: #5e65ab;
    color: #fff7e7 !important;
    border: 3px solid #ff691b;
}
.menu-btn {
    height: 105px;
    width: 105px;
    float: right;
    background: #ce4242;
    cursor: pointer;
    display: block;
    position: relative;
    padding: 32px;
    z-index: 10;
    display: none;
}
.strich1, .strich2, .strich3 {
    background: #fff7e7;
    width: auto;
    height: 4px;
    display: block;
    margin: 6.5px 5px;
    border-radius: 0;
    transition: 0.5s ease all;
    border-radius: 2px;
}
span.strich2 {
    width: 40px;
}
span.strich1 {
    width: 40px;
    left: -9px;
    position: relative;
}
.change .strich1 {
	    background: #fff7e7;

  -webkit-transform: rotate(-45deg) translate(-11px, 7px);
  transform: rotate(-45deg) translate(-11px, 7px);
  width: 33px;
  position: absolute;
    left: 32px;
    top: 32px;
}

.change .strich2 {opacity: 0;}

.change .strich3 {
    background: #fff7e7;
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
    width: 33px;
    position: absolute;
    left: 30px;
    bottom: 32px;
}
.nav-child li {
    width: 100%;
    opacity: 1;
    top: 0;
    transition: 0.9s ease all;
    display: block;
    height: 0;
}
.show-menu li.nav-item {
    height: auto;
}

section.article-content {
    display: flex
;
    flex-direction: row;
    flex-wrap: nowrap;
}
section.article-content.no-sideboard .sideboard {
    display: none;
}
section.article-content.no-sideboard #artikeltext {
    width: 1024px;
    margin: auto;
} 
/* ************************** SIDEBAR ************************
*****************************************************************/
.sideboard .menu li {
    display: block;
    width: 100%;
}
.sideboard {
    width: 30%;
padding: 140px 60px 130px 98px;
}
.sideboard .nav li a {
    font-family: likely-sans, Arial, sans-serif;
    padding: 5px 25px 2px 25px;
    color: rgb(244 231 215);
    background: #ff691b;
    border-radius: 20px;
    font-size: 16px;
    margin: 4px;
    letter-spacing: 2px;
    border: 2px solid #ff691b;
    display: block;
    line-height: 30px;
}
.sideboard .nav li a:hover {
    background: #ffb28b;
    color: #5e65ab;
}
/* ************************** CONTENT ************************
*****************************************************************/

.item {
    box-sizing: border-box;
    padding: 70px 15px 40px 15px;
    color: #555;
    clear: both;
    position: relative;
    border-radius: 10px;

}

.item-image img {
    width: auto;
    height: 100%;
    box-sizing: border-box;
}
.leading-0.clearfix {

    box-sizing: border-box;

    padding: 15px;
    color: #555;

}
.cols-1 {
    clear: both;
}
.leading {
  position: relative;
}
.leading-0 {
    padding: 15px;

}
.items-leading .left.item-image {
    height: 650px;
    overflow: hidden;
    width: 100%;
	float: unset;
}
.items-leading .left.item-image img {
    width: 100%;
}
.items-leading .item-content {
    width: 100%;
	float: none;
}
.item-image {
    width: 50%;
    box-sizing: border-box;
    overflow: hidden;
    height: 100%;
    float: left;
}

.newsbeitrag .item-image {
	width: 100%;
    position: absolute;
}
.item-content {
    float: right;
    width: 100%;
}
.items-leading  .newsflash-title {
	display: none;
}
.items-leading .introtext {
  padding: 25px 0;
  width: 1024px;
  margin: auto;
  text-align: left;
}

.items-leading .item-content {
    max-width: 1024px;
    margin: auto;
    font-size: 28px;
}
.pull-right.item-image {
    float: right;
}
.items-row.cols-1.row-1.row-fluid.clearfix {
    background: #e4efff;
}

.cols-2 .column-1, .cols-2 .column-2, .cols-3 .column-1, .cols-3 .column-2, .cols-3 .column-3, .column-1.span4, .column-2.span4, .column-3.span4, .column-4.span4 {
    float: left;
    clear: right;
    background: #f2f7ff;
    border: 3px solid #fff7e7;
    box-sizing: border-box;
}
.leading .readmore {
  display: none;
}
.cols-2 .column-1
{
  width: 100%;
}

.cols-2 .column-2
{
  width: 100%;
}

.cols-3 .column-1
{
  width: 33%;
}

.cols-3 .column-2
{
  width: 33%;
}


.cols-3 .column-3
{
  width: 34%;
}

.column-1.span4, .column-2.span4, .column-3.span4, .column-4.span4 {
    width: 25%;
}

.pagenav {
    display: inline-block;
    margin: 20px 5px;
    float: left;
    clear: right;
    padding: 20px;
	list-style-type: none;
}

.pagination ul {
    list-style-type: none;
}

#nachunteninfo {
    transform: rotate(180deg);
    display: block;
    background: #6f9b7b;
    width: 95px;
    margin: auto;
    padding: 5px;
    border: 1.5px solid black;
    color: #edfbf1;
}

#nachunten .fas.fa-chevron-up, #totop .fas.fa-chevron-up {
    font-size: 30px;
    color: #fff7e7;
    line-height: 44px;
}

#nachunteninfo a {
 
    color: #edfbf1;
}
#totop a, #nachunten a{
    display: block;
    cursor: pointer;
    padding: 20px;
    z-index: 599;
    text-align: center;
    position: absolute;
    background: #0d4295;
	color: #fff7e7;
	width: 60px
}
#totop img, #nachunten img {
    height: auto;
}

footer #totop a, footer #nachunten a{
	color: #fff7e7;
}

video {
    max-width: 100%;
    height: auto;
}
.totop, .nachunten {
    opacity: 0;
    display: block;
    margin: 0 auto;
    position: fixed;
    z-index: 5;
    width: 100%;
	bottom: 20px;
    left: 0;
    text-align: center;
    transition: 0.5s ease all;
}
#totop, #nachunten {
    transition: 0.5s ease all;
    width: 48px;
    height: 50px;
background: #272727;    display: block;
    margin: auto;
    border-radius: 0;
    box-shadow: 0 0 14px -7px black;
    border-radius: 10px;
}
.nachunten {
    transform: rotate(180deg);
	opacity: 1;
}
.down {
    opacity: 0 !important;
}
/* //////////////////////////////// PAGINATION ////////////////////////////////// */
.pagination {
    font-size: 18px;
    max-width: 1024px;
    margin: auto;
}
.pagination a {
    font-size: 18px;
}
.pagination li::marker {
    display: none;
    content: unset;
    margin: 0;
    position: unset;
    padding: 0;
}
.pagenav {
    display: inline-block;
    margin: 20px 5px;
    float: left;
    clear: right;
    padding: 20px;
    list-style-type: none;
    background: #fff7e7;
}
.pagination .hasTooltip.pagenav {
    color: #d5853e !important;
}.pagination a {
    color: #d5853e !important;
}
.introtext a {
  color: black;
  border-bottom: none;
}
#news .inhalt {
  max-width: 1024px;
}
#news i {
  text-align: center;
  display: block;
  color: #fff7e7;
  font-size: 44px;
}
.page-item.disabled .page-link {
    color: #6d757e;
    pointer-events: none;
    background-color: #fff7e7;
    border-color: #dfe3e7;
    height: 41px;
}
.page-item .page-link {
    color: #6d757e;
    background-color: #fff7e7;
    border-color: #dfe3e7;
    height: 41px;
}
span.icon-angle-right::after {
	font-family: "Font Awesome 6 Pro";
    content: "\f105";
}
span.icon-angle-double-right::after {
    font-family: "Font Awesome 6 Pro";
    content: "\f101";
}

span.icon-angle-double-left::before {
    font-family: "Font Awesome 6 Pro";
    content: "\f100";
}
span.icon-angle-left::before {
    font-family: "Font Awesome 6 Pro";
    content: "\f104";
}
#cash {
    padding: 120px;
    background: #014f35;
    text-align: center;
    color: #fff7e7;
}
#cash .moduletable {
    width: 50%;
    padding: 0 36px;
}
#cash {
    padding: 120px;
    background: #014f35;
    text-align: center;
    color: #fff7e7;
    display: flex;
    position: relative;
}
#cash h3 {
    font-size: clamp(11px, 4.0vw, 41px);
    font-family: 'likely-sans';
    color: #9fb3d1;
}
.breaking-news {
    width: 200px;
    height: 200px;
    background: #903;
    color: #fff7e7;
    font-family: 'freight-sans-pro';
    padding: 0;
    box-sizing: border-box;
    position: absolute;
    z-index: 500;
    top: 108px;
    left: 30px;
    text-align: center;
    box-shadow: 1px 6px 20px 3px #00000080;
    display: table;
    padding: 20px;
	z-index: 4;
}
.breaking-news .newsbeitrag.blog {
    width: unset;
    margin: 0;
    box-shadow: none;
}
.breaking-news .bildcontainer {
    display: none;
	
}
.breaking-news .newsbeitrag.blog {
    width: unset;
    margin: 0;
    background: unset;
    bottom: 0;
    opacity: 1;
}
.breaking-news .blog .textinhalt p {
    color: #fff7e7;
}
.breaking-news .introtext.stnd {
    padding: 0;
    display: block;
}
.breaking-news .blog .textinhalt {
    width: 100%;
    float: unset;
    background: #990033;
    color: #fff7e7;
    padding: 0;
    font-size: 19px;
}
.breaking-news a {
    color: #fff7e7;
}
.breaking-news a {
    font-weight: 100;
    border-bottom: 1px solid;
}
/* //////////////////////////////// FRONTEND EDITING ////////////////////////////////// */

#neuer {

    display: block;
    position: absolute;
    z-index: 9;
    background: #6AE0BB;
    top: 83px;
    left: 150px;
    padding: 7px;
    box-shadow: 2px -2px 14px -3px black;
    border-radius: 5px;
    border: 3px solid white;
    color: white !important;

}
#neuer a {
  color: white;
}
.input-group-text {
    display: none;
}
.mod-login__submit.form-group .btn {
    top: 0;
}

hr[class].mce-item-pagebreak, hr[class].mce-item-readmore {

    background-color: #17cf95!important;

}
.btn.btn-secondary.input-password-toggle {
    position: absolute;
    right: 1px;
    top: 5px;
    width: 50px;
    height: 49px !important;
    background: #17cf95;
    border: none;
    border-radius: 0;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
	z-index: 80;
}
#system-readmore::after {
    display: block!important;
    content: "weiterlesen"!important;
    height: 17px!important;
    background: #17cf95!important;
    color: white!important;
    font-size: 16px!important;
    line-height: 17px!important;
    text-align: center!important;
}
.input-group .btn.btn-secondary {
    margin: 0;
}
hr{
	opacity: 1;
}
.ba-edit-gallery-btn {
    background: #17cf95 !important;
    color: #241d1d !important;
    border-radius: 5px !important;
    border: 2px solid white;
	left: 5px;
top: 5px;
}
.buttons-editor .btn.btn-secondary {
    display: none;
}

#jform_com_fields_mieten_kaufen input#jform_com_fields_mieten_kaufen0, #jform_com_fields_mieten_kaufen input#jform_com_fields_mieten_kaufen1, #jform_com_fields_mieten_kaufen input#jform_com_fields_mieten_kaufen2,
#jform_com_fields_mieten_kaufen input#jform_com_fields_mieten_kaufen3,
#jform_com_fields_mieten_kaufen input#jform_com_fields_mieten_kaufen4,
#jform_com_fields_mieten_kaufen input#jform_com_fields_mieten_kaufen5,
#jform_com_fields_mieten_kaufen input#jform_com_fields_mieten_kaufen6{
    display: none;
}


#loginbereich {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #17cf95;
    z-index: 852;
    box-sizing: border-box;
    display: none;
}
#login-form {
    background: white;
    width: 20%;
    padding: 50px;
    margin:  auto;
    border-radius: 5px;
    box-shadow: 0 0 21px -8px black;
    font-size: 20px;
	    border: 2px solid #ececec;
}
.mod-login, .mod-login-logout  {
    background: white;
    margin: auto;
    max-width: 500px;
    padding: 80px;
    box-sizing: border-box;
    border: 2px solid #ececec;
    border-radius: 9px;
    color: #2d2d2d;
    box-shadow: 0 0 21px -8px black;
}
.input-group{
	position: relative;
}
.icon-eye.icon-fw, .icon-eye-slash {
    width: 49px;
    height: 49px;
    display: block;
    background: #17cf95;
    line-height: 49px;
    color: white;
    font-family: "Font Awesome 6 pro";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: -4px;;
    cursor: pointer;
}
#form-login-remember-16 {
    display: none;
}
.icon-eye::before {
    content: "\f06e";
}
.icon-eye-slash::before {
    content: "\f070";
}
.input-password-toggle {
    padding: 0;
    margin: 0;
    height: 0;
    width: 0;
    border: none;
}
.input-password-toggle .visually-hidden {
    display: none;
}

.mod-login li {
    display: block;
    color: #2d2d2d;
}

.mod-login a {
    color: #2d2d2d!important;
}
.mod-login a:hover {
    color: #2d2d2d !important;
}

.closelogin {
    display: block;
    background: white;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 5px;
    border: 2px solid #ececec;
    box-shadow: 0 0 17px -7px black;
    margin: 150px auto 50px auto;
    cursor: pointer;
    color: #3e3e3e;
}
.dropdown-toggle {
    display: none;
}

#login-form .login {
    width: 95%;
    padding: 50px;
    border-radius: 0;
    background: #fff;
	margin: auto;
	box-shadow: 2px 2px 13px -5px black;
}
.remind, .reset {
    background: white;
    position: fixed;
    z-index: 80;
    box-shadow: 0 0 17px -8px black;
    padding: 20px;
    border-radius: 5px;
    border: 2px solid #d0d0d0;
    bottom: 25px;
    left: 25px;
    width: 50%;
}
.editable {
    border: 3px dotted gray;
}

.login {
    max-width: 1100px;
    margin: 130px auto 50px;
    background: #fff;
    padding: 50px;
    box-sizing: border-box;
    border: none;
    border: 4px solid #d5853e;
}
.nav.nav-tabs.nav-stacked {
    text-align: center;
    list-style-type: none;
}
fieldset {
    border: none;
}


#modlgn-username-16, #modlgn-passwd-16, #username, #password {
    width: 250px;
    font-size: 22px;
    line-height: 150%;
    padding: 6px 20px;
    border-radius: 0;
    border: 2px solid #17cf95;
    margin: 5px 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.btn.hasTooltip::after {

    content: "\f00d";
    font-family: "Font Awesome 6 pro";
    font-weight: 900;
    line-height: 22px;

}

#login-form .add-on {
    width: 100%;
    display: block;
    margin: 15px 0 0 0;
}

#login-form li {

    list-style: none;
    padding: 5px 0;

}

.category.table.table-striped.table-bordered.table-hover {
    background: white;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 0 17px -9px black;
    margin: 20px 0;
    width: 100%;
    font-size: 20px;
	text-align: left;
}
.bearbeiten {
  list-style: none;
  padding: 0;
  top: 140px !important;
  right: -150px !important;
}
joomla-alert {
  display: block;
  z-index: 50;
  position: absolute;
  top: 50px;
  left: 12px;
}
.mce-item-table hr {
    margin: 1rem 0;
color: inherit;
background-color: currentColor;
border: 0;
opacity: 1;
}
hr[class].mce-item-pagebreak, hr[class].mce-item-readmore {
    display: inline-block;
    padding: 0 2px;
    margin: 0;
    border: 1px dashed #ccc;
    background-color: #17cf95!important;
    background-repeat: no-repeat;
    background-position: center;
    height: 20px;
    width: 99%;
    font-size: 0;
    line-height: 0;
    letter-spacing: normal;
    word-spacing: normal;
    cursor: pointer;
}
.bearbeiten, .btn-primary, .btn-danger, .btn-secondary {
    background: #17cf95;
    color: white !important;
    margin: 10px 0;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    font-size: 19px;
    line-height: 24px;
    width: auto;
    overflow: hidden;
    text-align: center;
    letter-spacing: normal;
    border-radius: 5px;
    border: 2px solid #e8e8e8;
    z-index: 50;
    display: inline-block;
    padding: 20px;
    border: 2px solid white !important;
}
#adminForm .buttons-editor button.btn {
    display: inline-block;
}
.leading .bearbeiten {
  right: 0 !important;
  z-index: 90;
  top: 580px !important;
}
.buttons-editor .btn.btn-primary, .buttons-editor .btn.btn-danger, .buttons-editor .btn.btn-secondary {
    position: relative;
    width: 100%;
    top: unset;
}
.btn.btn-danger {
    background: #a64343;
    top: unset;
}
.bearbeiten a, .btn-primary a{
	color: white!important;
}
.btn-primary{
	position: relative;	
}
.btn.btn-danger.button-clear {
    margin: 0 0 0 5px;
        margin-left: 5px;
    box-shadow: none;
    border: 2px solid white;
    border-radius: 10px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
}
.btn-primary {
    position: relative;
    width: auto;
    height: auto;
}
.bearbeiten:hover, .btn-primary:hover {
    background: #56E9BB;
	cursor: pointer;
}

#editor {

    padding: 20px;
    box-sizing: border-box;
}

.editor-xtd-buttons {
    display: none;
}
joomla-tab[view="tabs"] > div[role="tablist"] {
    display: none;
}
joomla-tab > joomla-tab-element {
    background-color: #fefefe;
    border: 1px solid #ccc;
    border-radius: 0 0 .25rem .25rem;
    box-shadow: 0 0 3px rgba(0,0,0,.04);
    display: none;
    padding: 15px;
    position: relative;
    border-radius: 5px;
}
.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
    z-index: 1800;
    position: relative;
}
joomla-tab-element#versions {
    display: none;
}
.edit_right {
    width: 35%;
    min-height: 100%;
    float: left;
    padding: 11px 30px 30px 30px;
    box-sizing: border-box;
    background: #e6e6e6;
    border-radius: 5px;
}
.field-media-preview {
    border: 2px solid #e6e6e6 !important;
    border-radius: 5px !important;
    box-sizing: border-box;
}
#jform_com_fields_mieten_kaufen .btn {
    transition: 0.2s ease all;
    cursor: pointer;
    height: 44.5px;
    padding: 0 16px;
    background: #a6aaa6;
    LINE-HEIGHT: 44.5PX;
}
.buttons-editor {
    position: absolute;
    top: 20px;
    padding: 0 10px;
    box-sizing: border-box;
    right: 20px;
    z-index: 9;
    backdrop-filter: blur(2px);
    border: 2px solid white;
    border-radius: 7px;
    background: #e6e6e659;
    display: flex
;
    align-items: flex-end;
    align-content: space-around;
    flex-wrap: nowrap;
    justify-content: space-between;
}
#adminForm .buttons-editor button.btn {
    display: inline-block;
    margin: 6px 3px;
    height: 50px !important;
    line-height: 50px;
}
.edit-left {
    width: 60%;
    min-height: 100%;
    float: left;
    padding: 0 20px 20px 20px;
    box-sizing: border-box;
}
.alert-heading, .alert-message {
    color: white;
    text-align: center;
}
.alert.alert-warning {
    background: #ec7a7a;
    padding: 20px 0 40px 0;
}
#jform_metadesc {
    width: 100%;
    border-radius: 5px 5px 0 5px;
    border: 2px solid #e6e6e6;
    padding: 10px 9px;
    box-sizing: border-box;
    font-size: 20px;
	font-family: aaux-next, sans-serif;
    font-size: 18px;
}
#jform_metakey {
    width: 60%;
    border-radius: 26px 26px 0 26px;
    border: 2px solid #e6e6e6;
	padding: 10px 20px;
	box-sizing: border-box;
}
#publishing {
    display: block;
}

#editor-xtd-buttons {
    display: none;
}
#com-content-formTabs {
    display: none;
}
#language {
    display: none;
}
#adminForm .btn {
    transition: 0.2s ease all;
    cursor: pointer;
    height: 41.5px;
    padding: 0 16px;
    background: #17cf95;
    font-size: 18px;
    font-weight: 100;
}
#adminForm .btn:hover {
    background: #60cda7;
}
.editcontent {
    width: 100%;
    padding: 20px;
}
.editcontent legend {
    display: none;
}
#jform_catid-lbl, #jform_catid_chzn {
    display: none;
}
.control-group {
    padding: 0;
}
.hasPopover {
    font-size: 20px;
    line-height: 184%;
}
.form-check-input:checked[type="checkbox"] {
    background-color: #17cf95;
    border: 2px solid white;
}
.form-check-input {
    width: 1.5em!important;
    height: 1.5em!important;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    border: 1px solid rgba(0,0,0,.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}
#adminForm {
    border: 2px solid #17cf95;
    background: #17cf95;
    padding: 5px 5px 25px 5px;
    width: 100%;
    margin: 0;
    border-radius: 16px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 800;
    overflow: scroll;
    box-sizing: border-box;
    border-radius: 0;
	padding: 129px;
}
#adminForm .btn-toolbar .btn {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 5px auto;
    cursor: pointer;
    width: 100%;
    border: none;
    padding: 20px 74px !important;
}
#jform_title, #jform_alias {
    padding: 4px 11px;
    font-size: 18px;
    margin: 3px 0 0px 0;
    border: 2px solid #e6e6e6;
    border-radius: 5px;
    transition: 0.2s ease all;
    width: 100%;
    box-sizing: border-box;
}
.button-clear .icon-times::after {
    content: "leeren";
}
select#jform_access, label#jform_access-lbl {
    display: none;
}
.chzn-container-single .chzn-single span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
}
.control-group .controls input {
    padding: 3px 6px;
    font-size: 18px;
    margin: 4px 0 4px 0;
    border: 2px solid #e6e6e6;
    border-radius: 5px;
    transition: 0.2s ease all;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}
.control-group .controls input:hover, #jform_images_image_fulltext_alt:hover {
    border: 2px solid #e6e6e6;
    box-shadow: 0 0 10px -3px #17cf95;
}
#jform_images_image_intro_alt:hover, #jform_images_image_fulltext_alt:hover {
    border: 2px solid #e6e6e6;
	box-shadow: 0 0 10px -3px #17cf95;
}
.control-group .controls input:focus,#jform_images_image_intro_alt:focus, #jform_images_image_fulltext_alt:focus {
    border: 2px solid #17cf95;
    background: #F0F0F0;
}


#jform_title:hover {
    border: 2px solid #e6e6e6;
	box-shadow: 0 0 10px -3px #17cf95;
}
#jform_title:focus {
    border: 2px solid #17cf95;
    background: #F0F0F0;
}
.modal.btn {
    position: absolute;
    right: 42px;
}

#jform_articletext {
    border: 2px solid #e6e6e6;
    padding: 15px;
    border-radius: 5px;
	transition:0.2s ease all;
}
#jform_articletext:hover {
    border: 2px solid #e6e6e6;
    box-shadow: 0 0 10px -3px #17cf95;
}
#jform_articletext:focus {
     border: 2px solid #17cf95;
    background: #F0F0F0;
}
.btn-group .btn {
    position: relative;
    left: auto;
    bottom: auto;
    right: auto;
    margin: 5px auto;
}
.hasTipPreview {
    height: 44px;
    width: 44px;
    background: #17cf95;
    font-size: 27px;
    display: block;
    margin: auto;
    z-index: 900;
    line-height: 40px;
    position: absolute;
    left: 0;
    top: 0;
    border: 2px solid #e6e6e6;
    box-sizing: border-box;
    border-radius: 5px;
}

.input-prepend.input-append {
    position: relative;
    height: 44px;
}
.chzn-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 100% !important;
}

.hasTipPreview .icon-eye::after {
    display: block;
    content: "\f06e";
    font-family: "Font Awesome 6 pro";
    text-align: center;
    color: white;
    font-weight: 100;
}

.chzn-container-single .chzn-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0px 0 0 7px;
    height: 46px;
    line-height: 46px;
    margin: auto;
    font-size: 20px;
    background: white;
    border: 2px solid #e6e6e6;
    border-radius: 5px;
}
.input-append .wf-media-input + .wf-media-upload-button {
    border-radius: 0;
    height: 0;
    display: none;
}
.chzn-container-single .chzn-single div b {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #f4f4f4;
    border-radius: 0;
    border: 0px solid #e6e6e6;
    background-size: 176%;
    background-image: none;
}
.chzn-container-active.chzn-with-drop .chzn-single div b {
    background-position: -11px 7px;
}
.chzn-container-single .chzn-single div b::after {
    display: block;
    width: 100%;
    height: 100%;
    content: "\f078";
    font-family: "Font Awesome 6 pro";
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    color: #999;
}
.chzn-container-active .chzn-single div b::after {
    display: block;
    width: 100%;
    height: 100%;
    content: "\f077";
    font-family: "Font Awesome 6 pro";
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    color: #999;
}
.chzn-container-single .chzn-single div {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 38px;
    height: 100%;
    border-radius: 15px;
}
.hasTooltip {

    font-size: 36px;
    color: #fff !important;

}
.btn.hasTooltip {
    background: #ac555d;
    position: absolute;
    right: 0;
    width: 44px;
    height: 44px;
    display: block;
    border: 2px solid #e6e6e6;
    box-sizing: border-box;
    border-radius: 5px;
}

.input-append {
    position: relative;
}
.btn-secondary {
    height: 42px !important;
}

.js-btn.btn.btn-clear, .js-btn.btn.btn-today, .js-btn.btn.btn-exit {

    width: 31%;
    margin: 0;
    padding: 5px 0 !important;
    border: none;
    margin: 1%;

}
.icon-calendar::after {

    content: "\f073";
    font-family: "Font Awesome 6 pro";
    font-weight: 900;
color:#999;
}
.btn.modal_23 {
    display: none;
}
.input-append {
    position: relative;
}
.chzn-container-multi .chzn-choices li.search-choice .search-choice-close {
    position: absolute;
    top: 11px;
    right: 3px;
    display: block;
    width: 12px;
    height: 10px;
    font-size: 1px;
}
.wo li .label.label-info {
    color: #f9f9f9;
    background: none !important;
    font-size: 18px !important;
}

.wo li {
    padding: 0;
    list-style-type: none;
}
.btn-toolbar-editor {
    position: absolute;
    top: 0;
    width: 100%;
    display: block;
}

.btn.speicher {
    background: #347d64;
    color: white;
    font-size: 20px;
    font-weight: 100;
	font-family: aaux-next, sans-serif;

	border: 2px solid #e6e6e6;
border-radius: 5px;
}
.btn.abbrechen {
    background: #ac555d;
    color: white;
    font-size: 20px;
    font-weight: 100;
	font-family: aaux-next, sans-serif;
	border: 2px solid #e6e6e6;
border-radius: 5px;
}
.chzn-container-multi .chzn-choices {
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
    height: auto;
    border: 2px solid #e6e6e6;
    background-color: #fff;
    cursor: text;
    font-size: 20px;
    padding: 9px;
    background-image: unset;
    border-radius: 5px;
}
.chzn-container-multi .chzn-choices li.search-choice {
    position: relative;
    margin: 3px 5px 3px 0;
    padding: 9px 19px 9px 5px;
    border: none;
    max-width: 100%;
    background-color: #17cf95;
    background-image: none;
    background-size: auto;
    background-repeat: repeat-x;
    background-clip: padding-box;
    box-shadow: none;
    color: #fff;
    line-height: 13px;
    font-size: 17px;
    border-radius: 5px;
}
.wf-editor-header .wf-editor-tabs {
    display: none;
    justify-content: flex-end;
}
.close {
    display: block;
    width: 55px;
    height: 55px;
    background: white;
    margin: auto;
    line-height: 55px;
    border-radius: 50%;
    position: relative;
    top: -14px !important;
    color: #17cf95;
    font-size: 40px;
    cursor: pointer;
    box-shadow: 2px 2px 24px -7px black;
    padding: 0;
    position: relative !important;
    color: #321f06 !important;
    padding: 0 !important;
}
.close:hover {

    box-shadow: none;
    color: #2f7a62;

}
#system-message {
    padding: 0 0 20px 0;
    color: white;
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 50%;
    z-index: 30;
}
.alert.alert-message {
    background: #17cf95;
    padding: 0 20px 20px 20px;
}
/*
.btn.btn-primary {
    background: #17cf95;
    color: white !important;
    border: #17cf95;
    position: relative;
    margin: 20px auto;
    left: 0;
    bottom: 0;
    width: 100%;
    font-weight: 100;
    font-size: 18px;
}
.btn.btn-primary:hover {
    background: #52D8AE;
}*/

.system-unpublished.cat-list-row0 {
    background: #e4e4e4;
    color: #cfcfcf;
}

.list-published.label.label-warning {
    color: #aa5252;
    font-weight: bold;
}
.category.table.table-striped.table-bordered.table-hover thead th {
    background: #17cf95;
	padding: 0 5px;
	color:   white;
}
.category.table.table-striped.table-bordered.table-hover thead th a{
	color: white !important;
}

.ba-form-acceptance-field label.ba-form-checkbox input[type="checkbox"]:checked + span, .ba-form-field-item .ba-form-checkbox-wrapper input[type="checkbox"]:checked + span{
	top: 0!important;
}

div.calendar-container table td.title {
    border: none;
}
.calendar-head-row .nav {
    border: none;
}

#tinymce {
    background: white !important;
}	
.btn.btn-outline-secondary.wf-media-upload-button {
    display: none;
}
.not-publish_ {
	display: none;
}
.btn.button-select {
    border: 2px solid #fff;
    border-radius: 10px 0 0 10px !important;
    background: #17cf95;
    margin: 3px;
        margin-left: 3px;
    margin-left: 3px;
    position: relative;
    left: 3px;
}
.calendar-container .time td {
    border-bottom: none;
    padding: 15px 3px 10px 0;
    border: none;
}
.custom-select-success.custom-select, .form-select-success.custom-select, .form-select.custom-select-success, .form-select.form-select-success {
  color: #e6e6e6;
  background-color: #006cae;
}
.custom-select-danger.custom-select, .form-select-danger.custom-select, .form-select.custom-select-danger, .form-select.form-select-danger {
  color: #eeb5b5;
  background-color: #a51f18;
}
.calendar-container .day-name {
    border-bottom: none;
    padding-top: .5rem;
    font-size: .7rem;
    font-weight: 700;
    border: none;
}.js-calendar table {
    border: 0px solid transparent !important;
}
.js-calendar.open button.js-btn.btn
 {
    font-size: 15px;
    border: 2px solid #dfe3e7;
    box-shadow: unset;
    margin: -1px;
}
/*************** BEARBEITUNGSMENU ********************/

.joomla-dialog-media-field dialog {
    width: 1024px;
    margin: auto;
    border: none;
    border-radius: 5px;
}
header.joomla-dialog-header {
    height: 0;
}
.alphabeta {
  color: #b38d74 !important;
}
/*/////////////////////// TOOLTIP ///////////////////////////*/
.tooltip {
	position: absolute;
	z-index: 1030;
	display: block;
	visibility: visible;
	font-size: 11px;
	line-height: 1.4;
	opacity: 0;
	filter: alpha(opacity=0);
}
.tooltip.in {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
.tooltip.top {
	margin-top: -3px;
	padding: 5px 0;
}
.tooltip.right {
	margin-left: 3px;
	padding: 0 5px;
}
.tooltip.bottom {
	margin-top: 3px;
	padding: 5px 0;
}
.tooltip.left {
	margin-left: -3px;
	padding: 0 5px;
}
.tooltip-inner {
	max-width: 200px;
	padding: 8px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background-color: #000;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.tooltip-arrow {
	position: absolute;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
}
.tooltip.top .tooltip-arrow {
	bottom: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 5px 5px 0;
	border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
	top: 50%;
	left: 0;
	margin-top: -5px;
	border-width: 5px 5px 5px 0;
	border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
	top: 50%;
	right: 0;
	margin-top: -5px;
	border-width: 5px 0 5px 5px;
	border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
	top: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 0 5px 5px;
	border-bottom-color: #000;
}
#com-content-formContent {
    width: 100%;
    margin: 50px auto;
    background: white;
    min-height: 100%;
    box-shadow: 0 0 27px -2px black;
    border-radius: 5px;
}
.popover {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1060;
	display: none;
	max-width: 276px;
	text-align: left;
	background-color: #474747;
	border-radius: 6px;
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	box-shadow: 0 0 -3px 10px black;
	white-space: normal;
	color: white;
}
.popover.top {
	margin-top: -10px;
}
.popover.right {
	margin-left: 10px;
}
.popover.bottom {
	margin-top: 10px;
}
.popover.left {
	margin-left: -10px;
}

.form-control {
    display: block;
    width: 100%;
    padding: .6rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #22262a;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

joomla-alert {
    margin: 75px 0 0 0;
}
.alert-heading, .alert-message {
    color: #373737;
    text-align: center;
}

.modal-backdrop {

    display: none;
}
.dropdown-menu {
    position: unset;
    z-index: unset;
    display: unset;
    margin: unset;
        margin-top: unset;
    margin-top: unset;
    font-size: unset;
    color: unset;
    text-align: unset;
    list-style: unset;
    background-clip: unset;
    border: unset;
        border-top-color: unset;
        border-right-color: unset;
        border-bottom-color: unset;
        border-left-color: unset;
    border-top-color: unset;
    border-right-color: unset;
    border-bottom-color: unset;
    border-left-color: unset;
    border-radius: unset;
}
.icon-arrow-left::after {
  content: "\f177";
  color: white;
  font-size: 23px;
  font-family: "Font Awesome 6 Pro";
  padding: 5px;
}
.icon-arrow-right::after {
  content: "\f061";
  color: white;
  font-size: 23px;
  font-family: "Font Awesome 6 Pro";
  padding: 5px;
}
.icon-cancel-2::after {
  content: "\58";
  color: white;
  font-size: 23px;
  font-family: "Font Awesome 6 Pro";
  padding: 5px;
}
.newsbeitrag .bearbeiten, .leading .bearbeiten, #artikeltext .bearbeiten {
    right: 15px !important;
    min-width: 60px;
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    margin: 0;
    box-sizing: border-box;
    background: #17cf95a3;
    border: none;
    border: 3px solid white;
}
#artikeltext .actions li {
  margin: 5px 0 10px 10px;
  font-size: 18px;
  line-height: 42px;
  padding: 1px 20px;
}
.bearbeiten .icon-eye-slash {
    width: 100%;
    height: 46%;
    /* background: #c66541; */
    top: unset;
    position: absolute;
    bottom: 0;
    line-height: 28px;
    display: none;
}
.qq-btn.qq-upload-delete-selector.qq-upload-delete::after {
  content: "x";
}
.qq-btn.qq-upload-delete-selector.qq-upload-delete {
  top: 40px;
  background: #cc5656;
  color: white;
  right: 2px;
  z-index: 4;
  padding: 5px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  opacity: 1;
}

.fa-duotone.fa-pen-to-square {
  height: 32px;
  line-height: 40px;
  display: block;
}
#attrib-fields-1 {
  background: #e6e6e6;
  padding: 20px;
  border-radius: 5px;
  margin-top: 20px;
}
#showtime-jform_com_fields_bildergalerie .btn-danger {
  display: none;
}
#jform_articletext_ifr {
  height: 350px;
}
li.edit-icon::marker {
    display: none!important;
	color: #ffffff00;
	opacity: 0;
}

#showtime-jform_com_fields_bildergalerie .btn {
  display: inline-block;
  border: 2px solid white;
  margin: 5px;
  width: calc(33% - 30px);
  font-size: 18px;
  color: white;
  height: 50px;
  line-height: 50px;
  left: 0;
  box-shadow: 0 0 10px -8px black;
  position: relative;
}
.btn.btn-danger:hover {
  border: 2px solid #8c3131 !important;
}
	a.btn.btn-sm {
    background: #17cf95!important;
}
.imageintroimageedit, .imagefullimageedit {
    box-shadow: 0px 0px 7px -4px black;
    padding: 5px;
    margin-top: 17px;
    border-radius: 7px;
    width: calc(100% - 10px);
    float: left;
    margin: 5px;
}
.imageintroimageedit {
}
.edit_left {
    width: 65%;
}
.editcontent .form-grid {
    width: 100%;
}
form#adminForm fieldset {
    display: flex
;
    flex-wrap: wrap;
    align-items: stretch;
    font-size: 16px;
    background: #e6e6e6;
    box-sizing: border-box;
    padding: 0;
    border: none;
}
.btn-primary {
    background-color: #5e65ab;
    border-color: var(--cassiopeia-color-primary);
}
.eventedit {
    max-width: 1024px;
    margin: auto;
}
#events .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    position: absolute;
    right: 2px;
    height: 33px;
    line-height: 33px;
    background: #5b65af;
    color: white;
    padding: 0;
    width: 35px;
    border: unset;
    border-radius: 0;
}
.js-calendar table thead {
    background: unset;
    border-bottom: 2px solid #444444;
    border: none;
}
.js-calendar table tr:nth-child(even) {
    background: unset;
}
.js-calendar a {
    border: none;
}
/*//////////////////////ENDE frontendediting///////////////////////////////*/


/*============================================ Bis 1440px ============================================*/
@media screen and (max-width: 1440px){
	#cash a {
		font-size: 12px;
		margin: 5px 1px;
	}
    .sideboard {
        width: 30%;
        padding: 60px 20px;
    }
	#artikeltext {
		max-width: 800px;
	}
	.sideboard .nav li a {
		padding: 3px 11px 0px 11px;
		font-size: 12px;
	}
	.bildcontainer {
		height: 250px;
	}
	.einleitung p {
		font-size: 30px;
		color: #fff7e7;
		letter-spacing: 0;
		line-height: 120%;
	}
	h1 {
		font-size: clamp(16px, 3vw, 34px);
		/* -webkit-text-stroke: 2px #000; */
		position: relative;
		transition: 0.2s ease all;
		letter-spacing: 0;
		font-weight: 400;
	}
	h3 {
		font-size: 23px;
		margin: 10px 0 3px 0;
		color: #5e65ab;
		font-weight: 400;
		line-height: 150%;
	}
	#main-navigation .menu li a {
		font-family: likely-sans, Arial, sans-serif;
		padding: 11px 16px;
		color: rgb(244 231 215);
		background: #9fb3d1;
		border-radius: 50px;
		font-size: 13px;
		margin: 3px;
		letter-spacing: 2px;
		border: 2px solid #9fb3d1;
		line-height: 100%;
	}
	.start {
		width: 76%;
		padding: 109px;
	}
	h2.einleitung {
		color: #fff7e7;
		font-size: clamp(15px, 4vw, 137px);
	}
	span.opensub.show-menu {
		height: 14px;
		opacity: 1;
	}
	.opensub{
		top: 36px;
	}
	.tag_easy {
		font-size: 30px;
	}

}

/*============================================ Bis 1440px ============================================*/
@media screen and (max-width: 1440px){
	
	img-fulltext-left {
	  height: 445px;
	}
	p, table {
		font-size: 18px;
	}
	#blog {
		padding: 0 40px;
	}
	#main-navigation .menu {
	}
	#menue2 {
        float: unset;
    }
	#main-navigation .menu #myDropdown a, #main-navigation .menu .active #myDropdown a {
font-size: 14px;
        line-height: 131%;
        border-radius: 20px;
        padding: 10px 16px;
    }
	
    #artikeltext {
        padding: 75px 0 20px 0;
        width: 80%;
    }
	.page-header h1 {
   	 	font-size: 51px;
		padding: 0 0 0 0;
	}
	
	.change .strich1 {
		width: 33px;
		left: 26px;
		top: 21px;
	}
	.change .strich3 {
		width: 33px;
		left: 25px;
		bottom: 23px;
	}
	#telefon {
		right: 40px;
    	top: 27px;
	}

	
	.brotbroesmeli {
		top: 380px;
	}
	#onthetop {
	}

	.newsbeitrag h4 {
    font-size: 22px;
}

	a.iconlink {
    height: 84px;
line-height: 84px;
		width: 84px;
	}
	.balken {
		height: 40px;
	}
	.nachunten {
		bottom: 50px;
	}
    #logo {
        width: 97px;
    }
#main-header {

    height: 85px;
	}
	.totop.down {
		bottom: 0;
	}
	#prefooter2 a, #prefooter2 a:link, #artikprefooter2eltext a:visited {
    font-size: 20px;
}
	#prefooter2 p {
    font-size: 20px;
    line-height: 150%;
} 
	#news .inhalt {

}
input#mod-finder-searchword110 {
    height: 48px;
    border-radius: 40px;
    border: 5px solid #797fbd;
    background: #fff7e7;
    font-family: 'likely-sans';
    font-size: 13px;
    line-height: 30px;
}
	
	.buttons .inhalt {
    max-width: 1024px;
    margin: auto;
    padding: 10px 50px 50px 50px;
    box-sizing: border-box;
}
	
	#fixedcontact h3 {
		color: #fff7e7;
		font-size: 18px;
		margin: 0;
	}
	#prefooter .inhalt {
		max-width: 1024px;
		padding: 0 50px;
		box-sizing: border-box;
	}


body {
    font-size: 18px;
	}
section.article-content {
    display: flex
;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0 40px;
}
	h4 {
    font-size: 25px;
    font-weight: 100;
}

}



/*============================================ Bis 1366 ============================================*/
@media screen and (max-width: 1366px){
	.headerone {
		width: calc(40% - 30px);
		position: relative;
		height: 400px;
		padding: 100px 20px 20px 80px;
	}

		.deco-04 img {

    width: 163px;
}
.deco-05 {
    width: 269px;
	}
.deco-07 {
    width: 91px;
    height: 125px;
    position: relative;
    transform: rotate(90deg);
}
	.deco-01 img {
    height: 200px;
	}
	.deco-02 img {
    position: absolute;
    top: -72px;
    right: 205px;
    height: auto;
    width: 187px;
    animation: pulsate 9.5s ease-in-out infinite;
}
		.deco-03 img {
    position: absolute;
    top: -9px;
    right: 9px;
    height: 161px;
    width: auto;
    transform: rotate(25deg);
    animation: pulsate 15.5s ease-in-out infinite;
}

}
/*============================================ Bis 1260px ============================================*/
@media screen and (max-width: 1260px){ 
	
	.leading .newsbild {
	  	height: 385px;
	}

	a.button, .ffp-feed-load-more-btn {
	    font-size: 18px;
	}
	div#parallax {
    	margin-top: 59px;
	}
	.opensub {
    	right: -5px;
    	top: 38px;
	}

	#mehr2 h4 {
	  font-size: 22px;
	}
	.headerone {
		height: 350px;
		padding: 50px 20px 20px 80px;
	}

    .start {
        width: 76%;
        padding: 80px 40px;
    }
.small .start {
    width: 100%;
    padding: 0 39px;
}
.img-fulltext-left.standard {
}

    #artikeltext p {
        font-size: 18px;
        padding: 0 0 1px 0;
    }

	.img-fulltext-left {
    height: 385px;
}
	#main-navigation #menue2 .menu li a {
		font-size: 14px;
		font-weight: 800;
		text-transform: none;
		padding: 24.5px 1px 24.5px 10px;
	}
	#news, #produkte {
    padding: 10px;
}

	.items-leading .introtext {
		padding: 75px;
		width: auto;
	}

	.sideboard .nav li a {

		font-size: 13px;

	}

	#news h3 {
		font-size: 40px;
		color: #fff7e7;
		z-index: 90;
		top: 0;
		text-align: center;
	}
	#prefooter2 p {
		font-size: 18px;
		line-height: 150%;
	}
	.button {
		font-size: 18px;

	}
	#cash a {
		font-size: 13px;
	}
    #artikeltext {
        padding: 75px 0 20px 0;
        width: 70%;
    }

	.newsbeitrag h4 {
    	font-size: 22px;
    	hyphens: auto;
	}
	#fixedcontact {
		bottom: 0 !important;
	}
	footer {
		z-index: 4;
	}
	#fixedcontact {
		bottom: 0 !important; 
	}
	#prefooter .inhalt {
		padding: 0 19px;
	}
	
    .sideboard {
        padding: 60px 10px;
        width: 40%;
    }
    #main-navigation .menu {
        text-align: center;
        padding: 1px;
    }
	.mod-articles-item {
		border: 3px solid #edd7cc;
		margin: 15px;
		display: block;
		width: calc(50% - 30px);
	}
    .change .strich3 {
        width: 27px;
        left: 18px;
        bottom: 15px;
    }
	.change .strich2 {
		opacity: 1;
		top: 9px;
		position: relative;
		width: 40px;
	}
    .change .strich1 {
        width: 27px;
        left: 21px;
        top: 10px;
        background: white;
    }
}
/*============================================ Bis 1024px ============================================*/
@media screen and (max-width: 1111px){
	


}
/*============================================ Bis 768px  ============================================*/
@media screen and (max-width: 768px){
	.inhalt1 {
		width: 100%;
	}
		h4 {
		font-size: 24px;
	}
    a[href$=".pdf"] {
        padding: 5px 18px;
        border: 3px solid #ff691b;
        position: relative;
        height: auto;
        line-height: 157%;
        font-weight: 400;
        letter-spacing: 1px;
        font-size: 16px;
        border-radius: 20px;
    }
	a[href$=".pdf"]::after {
		right: -10px;
		top: -8px;
		background: #9fb3d1;
	}
	section.article-content {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		padding: 0;
	}
	a.iconlink.tel-resp {
		display: block;
	}
	.deko-punkte {
		opacity: 0.1;
	}
a.iconlink.tel-wide{
	display:none;
}
	.menu-btn {
    height: 84px;
    width: 84px;
    padding: 23px;
	background:transparent;
	display: block;
}
	.resp-home a {
    	display: block;
	}
	#sidebar {
		width: 100%;
		margin-top: 0;
	}
	#content {
		width: 100%;
	}

	.newsflash p {
		margin: 10px 0 0 0;
	}
	ol, ul {
		padding-left: 0rem;
	}
	
	#main-navigation{
		box-shadow: none;
	}
    #menue2 {
        padding: 52px;
        width: 100%;
        text-align: center;
        position: relative;
        color: #ce4242;
    }
	.column-1.span4, .column-2.span4, .column-3.span4, .column-4.span4 {
		width: 50%;
	}
	
	#main-navigation .menu li a {
    padding: 20px 60px;
    box-shadow: none;
		text-align: left;
}
	.item-image img {
		padding: 0 25px 0 0;
	}
	#main-header {

		height: 150px;
	}
	
	.facebook {
		left: 0;
		
	}
    #artikeltext {
        padding: 15px 7px;
        margin: 0;
    }
	 #logo {
        width: 78px;
    }
    #prefoot1 {
        float: unset;
        margin: auto;
        width: 100%;
    }
#prefoot2 {
			margin: auto;
	        width: 100%;

		}
#mehr1 {
    text-align: left;
    width: 100%;
}
	#onthetop h1 {
    line-height: 126%;
    font-size: 26px;
    margin: 14px 0;
}
	#mehr2 {
display: none;
}
	#mehr3 {
    text-align: left;
    padding: 50px;
    width: 50%;
}
	#fixedcontact {
    bottom: 0 !important;
    display: none;
	}
	#prefoot2 {
		padding: 20px 0;
		float: unset;
	}
	#footer1 {
		padding: 20px;
	}
	
	#footer2 {
		padding: unset;
	}
	.small .start {
		width: 100%;
		padding: 1px 20px;
	}
	#footer3 {
		padding: 20px;
	}
    #main-navigation {
        margin: 0 !important;
        background: #5e65ab;
        position: fixed;
        top: 0;
        left: -150%;
        width: 100%;
        height: 100%;
        display: block;
        overflow: scroll;
    }
    .menu li {
        width: calc(100% - 10px);
        margin: 5px;
        text-align: left;
    }
	#main-navigation .menu::before {
		display: none;
	}
    #main-navigation .menu li a {
        width: auto;
        display: block;
        float: none;
        text-align: left;
        margin: 0;
        padding: 15px 17px;
        border-radius: 23px;
    }
	#menue2 ul.nav.menu {
    width: 100%;
}
	.show-menu li.nav-item {
    height: auto;
    margin: 0;
    width: 100%;
}
	#main-navigation #menue2 .menu li a {
        text-align: left;	}

    #main-navigation .menu {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 120px;
    }
    .menu > li.arrow > ul {
        display: block;
        position: relative;
        top: 56px;
        opacity: 1;
        pointer-events: unset;
        width: auto;
    }
	.awesomplete>input {
    max-width: 100%;
}
	.awesomplete {
    display: inline-block;
    /* position: relative; */
    width: 100%;
}
#main-navigation .menu #myDropdown a, #main-navigation .menu .active #myDropdown a {
    text-align: left;
    font-size: 16px;
}

	    #main-navigation .menu li a.telefonlink {
        padding: 13px;
        background: #272727; 
        color: #fff7e7;
        margin: 0 13px;
        border-radius: 5px;
        font-size: 18px;
        width: 50%;
        margin: 50px auto;
    }
    span.opensub {
        display: block;
        height: 39px;
        position: absolute;
        background: #9fb3d1;
        top: 4px;
        z-index: 9;
        opacity: 1;
        border-radius: 50%;
        width: 39px;
        right: 4px;
    }
	.opensub::before {
    content: "\2b";
    width: 39px;
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    right: 0;
    z-index: 9;
    display: block;
    height: 39px;
    border-radius: 50%;
    background: #5e65ab;
    font-size: 30px;
    line-height: 39px;
    text-align: center;
    color: #ff691b;
		
}
	span.opensub.show-menu::before {
    content: "\f068";
}
	#onthetop {
		height: auto;
		margin-top: 0;
	}
    #onthetop h1 {
        line-height: 131%;
        font-size: 42px;
    }
	.inhalt {
		max-width: 1300px;
		margin: 0;
	}
	
	.badge {
    display: none;
}
	.headerone {
		height: 200px;
		padding: 7px 20px 20px 32px;
		left: 0;
		width: calc(50%);
	}
	.img-fulltext-left {
		height: 400px;
		right: 0;
	}
	.items-leading .introtext {
    padding: 40px 20px;
    width: auto;
}
	.deco-05 img {
    position: absolute;
    bottom: 0;
	}
    .deco-05 {
        width: 100px;
        z-index: 82;
    }
    .deco-04 img {
        width: 79px;
    }
	#blog h3, #news h3, #fb h3 {
    font-size: 24px;
	}
    .newsbeitrag.blog {
        max-width: calc(100% - 20px);
        margin: 10px;
    }
	#news .inhalt {
		max-width: 1024px;
		padding: 0;
	} 
	.deco-06 {
    width: 82px;
    position: absolute;
    bottom: 0;
}
	div#footer-decoration {
    position: absolute;
    z-index: 0;
    left: 0;
    top: -150px;
    height: 126px;
	}
	    .deco-07 {
        width: 44px;
        height: auto;
        position: relative;
        transform: rotate(90deg);
    }
.deco-07 img {
    position: absolute;
    bottom: 0;
    left: 0;
	    bottom: -34px;
	}
    #artikeltext {
        padding: 15px 25px;
        margin: 0;
        width: 100%;
    }
	.totop.down {

    bottom: 80px!important;
	}
.parent {
  padding: 0;
}
	#cash {
    padding: 60px 10px;
		display: flex
;
    position: relative;
    flex-wrap: wrap;

}
	#cash .moduletable {
    width: 100%;
    padding: 0 36px;
}
	.textinhalt {

    font-size: 18px;
}
	.newsbeitrag .introtext p {

    font-size: 18px;
}
	.custom-fields.details {
    width: 50%;
    display: block;
    font-size: 18px;
    padding: 20px;
    line-height: 150%;
}

	.nachunten {
		bottom: 80px;
	}
	.moduletable_menu {

		display: none;
	}
    #main-navigation .menu #myDropdown a, #main-navigation .menu .active #myDropdown a {
        padding: 10px 23px 8px 23px;
        text-align: center;
        font-size: 13px;
        text-align: left;
    }
	.prefoot1 {
		width: 100%;
		float: left;
	}
	.prefoot2 {
		width: 100%;
		float: left;
		text-align: left;
		padding: 50px 0 0 0;
	}
	.menu li ul.show-menu {
    opacity: 1;
    height: auto;
    pointer-events: unset;
    margin: 2px 0px;
	border-radius: 20px;
}
	.brotbroesmeli {
		top: 7px;
		left: 40px;
		z-index:9;
	}

	h1, h2, .item h2 {
	  font-size: 23px;
	}
	#main-header {

	  height: auto;
	  top: 0;
	}
	
    #logo img {
        width: 93px;
    }
	#tutti {
    	padding: 80px 3px 159px 4px;
	}
	footer {
		box-sizing: border-box;
		padding: 0 20px 0 20px;
	}
	    .sideboard {
        padding: 58px 10px 30px 41px;
        display: none;
	}
	.custombutton a {
		font-size: 18px;
		margin: auto;
		border-bottom: 1.56px solid #fff7e7;
		height: 120%;
		display: inline-block;
		width: auto;
		padding: 20px 0 5px;
		color: #fff7e7;
		top: 30px;
		position: relative;
		margin: auto;
		text-align: center;
		width: 100%;
	}
	
	.social {
		width: 44px;
		padding: 2px;
		display: block;
		position: fixed;
		left: 0;
		top: unset;
		box-sizing: border-box;
		bottom: 0;
	}
	.menu > li > ul {
		position: relative;
		width: 100%;
top: 2px !important;
		text-align: center !important;
		padding: 0;
		opacity: 0;
		height: 0;
		    left: 0;
	}
	.menu > li.arrow > ul {
		display: block;
		height: auto;
		opacity: 1;
	}
	#main-navigation.shownav {
		right: 0;
	}
	div#einelitung {
		height: 45vh;
	}
    .start {
        width: 100%;
        padding: 26px;
    }

	
}
/*============================================ Bis 480px ============================================*/
@media screen and (max-width: 480px){
.event_easy {

    display: flex
;
    flex-wrap: wrap;
}
	.title_easy {
    font-family: 'likely-sans';
    color: #5e65ab;
    font-size: 23px;
}
.datum_easy {
    position: relative;
    background: white;
    padding: 15px 10px;
    width: 100%;

}
	.tag_easy {
    font-family: 'likely-sans';
    color: #5e65ab;
    font-size: large;
    text-align: center;
    padding: 15px 2px;
    display: inline;
	font-size: 20px;
}
	.jahr_easy {
    font-family: 'likely-sans';
    padding: 15px 2px;
    font-size: 20px;
    display: inline;
}
    .deco-02 img {
        position: absolute;
        top: -55px;
        right: 26px;
        height: auto;
        width: 100px;
        animation: pulsate 9.5s ease-in-out infinite;
    }
	#maps {
    display: block;
    max-width: 1024px;
    margin: auto;
    padding: 25px;
}
	    .newsbeitrag.blog {
        max-width: calc(100% - 20px);
        margin: 10px;
        height: 200px;
	}
    .deco-01 img {
        height: 142px;
        right: 31px;
        left: unset;
        z-index: 4;
    }
	    .deco-03 img {
        position: absolute;
        top: -9px;
        right: -29px;
        height: 100px;
        width: auto;
        transform: rotate(25deg);
        animation: pulsate 15.5s ease-in-out infinite;
    }
	#merhinfos {
	}
	    div#parallax {
        margin-top: 0;
    }
div#header-decoration {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
    height: 250px;
    width: 135px;
}
	    .menu-btn {
        background: none;
    }
	.breaking-news {
    width: 100%;
    left: 0;
    top: 0;
    text-align: center;
    position: relative;
    margin: 62px 0 0 0;
}
	.custom-fields.details {
    width: 100%;
    display: block;
    font-size: 18px;
    padding: 20px;
    line-height: 150%;
}
	.newsbeitrag.kaufen {
    width: calc(100% - 40px);
    margin: 20px 20px;
}
	.realestateeinleitung {
    display: block;
}
	.custom-field.startbild {
    width: 100%;
}
    #mehr1, #mehr2, #mehr3 {
        width: 100%;
        text-align: left;
    }
	#tutti {
        padding: 74px 3px 10px 4px;
    }
	#mehr1 h2 {
		text-align: left;
	}
	.img-fulltext-left img {
    width: auto;
    height: 100%;
}
    #mehr2 {
        display: none;
    }
	#mehr1 {
		background-color: unset;
		flex: 1;
		padding: 39px;
	}
	.brotbroesmeli li {
    padding: 5px 10px 5px 33px;
	}
.brotbroesmeli li:nth-child(2) {
    z-index: 90;
    padding: 5px 23px;
	}
	.item-image {
		width: 100%;
		float: unset;
		box-sizing: border-box;
		height: 155%;
		overflow: hidden;
	}
	.item-image img {
		padding: 0;
	}
	.leading-0 .text {
		width: 100%;
		float: left;
	}
	
	.column-1.span4, .column-2.span4, .column-3.span4, .column-4.span4 {
		width: 100%;
	}
	
	#prefoot1 {
		width: 100%;
	}
	  
	
	#prefoot2 {
		width: 100%;
	} 
	
	#footer1 {
		width: 100%;
		text-align: center;
		z-index: 4;
	}
	
	#footer2 {
		width: 100%;
	}
	
	#footer3 {
		text-align: center;
		width: 100%;
	}
	
	#totop{
		top: 0;
		margin:0;
	}
	
	#sidebar h3 {
		line-height: 150%;

	}
	


	.buttons .inhalt {
    padding: 30px;
	}
	
	.totop, .nachunten {
		display: none;
	}
	a.button, .ffp-feed-load-more-btn {
		padding: 10px 8px;
		width: auto;
	}
    .newsbild {
        height: 167px;
        width: 100%;
    }
	.introtext i {
		padding: 20px;
	}
	.textinhalt {
		padding: 9px;
	}
	.introtext.angebotsuebersicht {
		padding: 09px;
	}
	.angebotsuebersicht .newsbild {
		width: 100%;
		height: 167px;
		background-size: auto;
		margin: 0 0 10px 0;
	}
	.img-fulltext-left.standard {
		width: 100%;
		position: absolute;
	}
	.start {
		width: 100%;
		padding: 26px;
		position: relative;
		z-index: 6;
	}
	.img-fulltext-left::before {
		width: 100%;
		background: #202e66cc;
		border: unset;
	}
	.mod-articles-items.mod-list {
		display: flex;
		flex-wrap: wrap;
	}
	.mod-articles-item {
		width: 100%;
	}
	thead {
		font-size: 20px;
		height: 40px;
		line-height: 40px;
	}
    #merhinfos {
        display: block;
    }	
    #onthetop h1 {
        line-height: 131%;
        font-size: 29px;
    }
	#main-navigation .menu li a.circle {
    padding: 13px 3px;
    display: inline-block;
    position: fixed;
    top: 15px;
    left: 9px;
    padding: 0;
    height: 54px;
    width: 54px;
    text-align: center;
    line-height: 54px;
    font-size: 18px;
}
}

