/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================== RESET ======================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
input, textarea,/* textarea und input hinzugefügt, auf Grund von Darstellingproblemen im IE (Palliative Accessibilityversion: Textbox, Checkboxen und Radios 2px zu breit, sonst zählt IE6 bei textarea 1px dazu) */
table, caption, tbody, tfoot, thead, tr, th, td {

    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font: inherit;
    /* font-size: 100%; style entfernt, ist nur wichtig, wenn em verwendet wird */
    /* vertical-align: baseline; entfernt, gibt Probleme weil es sämtlichen Text nach unten ausrichtet */
    /* background: transparent; entfernt, ist in der neusten Meyer-Version auch nicht mehr enthalten */
}
body {
    line-height: 1;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ul {
    list-style: none;/* ol entfernt, da Zahlen für eine Liste angezeigt werden sollen */
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

:focus {
    outline: 0;
}

/* /* remember to highlight inserts somehow! */ */
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}

/* /* tables still need 'cellspacing="0"' in the markup */ */
table {
    /* border-collapse: collapse; entfernt, da damit die borders in der Bearbeitungsansicht des CMS verschwinden*/
    border-spacing: 0;
    border:solid 1px red;
}

/*====================================================================
                      ZUSÄTZLICHE CLEARINGSTYLES
=====================================================================*/

/* damit IE6 und 7 doppelte br's nicht verschlucken */
br {
    letter-spacing:normal;
}

/* line-height für Formular zurücksetzen, damit die Abstände nicht verzogen sind */
form, form td, form th, form input, form textarea, form select {
    line-height: 1;
}

/*  für Radio- und Checkboxen  die line-height in #content td überschreiben*/
.elm_form_radio td {
    line-height: 1 !important;
}


/* backgroundrepeat generell ausschalten
#page * {
    background-repeat: no-repeat;
} entfernt, da bei Shorthand-definition von background diese Angabe sowieso wieder überschrieben wird und teilweise in IE6 nicht funktioniert*/

/* verhindert Schriftgrössen-anpassung in IPhone */
html { -webkit-text-size-adjust:none; }








/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================== THEME ======================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */

html{
    --background: #ffffff;
    --text: #333333;
    --text-hover: #555;
    --link: #A21626;
    --link-hover: #444;
    --link-visited: #A21626;
    scroll-behavior: smooth;
}
/* dark theme colors */
html[data-theme='light']{
}

html {
    background: var(--background);
    overflow-x: hidden;
}
body{
    background: var(--background);
    color: var(--text);
    font-size: 1.1em;
    line-height: 1.2em;
    font-family: "Open Sans", Verdana, Arial, sans-serif;
    letter-spacing:0.05em;
    display:flex;
    min-height: 100vh;
    flex-direction: column;
}


main {
    flex: 1;
    padding-top:30px;
    margin-bottom:30px;

}

main ul {
    margin:0;
    padding:0;
    margin-bottom:20px;

}

main li {
    padding-left:15px;
    margin-bottom:5px;
}


main li:before:not(.kachel) {
    content: "-";
    margin-right: 0.5em;
    margin-left:-10px;
}


figure {
    margin:0;
    padding:0;
    overflow:hidden;
}

figure img.rsImg {
    border: 0;
    height: auto;
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
}




h1 {
    color: var(--text);
    font-family: "Open Sans Condensed", sans-serif, arial, verdana;
    font-size: 3em;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.2em;
    margin-bottom: 15px;
    margin-top: 15px;
    width:100%;

}
h2, .pub-el-text-title, .pub-tth-h2, .form_elm_group, .pub-el-title, .pub-listpage-title-top, .pub-listpage-title {
    /*background-color:#efefef;*/
    border-radius: 5px;
    color: var(--text);
    font-family: "Open Sans Condensed", sans-serif, arial, verdana;
    font-size: 1.8em;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1em;
    margin-bottom: 14px;
    margin-top:25px;
    margin-left:0px;
    padding:5px 0px 5px 0px;
    width:100%;

}
h2:not(:first-of-type) {
    margin-top: 50px;
}
h3 {
    color: var(--text);
    font-family: "Open Sans Condensed", sans-serif, arial, verdana;
    font-size: 1.2em;
    line-height: 1.5em;
    font-weight: 700;
    margin-bottom:10px;
    width:100%;
}
h4 {
    color: var(--text);
    font-family: "Open Sans Condensed", sans-serif, arial, verdana;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    width:100%;
}
h5 {
    color: var(--text);
    font-family: "Open Sans Condensed", sans-serif, arial, verdana;
}
h6 {
    color: var(--text);
    font-family: "Open Sans Condensed", sans-serif, arial, verdana;
}
@media screen and (max-width: 959px) {
    h1 {
        font-size: 60px;
        line-height: 60px;
    }
}
@media screen and (max-width: 639px) {
    h1 {
        font-size: 40px;
        line-height: 40px;
    }
}


p {
    margin-bottom:20px;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-danger{
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}



.debug {border:solid 1px red !important}

.text_white,
.text_white h1,
.text_white h2,
.text_white h3,
.text_white h4,
.text_white h5,
.text_white h6{
    color: #FFF !important;
}

.width_70{
    width: 70%;
}
.width_50{
    width: 50%;
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 959px) {
    .width_70{
        width: 100%;
    }
    .width_50{
        width: 70%;
    }
}
@media screen and (max-width: 639px) {
    .width_50{
        width: 100%;
    }
}


a, a:link, a:visited, a:hover,a:active{
    color: var(--link);
}
a:hover{
    color: var(--link-hover);
}

a:visited{
    color: var(--link-visited);
}


ul.speciallist {
    list-style-type: none !important;
}

ul.speciallist a, ul.speciallist a:link, ul.speciallist a:visited, ul.speciallist a:hover,ul.speciallist a:active,
a.specialbutton, a.specialbutton:link, a.specialbutton:visited, a.specialbutton:hover,a.specialbutton:active{
    color: white;
    transition: all 0.25s linear;
    background-color:var(--link);
    border-radius: 10px;
    padding:5px 10px 4px;
    display:inline-block;
}

ul.speciallist a:hover,
a.specialbutton:hover{
    background-color: var(--link-hover);
    text-decoration: none;
}

ul.speciallist a:visited,
a.specialbutton:visited{
    background-color: var(--link-visited);
}

ul.speciallist a::after,
a.specialbutton::after{
    font-family: "FontAwesome";
    font-weight: 400;
    font-size:0.5em;
    padding-left:25px;
    content: "\f054";
    position: relative;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}



ul.speciallist li {
    margin-left:0px !important;
    margin-bottom:10px;
    padding-left:0px;
}

ul.speciallist span {
    background-color:#eee;
    border-radius: 10px;
    padding:5px 10px 6px;
    display:inline-block;
}




em{
}
p{
    margin-top: 0;
}
a, :focus {
    outline: none;
}

a.language {
    color:#fff;
    font-family: 'Open Sans Condensed', sans-serif, arial, verdana;
    font-size:1em;
    letter-spacing: 0.05em;
}

.pageHeaderGradientTop,
.pageHeaderGradientBottom{
    display: none;
}
.noHeaderImage{
    background: #394854;
}
.noHeaderImageLight{
    background: #F5F7F9;
}

.topBarLogoImg img {
    width: 100%;
    min-width: 200px;
    max-width: 300px;
    height: auto;
    margin-top: 10px;
    margin-bottom: 40px;
}


.darkBg{
    background: #394854;
}
.darkLightBg{
    background: linear-gradient(180deg, rgb(57, 72, 84) 0%, rgb(57, 72, 84) 50%, rgb(245, 247, 249) 50%, rgb(245, 247, 249) 100%);
}
@media screen and (max-width: 959px) {
    .darkLightBg {
        background: linear-gradient(180deg, rgb(57, 72, 84) 0%, rgb(57, 72, 84) 50%, rgb(245, 247, 249) 90%, rgb(245, 247, 249) 100%);
    }
}

ul.wp-block-list:not(.speciallist), .spec-list ul {
    list-style: none;
    padding-left: 1em;
}

ul.wp-block-list:not(.speciallist) li::before, .spec-list ul li::before  {
    content: "-";
    margin-right: 0.5em;
    color: inherit;
}









/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================== HEADER ======================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */

header {

}

/* header */
header.pageHeader{
    /* height: 100vh; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background: rgb(2,0,36) !important;
    background: linear-gradient(110deg, rgba(2,0,36,1) 0%, rgba(21,68,84,1) 85%, rgba(0,0,0,1) 100%) !important;


    position: relative;


}


div.mainnavi>img.topBarLogoImgWhitesmall {
    display:none;
    float:left;
}
div.uk-active>div.mainnavi>img.topBarLogoImgWhitesmall {
    display:block;
}








/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================== Navigation ======================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */

/* ------------------------------ */
/* Mainnavigation                 */
/* ------------------------------ */

div.mainnavi {
    font-family: "Open Sans Condensed", Verdana, Arial, sans-serif;
    padding-left: 42px;
}



div.mainnavi nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

div.mainnavi nav li {
    display: inline-block;
    position: relative;
}

header nav a, header nav a:link, header nav a:visited, header nav a:hover, header nav a:active{
    display: block;
    padding: 0 10px;
    line-height: 50px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    white-space:nowrap;
}

div.mainnavi nav ul ul {
    background-color: #010726;
    position: absolute;
    top: 49px;
    left: 0px;
    display: none;
}

div.mainnavi nav ul li:hover > ul {
    display:block;
}

div.mainnavi nav ul ul li {
    min-width:300px;
}

div.mainnavi nav ul ul a {
    font-size:24px;
}

div.mainnavi nav ul ul ul{
    top: 0;
    left: 300px;
}

div.mainnavi nav a:hover {
    background-color:#fff;
    color:#010726;
    text-decoration:none;
}

div.uk-active.topBarMainnavi {
    background-color:#010726;

}
div.uk-active>div.mainnavi {
    padding:40px 30px 35px;
}

div.uk-active>div.mainnavi nav {
    padding-left:180px;
}






/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================== Navigation Mobile ======================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */

/* ------------------------------ */
/* Mainnavigation                 */
/* ------------------------------ */

#mainnavimobile {
    position: fixed;height: 100vh;width:100%;background-color:#010726;display:none;z-index:1000;
}

div.mainnavimobile {
    font-family: "Open Sans Condensed", Verdana, Arial, sans-serif;
}


div.mainnavimobile a, div.mainnavimobile a:link, div.mainnavimobile a:visited, div.mainnavimobile a:hover, div.mainnavimobile a:active{
    display: block;
    padding: 0 10px;
    line-height: 50px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    white-space:nowrap;
}

div.mainnavimobile li.menu-item-has-children ul {
    display:none;
}

div.mainnavimobile li.current-menu-ancestor>ul {
    display:flex;
    flex-direction: column;
}


div.mainnavimobile li.current-menu-parent>ul {
    display:flex;
    flex-direction: column;
}

div.mainnavimobile li.current-menu-item>ul {
    display:flex;
    flex-direction: column;
}

div.mainnavimobile li.current-menu-ancestor>ul li {
    padding-left:40px;
}

div.mainnavimobile li.current-menu-parent>ul li {
    padding-left:40px;
}

div.mainnavimobile li.current-menu-item ul li {
    padding-left:40px;
}

div.mainnavimobile nav a:hover {
    background-color:#fff;
    color:#010726;
    text-decoration:none;
}



.topBarMobileIconLink {
    color:white;
}

.topBarMobileIconLink:hover {
    color:#ddd;
}

.topBarCloseIcon {
    padding-top:110px;
}
.topBarCloseIcon:hover {
    cursor:pointer;
}





/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================== Gravity ======================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */

/* gravity forms */
.gform_wrapper.gravity-theme .gfield_label{
    color: #8C9AA5;
    font-size: 14px;
    line-height: 16px;
    font-family: "Open Sans", Verdana, Arial, sans-serif;
    font-weight: 500;
}
.gform_wrapper.gravity-theme input[type="text"],
.gform_wrapper.gravity-theme input[type="email"]{
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    color: #FFF;
    font-size: 24px !important;
    line-height: 26px !important;
    font-family: "Open Sans", Verdana, Arial, sans-serif;
    font-weight: 500 !important;
    background: transparent !important;
    padding: 10px 0 !important;
    margin-bottom: 30px !important;
}
.gform_wrapper.gravity-theme textarea{
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    color: #FFF;
    font-size: 24px !important;
    line-height: 26px !important;
    font-family: "Open Sans", Verdana, Arial, sans-serif;
    font-weight: 500 !important;
    background: transparent !important;
    padding: 10px 0 !important;
    height: 50px;
    margin-bottom: 30px !important;
    overflow: hidden;
}
.gform_wrapper.gravity-theme input[type="text"]::placeholder,
.gform_wrapper.gravity-theme input[type="email"]::placeholder,
.gform_wrapper.gravity-theme textarea::placeholder {
    color: #8C9AA5;
}


.gform_wrapper.gravity-theme input[type="text"]:focus,
.gform_wrapper.gravity-theme textarea:focus{
    border-bottom: 1px dashed rgba(255, 255, 255, 1);
}
.gform_wrapper.gravity-theme .gform_footer input{
    font-size: 16px;
    line-height: 16px;
    font-family: "Open Sans", Verdana, Arial, sans-serif;
    font-weight: 500;
    background: #fff;
    padding: 15px 50px;
    color: #394854;
    border-radius: 30px;
    border: none;
    margin-top: 20px !important;
    cursor: pointer;
}
.gform_wrapper.gravity-theme .gfield-choice-input + label{
    font-size: 14px;
    line-height: 14px;
    font-family: "Open Sans", Verdana, Arial, sans-serif;
    font-weight: 500;
    color: #8C9AA5;
}
.gform_wrapper.gravity-theme .gfield-choice-input + label a{
    font-size: 14px;
    line-height: 14px;
    font-family: "Open Sans", Verdana, Arial, sans-serif;
    font-weight: 500;
    color: #8C9AA5;
    text-decoration: underline;
}



/*
 * custom checkbox
 */
.gfield_checkbox>div input[type="checkbox"] {
    opacity: 0;
}
.gfield_checkbox>div label {
    position: relative;
    display: inline-block;
    position: relative;
    left: -25px;
    padding-left: 25px;
}
.gfield_checkbox>div label::before,
.gfield_checkbox>div label::after {
    position: absolute;
    content: "";
    display: inline-block;
}
/*Outer box of the fake checkbox*/
.gfield_checkbox>div label::before{
    height: 16px;
    width: 16px;
    border: 1px solid;
    left: 0px;
    top: -2px;
}
/*Checkmark of the fake checkbox*/
.gfield_checkbox>div label::after {
    height: 5px;
    width: 9px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    left: 4px;
    top: 2px;
    color: #FFF;
}
/*Hide the checkmark by default*/
.gfield_checkbox>div input[type="checkbox"] + label::after {
    content: none;
}
/*Unhide on the checked state*/
.gfield_checkbox>div input[type="checkbox"]:checked + label::after {
    content: "";
}
/*Adding focus styles on the outer-box of the fake checkbox*/
.gfield_checkbox>div input[type="checkbox"]:focus + label::before {
    /* outline: rgb(59, 153, 252) auto 5px; */
}





/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================== footer ======================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* footer */
footer{
    /*background-image: linear-gradient(#1E262E, #3F4E5A);
    padding: 125px 0 70px 0;
    color: #fff;
    position: relative;
    overflow-x: hidden;*/
    background-color: #fff;
    background-color: #0b2f3b;
    margin-top: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
}
/*#footerLogo{
    position: absolute;
    top: -2%;
    right: -1%;
    background-image: url('/wp-content/themes/vacportal/assets/images/Vacportal-Logo-de.svg');
    background-repeat: no-repeat;
    width: 50%;
    height: 100%;
    background-size: contain;
    background-position: right top;
}*/



footer address,
footer address a {
    color:#fff;
    font-weight:normal;
    font-size:15px;
    display:flex;
    flex-direction: column;
}

footer address .company {
    font-family: 'Open Sans Condensed', sans-serif, verdana,arial;
    font-weight:700;
    font-size: 1.2em;
    letter-spacing: 0.1em;
    line-height:1.5em;
}

footer address .mail_label {
    display: none;
}

footer .verkaufsstellen {
    margin-top:25px;
    font-size: 15px;
}

footer .verkaufsstellen a::before {
    font-family: "FontAwesome";
    font-weight: 400;
    content: "\f0a9 \00a0";
}

footer .shout {
    color:white;
    font-weight:bold;
    font-size:1.6em;
    line-height:1.5em;
}

footer .wrapper_copyright {
    border-top: 1px solid #b3b6c4;
    color:#fff;
    font-size: 13px;
    font-weight: 400;
    margin: 20px 5px;
    padding-top:10px;
    text-align:center;

}

/* ------------------------------ */
/* Footernavigation                 */
/* ------------------------------ */

footer div.mainnavi {
    font-family: "Open Sans Condensed", Verdana, Arial, sans-serif;
}

footer nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
    display:flex;
    flex-direction: column;
}

footer nav li {
    display: inline-block;
    position: relative;
    padding:5px 0px;
}

footer a, footer a:link, footer a:visited, footer a:hover, footer a:active {
    display: block;
    color: #fff;
    font-size: 1em;
    text-decoration: none;
    white-space:nowrap;
}

footer a:hover  {
    background-color:transsparent;
    text-decoration: underline;
}



footer nav ul ul {
    display: none !important;
}

@media screen and (max-width: 768px) {
    footer{
        padding: 30px 0;
    }
}

/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================== Products ======================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================= */
/* === PAGETEMPLATE ARTICLE                                                */
/* ======================================================================= */


.article.list_items .row.item .art_box {
    background-color: #efefef;
    border: solid 1px #cdcdcd;
    margin-top: 30px;
    padding: 10px;
}
.article.list_items .row.item .art_box ul {
    width: 100%;
}

.article.list_items .row.item .art_box .image .contentbox {
    margin-right: 20px;
    margin-bottom: 20px;
}

.article.list_items .row.item .art_box .content {

}


.article.list_items .row.item .art_box .content .contentbox .listcattitle {
    font-family: 'Open Sans Condensed', sans-serif, verdana, arial;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding-bottom: 8px;
}


h2.listcattitle a {
    font-size:0.8em;
}

.customapp_startpage_link_02 i {
    padding-right:10px;
}



#products img, #specs img{
    margin-top:00px;
    max-width:450px;
    min-width:450px;
}

