/* Entfernt den grauen Hintergrund für ALLE Module */
.ttr_block,
.ttr_block_content,
.ttr_block_content_inner {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}
div.mod-languages ul li.lang-active {
    background: none !important;
    background-color: transparent !important;
	border: 1px solid #aca9a9 !important;
    box-sizing: border-box !important;
}
#ttr_content_margin {
    background-image: url("../images/grau-schimmernd.jpg") !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: transparent !important;
	border: 1px solid #000000 !important;
    box-sizing: border-box !important;
	/* Neuer Schatten */
    box-shadow: 0 0 10px rgba(0,0,0,0.4) !important;
}
.ttr_post {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
#ttr_content .ttr_page_title,
#ttr_content .ttr_page_title a {
    font-size: 0px !important;
    margin-top: 3px !important;
    margin-bottom: 3px !important;
}
body #ttr_content table th,
body #ttr_content table td {
    border-color: transparent !important;
	padding: 2px !important;
}
.custom-file-label::before,
.btn,
.btn:focus,
.btn.btn-default,
.btn.btn-deafult:focus {
    background: transparent !important;
    background-color: transparent !important;
}
.custom-file-label::before,
.btn,
.btn:focus {
    padding: 4px 10px 4px 10px !important;
}

.ttr_post div {
    background: transparent !important;
}

/* Flexbox-Layout für bis zu 6 Module (3 pro Reihe) */

/* Flex-Container */
.flexrow {
    display: flex;
    flex-wrap: wrap;                     /* mehrere Zeilen erlauben */
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;         /* verhindert Zentrier-Überlauf rechts */
    width: 100%;
}

/* Flex-Items (Module) */
.flexrow > * {
    flex: 0 1 28%;          /* drei Module pro Reihe, ohne Überlauf */
    min-width: 0;
    box-sizing: border-box;
    margin: 0;
    text-align: left;
}


/* Bilder responsiv + Abstand */
.flexrow img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 12px;
}

/* TemplateToaster-Wrapper neutralisieren */
.flexrow .ttr_module,
.flexrow .ttr_content,
.flexrow .mod-custom,
.flexrow .moduletable {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
    overflow: visible !important;
    white-space: normal !important;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
    .flexrow > * {
        flex: 0 1 100%;                  /* Handy: 1 Modul pro Reihe */
    }
}

/* -----------------------------------------------------------
   ScrollPlus komplett entschärfen (Karussell deaktivieren)
   ----------------------------------------------------------- */
.scrollplus-view,
.scrollplus-content,
.scrollplus-dock {
    white-space: normal !important;   /* verhindert 1-Spalten-Zwang */
    overflow: visible !important;     /* verhindert Abschneiden */
    display: block !important;        /* verhindert Slider-Layout */
    transform: none !important;       /* deaktiviert horizontales Schieben */
}

/* -----------------------------------------------------------
   SIGPLUS Bilddarstellung stabilisieren
   ----------------------------------------------------------- */