#products ul.article_infos {
    list-style-type: none;
    border-top: solid 1px #d14b52;
    border-bottom: solid 1px #d14b52;
    padding: 10px 0px 10px 0px;
    margin-top: 15px;
}

#products  li:before{
    content: "" ; /* en dash here */
    position: absolute;
    margin-left:0;
}

#products p.backlink {
    margin-top: 20px;
}

#products a.articleback:before {
    content: "\00ab\00a0";
}

#products h3 {
    font-weight: bold;
    margin-top:15px !important;
    margin-bottom:5px !important;
}


#products .form-group .art_box {
    margin-bottom: 8px;
}

#products a.articleback:before {
    content: "\00ab\00a0";
}

#products p + p, #products h3 + p {
    margin-bottom:0px;
    margin-top:0px;
    line-height:1.3em;
}

#products p b {
    font-weight: bold;
}

div.table {
    display: table;
    background-color: #efefef;
    border-collapse: collapse;
    width:100%;
}

div.table div.tr {
    display: table-row;
}


div.table div.td {
    display: table-cell;
    border: 1px solid #aaa;
    font-size: 1em;
    padding: 10px;

}

div.table div.td.caption {
    background-color: #dfdfdf;
    font-weight: bold;
    text-align:left;
}


#pricelist {
    margin-bottom:20px;
}

#pricelist table {
    width: 100%;
    min-width: 100%;
    margin-top:30px;
    border-collapse: collapse;
}


#pricelist table th,
#pricelist table td {
    border: 1px solid #b5b5b5;
    color: #333333;
    font-weight:bold;
    background-color: #b5b5b5;
    padding:8px;
}

#pricelist table th.head1, #artprices.table th.top {
    font-weight: bold;
    font-size:1.1em;
}

#pricelist table th.head1,
#pricelist table td.head1 {
    background-color: #dfdfdf;
    width: 20%;
}

#pricelist table td.cont3 {
    background-color: #f0f0f0;
}

#pricelist table td {
    padding:8px;
    font-weight: normal;
}

#pricelist .empty {
    background-color:transparent;
    border: none;
}


#orderform {
    margin-bottom:20px;
}

#orderform table {
    width: 100%;
    min-width: 100%;
    margin-top:30px;
    border-collapse: collapse;
}


#orderform table th,
#orderform table td {
    border: 1px solid #b5b5b5;
    color: #333333;
    font-weight:bold;
    padding:8px;
    vertical-align: top;
    font-size:1.1em !important;
    text-transform: none;
}

#orderform table th.text-right,
#orderform table td.text-right {
    text-align:right;
}

#orderform table th.head1, #artprices.table th.top {
    font-weight: bold;
}