.sigplus-preview {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* -----------------------------------------------------------
   Caption-Mechanik von SIGPLUS deaktivieren + zentrieren
   ----------------------------------------------------------- */
.captionplus-align,
.captionplus-horizontal-center,
.captionplus-vertical-center {
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

/* Caption fett */
.captionplus-align > div {
    font-weight: bold !important;
}

/* -----------------------------------------------------------
   3 → 2 → 1 Spalten Grid für SIGPLUS/ScrollPlus
   ----------------------------------------------------------- */

/* 3 Spalten */
.scrollplus-content ul {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    list-style: none !important;
}

/* 2 Spalten */
@media (max-width: 900px) {
    .scrollplus-content ul {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* 1 Spalte */
@media (max-width: 600px) {
    .scrollplus-content ul {
        grid-template-columns: 1fr !important;
    }
}

/* LI-Elemente im Grid */
.scrollplus-content ul li {
    width: auto !important;
    max-width: none !important;
    display: block !important;
    text-align: center !important;
}

.scrollplus-content ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .scrollplus-content ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .scrollplus-content ul {
        grid-template-columns: 1fr;
    }
}

.scrollplus-content ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .scrollplus-content ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .scrollplus-content ul {
        grid-template-columns: 1fr;
    }
}
/* SIGPLUS Scrollplus-Fix: verhindert Abschneiden */
.scrollplus-container,
.scrollplus-content,
.scrollplus-view,
.scrollplus-dock {
    overflow: visible !important;
    width: 100% !important;
    max-width: 100% !important;
    position: static !important;
}

.sigplus-preview {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* verhindert Flex-/Center-Mechanik von SIGPLUS */
.captionplus-align,
.captionplus-horizontal-center,
.captionplus-vertical-center {
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

/* Caption-Text fett setzen */
.captionplus-align > div {
    font-weight: bold !important;
}

/* SIGPLUS: saubere Caption-Zentrierung im Handyformat */
.scrollplus-content ul,
.scrollplus-content ul li {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
}

.breadcrumb {
  background-color: transparent !important;
  background: transparent !important;
  padding: 0 !important;
  font-size: 12px !important;
  box-shadow: none !important;
  border: none !important;
}
#ttr_content .breadcrumb span,
.breadcrumb span {
  font-size: 12px !important;
}
/* +++++ Ab hier Anpassungen Kontaktformular ++++ */
/* H2-Anpassung global + Footer + Sidebar */
h2,
h2 a:not(.btn),
h2 a:not(.btn):hover,
h2 a:not(.btn):focus,
h2 a:not(.btn):visited,
footer#ttr_footer .html_content h2,
footer#ttr_footer .html_content h2 a:not(.btn),
footer#ttr_footer .html_content h2 a:not(.btn):hover,
footer#ttr_footer .html_content h2 a:not(.btn):visited,
footer#ttr_footer .html_content h2 a:not(.btn):focus,
body:not(.blog-wp) #ttr_sidebar_left .ttr_block .html_content h2,
body:not(.blog-wp) #ttr_sidebar_right .ttr_block .html_content h2 {
    font-size: 20px !important;
    font-family: Arial !important;
    font-weight: 400 !important;
    font-style: normal !important;
    color: #212529 !important;
    text-shadow: none !important;
    text-align: left !important;
    text-decoration: none !important;
    margin: 10px 0 !important;
}

/* H1-Anpassung global + Kontaktüberschrift */
h1,
h1 a:not(.btn),
h1 a:not(.btn):hover,
h1 a:not(.btn):focus,
h1 a:not(.btn):visited,
.page-header h1,
.page-header h1 .contact-name {
    font-size: 24px !important;
    font-family: Arial !important;
    font-weight: 700 !important;  /* fett */
    font-style: normal !important;
    color: #212529 !important;
    text-shadow: none !important;
    text-align: left !important;
    text-decoration: none !important;
}

/* Kontaktformular – Legend-Titel (alle Varianten abgedeckt) */
.com-contact fieldset legend,
.com-contact fieldset legend *,
.com-contact fieldset legend::before,
.com-contact fieldset legend::after {
    font-size: 16px !important;
    font-family: Arial !important;
    font-weight: 400 !important;
	font-style: italic !important;
    color: #212529!important;
}

/* Kontaktformular – Input-Felder transparent */
.com-contact input[type="text"],
.com-contact input[type="search"],
.com-contact input[type="password"],
.com-contact input[type="email"],
.com-contact input[type="url"],
.com-contact input[type="tel"],
.com-contact input[type="number"],
.com-contact select,
.com-contact textarea {
    background: #ccb254t !important;
    background-color: #ccb254 !important;
    box-shadow: none !important;
}

.com-contact input:focus,
.com-contact textarea:focus,
.com-contact select:focus {
    border-color: #212529 !important;
    box-shadow: 0 0 0 2px rgba(33, 37, 41, 0.2) !important;
}

.com-contact .control-label label {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #212529 !important;
}

/* Button normal + Fokus: schwarzer Text + schwarzer Rahmen */
.btn.btn-primary,
.btn.btn-primary:focus {
    color: #000000 !important;
    border-color: #4c4a4a !important;
}
/* Hover: grauer Text + grauer Rahmen */
.btn.btn-primary:hover {
    color: #555555 !important;        /* Text grau */
    border-color: #cecece !important; /* Rahmen grau */
}

/* ++++ Ab hier Anpassungen von Captcha ++++ */
.jd-captcha-input {
  height: 35px !important;
  padding: 2px 6px !important;
  font-size: 0.75rem !important;
  line-height: 1 !important;
}

.jd-captcha-image {
  height: 35px !important;
  width: auto !important;
  object-fit: contain;
}

.jd-captcha-input-container {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Refresh-Icon (SVG) */
.jd-capcha-reload-icon {
  height: 35px !important;
  width: 35px !important;
}
/* DJ Image Slider Urheberrechtstext */
.slide-desc-text-default {
  padding: 0 0 20px;
}

.html_content ul li {
  font-size: 14px;
  font-family: Arial;
  font-weight: 700;
}

#ttr_content ul:not(.pagination):not(.button-group ul.add-to-links):not(.ttr_prodes_Tab_Title):not(.wc_payment_methods):not(.products):not(.products ul.ttr_article):not(.product-images):not(.wc-block-grid__products):not(ul.add-to-links):not(.fabrikButtonsContainer .pull-left):not(.tags.inline):not(.tags.list-inline):not(.pager.pagenav),
.blog #ttr_content ul:not(.pagination):not(.order_details):not(.products),
.editor-styles-wrapper ul {
    text-indent: 0 !important;
}

body:not(.ttr_ecommerce) #ttr_content ul:not(.nav-pills), 
.editor-styles-wrapper ul {
    list-style-image: url(../images/HomeDesktoplistimg.png);
}

body:not(.ttr_ecommerce) #ttr_content ul:not(.nav-pills),
.editor-styles-wrapper ul {
    list-style-image: none !important;
    list-style-type: disc !important; /* oder circle, wenn du offene Kreise willst */
}
