#orderform table th.head1,
#orderform table td.head1 {
    background-color: #dfdfdf;
    width: 20%;
}

#orderform table td.cont3 {
    background-color: #f0f0f0;
}

#orderform table td {
    padding:8px;
    font-weight: normal;
}

#orderform .empty {
    background-color:transparent;
    border: none;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align:center;
}

input:read-only {
    border:none;
}

input.quantity {
    width: 50px;
    border:solid 1px #333;
    border-radius:3px;
    padding:5px;
}


ul.article_infos li {
    padding:10px;
    margin-bottom:3px;
    background-color:#efefef;
}

.article_box b {
    font-weight:bold;
}


div.contentbox ul{
    list-style-type: none;
    margin-left:15px;
}



div.contentbox ul > li:before {
    content: "-" ; /* en dash here */
    position: absolute;
    margin-left: -1.1em;
}

div.orderbox {
    border-top: solid 1px #d14b52;
    border-bottom:solid 1px #d14b52;
    padding:0px;
    padding-top:10px;
    padding-bottom:10px;
    margin-top: 15px;
}



/*
div.cmsarticle {
    background-color:blue;
    width:100%;
    float:left;
}

div.cmsarticle_right {
    width:220px;
    float:right;
    background-color:red;
}

div.cmsarticle_left {
    width:350px;
    float:left;
    background-color:green;
}

div.cmsarticle_img {
    border:dotted 1px #efefef;
    text-align:center;
}

input.cmsarticle_counts {
    width:50px;
}

label.cmsarticle_label {
    width:50px;
    display:block;
    float:left;
}*/







/* Product list */
h2.listcattitle {
    padding:0px;
    margin:0px;
}

div.box-content {
    margin-bottom:30px;
}

div.box h2.listcattitle {
    padding:0px;
    margin:0px ;
    line-height: 1.2em;
    margin-bottom:10px;
    background-color:transparent;
}

div.box h2.listcattitle a {
    color:#444;
    transition: none;
}

div.box h2.listcattitle a:hover,
div.box h2.listcattitle a:active,
div.box h2.listcattitle a:focus {
    text-decoration:underline;
}


.productlistclick {
    border:solid 1px #dcdcdc;
    background-color:#efefef;
    margin-bottom:20px !important;
    padding:10px;
    border-radius:3px;
}


/*div.box.flex {*/
/*  display: flex;*/
/*  justify-content:space-between;*/
/*  align-content: space_between;*/
/*  gap:20px;*/
/*  border-radius:3px;*/

/*}*/

.productlistclick:hover{
    cursor:pointer;
    background-color:#ddd;
}

.productlistclick ul {
    margin-bottom:10px;
}

p.prodlead {
    padding-bottom:20px;
}

div.contImg {
    float:left;
    border:solid 1px;
    min-width:150px;
}

div.contentbox {
    margin-left:10px;
    border:solid 1px;
}

p.listcatlink {
    margin-top:10px;
}






/* =========================================== */
/* Youtube lighbox */
/* =========================================== */


.video-small {
    width: 100%;
    cursor: pointer;
}
/* optional als css statt inline */
.video-small { width:100%; cursor:pointer; position:relative; }
.video-small iframe { width:100%; aspect-ratio:16/9; border:0; display:block; }
.video-trigger { position:absolute; inset:0; border:0; background:transparent; cursor:pointer; }


/* lightbox overlay */
.yt-lightbox {
    position: fixed;
    inset: 0;
    display: none;           /* versteckt bis geöffnet */
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.7);
    z-index: 9999;
    opacity: 0;
    transition: opacity .25s ease;
}
.yt-lightbox.is-open { display: flex; opacity: 1; }

.yt-lightbox__content {
    width: min(90vw, 1200px);
    aspect-ratio: 16 / 9;
    background: #000;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.4);
}
.yt-lightbox__content iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.yt-close {
    position: absolute;
    top: 8px;
    right: 8px;
    border: 0;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    padding: .6rem .8rem;
    border-radius: 999px;
    cursor: pointer;
}

.prodlist li{
    padding-left:15px;
}




/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================== Infoblock ======================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
div.infoblock {
    margin-bottom:35px;
    background-color:#e3e4ea;
    border:solid 1px #e0e0e0;
}

div.infoblock p {
    font-weight:bold;
    padding:10px;
    padding-left:15px;
    background-color:#e0e0e0;
    margin-bottom:4px;
}

div.infoblock ul, div.infoblock ul.wp-block-list {
    padding:0px 0px;
    margin:0px;
    list-style-type: none !important;
}
div.infoblock ul li {
    border-top:solid 1px #e0e0e0;
    padding:10px 15px 10px 55px;
    margin-left:0px;
}

div.infoblock ul li:before {
    content: url('/wp-content/themes/vacportal/assets/images/check.svg') !important;
    display:inline-block !important;
    width: 15px;
    height: 15px;
    margin-left:-35px;
    padding-right:15px;
    filter: invert(50%);
}

div.infoblock ul li:first-child {
    border-top:none;
}

div.infoblock div.infotitle {
    font-weight:bold;
    padding:10px;
    padding-left:15px;
    margin-bottom:4px;
    background-color:#e0e0e0;
}

.wp-block-group {
    width:100%;
}






/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================== Custom ======================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */



a.button_widget, a.button_widget:link, a.button_widget:visited, a.button_widget:hover,a.button_widget:active{
    color: white;

    background-color:var(--link);
    border-radius: 5px;
    padding:10px 20px;
    display:inline-block;
}

a.button_widget:visited{
    background-color: var(--link-visited);
}


a.button_widget:hover{
    background-color: var(--link-hover);
    text-decoration: none;
    transition: all 0.25s linear;
}


a.button_widget::after {
    font-family: "FontAwesome";
    font-weight: 400;
    font-size:0.7em;
    padding-left:25px;
    content: "\f054";
    position: relative;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* ====================================================================== */
/* === ELEMENT KONTAKTBOX   STYLES                                        */
/* ====================================================================== */

.contactbox {
    align-items:center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /*background: linear-gradient(110deg, rgba(2, 0, 36, 1) 0%, rgba(21, 68, 84, 1) 55%, rgba(0, 0, 0, 1) 100%) !important;*/
    background:#a21626;
    color:#fff;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-family: "Open Sans Condensed", sans-serif, arial, verdana;
    font-size:1.3em;
    font-weight:bold;
    justify-content:space-between;
    letter-spacing: 0.05em;
    line-height: 1.2em;
    margin-bottom:20px;
    overflow: hidden;
    width:100%;

}




div.buttonarea {
    padding:50px 0px 20px;
}


.contactbutton {
    display: inline-block;
    outline: 0;
    border: 0;
    cursor: pointer;
    will-change: box-shadow,transform;
    /*background: radial-gradient( 100% 100% at 100% 0%, #ff8989 0%, #bc2f2f 100% );*/
    background:#b54551;
    box-shadow: 0px 2px 4px rgb(45 35 66 / 40%), 0px 7px 13px -3px rgba(66, 35, 39, 0.3), inset 0px -3px 0px rgb(111 58 58 / 50%);
    padding: 0 32px;
    letter-spacing:0.05em;
    border-radius: 6px;
    color: #fff;
    height: 48px;
    font-size: 18px;
    text-shadow: 0 1px 0 rgb(0 0 0 / 40%);
    transition: box-shadow 0.15s ease,transform 0.15s ease;
}

.contactbutton:hover {
    /*box-shadow: 0px 4px 8px rgba(66, 35, 35, 0.4), 0px 7px 13px -3px rgb(66 35 35 / 30%), inset 0px -3px 0px #6c2121;*/
    background:#be5c68;
    transform: translateY(-2px);
}

.contactbutton:active {
    box-shadow: inset 0px 3px 7px #6c2121;
    transform: translateY(2px);
}


a.contbox,a.contbox:link,a.contbox:visited,a.contbox:hover,a.contbox:active{
    color:#fff;
    text-decoration: none;
}
a.contbox:hover{
    text-decoration: none;
    text-decoration: underline;
}



/* section.einsatzgebiete */
section.einsatzgebiete {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    padding: 0rem;
}


@media (max-width: 600px) {
    section.einsatzgebiete {
        grid-template-columns: 1fr; /* eine Spalte */
    }
}

section.einsatzgebiete a.kachel {
    flex-grow: 1;
    margin-bottom:2em;
    border-radius: 5px;
    padding:0;
    color:white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.gradient-background {
    position: relative;
    overflow: hidden;
}

.gradient-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(360deg, #0a3e4f, #0a4153, #0b2f3b, #010a0d, #000000);
    animation: gradient-animation 8s ease infinite;
    z-index: 0;
}

.gradient-background > * {
    position: relative;
    z-index: 1;
}

@keyframes gradient-animation {
    0%   { transform: translate(0%, 0%); }
    50%  { transform: translate(10%, 15%); }
    100% { transform: translate(0%, 0%); }
}

section.einsatzgebiete a.kachel:hover {
    text-decoration: none;
}


section.einsatzgebiete .card-content {
    padding:20px;
}

section.einsatzgebiete h3  {
    font-family: "Open Sans Condensed", sans-serif, arial, verdana;
    font-size: 1.2em;
    line-height: 1.5em;
    font-weight: 700;
    margin-bottom: 10px;
    width: 100%;
    color:white;
}

section.einsatzgebiete .innertext {
    color:white;
    margin-bottom:10px;
    text-align: left;
}


section.einsatzgebiete .imgouter {
    min-height:calc(20vw);
    max-height:250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 4px 60px -17px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 4px 60px -17px rgba(0,0,0,0.75);
    box-shadow: 0px 4px 60px -17px rgba(0,0,0,0.75);
}

section.einsatzgebiete .imginner {
    background-size: cover;
    max-width:100%
}

section.einsatzgebiete a:hover .imginner  {
    cursor:pointer;
    transform: scale(1.1);
    transition: all .5s;
}

section.einsatzgebiete ul {
    list-style-type: disc;
    paddin-left:20px;
    margin-left:20px;
    margin-bottom:0px;
}

@media(min-width: 900px){

    div.buttonarea {
        padding:0px;

    }
}


@media(max-width: 900px){
    .contactbox {
        flex-direction:column;
        text-align: center;
    }
}

.hero-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; /* reserviert Platz → kein CLS */
    overflow: hidden;
}

.hero-image, .backgroundvideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease-in-out;
}

.hero-image {
    z-index: 1;
    opacity: 1;
}

.backgroundvideo {
    z-index: 2;
    opacity: 0; /* unsichtbar bis JS es einblendet */
}

