@font-face {
    font-family: "ZurichHead";
    src: url("../fonts/zurich/Zurich_BT_Roman.eot"); /* IE9 Compat Modes */
    src: url("../fonts/zurich/Zurich_BT_Roman.eot?#iefix")
            format("embedded-opentype"),
        /* IE6-IE8 */ url("../fonts/zurich/Zurich_BT_Roman.woff") format("woff"),
        /* Modern Browsers */ url("../fonts/zurich/Zurich_BT_Roman.ttf")
            format("truetype");
}

@font-face {
    font-family: "ZurichBold";
    src: url("../fonts/zurich/Zurich_BT_Bold.eot"); /* IE9 Compat Modes */
    src: url("../fonts/zurich/Zurich_BT_Bold.eot?#iefix")
            format("embedded-opentype"),
        /* IE6-IE8 */ url("../fonts/zurich/Zurich_BT_Bold.woff") format("woff"),
        /* Modern Browsers */ url("../fonts/zurich/Zurich_BT_Bold.ttf")
            format("truetype");
}

@font-face {
    font-family: "ZurichHead";
    src: url("../fonts/zurich/ZurichBT-LightCondensed-Head.eot"); /* IE9 Compat Modes */
    src: url("../fonts/zurich/ZurichBT-LightCondensed-Head.eot?#iefix")
            format("embedded-opentype"),
        /* IE6-IE8 */ url("../fonts/zurich/ZurichBT-LightCondensed-Head.woff")
            format("woff"),
        /* Modern Browsers */
            url("../fonts/zurich/ZurichBT-LightCondensed-Head.ttf")
            format("truetype");
}

@font-face {
    font-family: "ZurichHeadBold";
    src: url("../fonts/zurich/ZurichBT-BoldCondensed-Head.eot"); /* IE9 Compat Modes */
    src: url("../fonts/zurich/ZurichBT-BoldCondensed-Head.eot?#iefix")
            format("embedded-opentype"),
        /* IE6-IE8 */ url("../fonts/zurich/ZurichBT-BoldCondensed-Head.woff")
            format("woff"),
        /* Modern Browsers */
            url("../fonts/zurich/ZurichBT-BoldCondensed-Head.ttf")
            format("truetype");
}

@font-face {
    font-family: "FontAwesome";
    src: url("../fonts/font-awesome/fontawesome-webfont.eot?v=4.5.0");
    src: url("../fonts/font-awesome/fontawesome-webfont.eot?#iefix&v=4.5.0")
            format("embedded-opentype"),
        url("../fonts/font-awesome/fontawesome-webfont.woff2?v=4.5.0")
            format("woff2"),
        url("../fonts/font-awesome/fontawesome-webfont.woff?v=4.5.0")
            format("woff"),
        url("../fonts/font-awesome/fontawesome-webfont.ttf?v=4.5.0")
            format("truetype"),
        url("../fonts/font-awesome/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular")
            format("svg");
    font-weight: normal;
    font-style: normal;
}

/*--------------------------------------------------------------
# Reset
--------------------------------------------------------------*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
div {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}
mark {
    background: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
nav ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border: none;
    padding: 0;
}
input,
select {
    vertical-align: middle;
}
.clear {
    clear: both;
    margin: 0;
    padding: 0;
}
img {
    line-height: 0;
}

/*--------------------------------------------------------------
# Debug
--------------------------------------------------------------*/

.d {
    background-color: rgba(0,0,0,0.2);
    box-shadow: inset 0 0 4px #f00;
}

/*--------------------------------------------------------------
# Grid
--------------------------------------------------------------*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.container {
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}
.container-fluid {
    padding: 0 15px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    /* .container {
        width: 95%;
    } */
}
@media (min-width: 1050px) {
    .container {
        width: 90%;
    }
}
@media (min-width: 1500px) {
    .container {
        width: 1400px;
    }
}
@media (min-width: 2000px) {
    .container {
        width: 1700px;
    }
}

.row {
    margin: 0 -15px;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}
.center_columns {
    align-items: center;
}
.row .col {
    padding: 0px 15px;
    width: 100%;
}
.col_m1,
.col_m2,
.col_m3,
.col_m4,
.col_m5,
.col_m6,
.col_m7,
.col_m8,
.col_m9,
.col_m10,
.col_m11,
.col_m12 {
    width: 100%;
    padding: 0px 15px;
}

@media (min-width: 768px) {
    .row .col {
        flex: auto;
        width: auto;
    }
    .container-fluid {
        padding: 0px 30px;
    }
    .row .col_m1,
    .row .col_m2,
    .row .col_m3,
    .row .col_m4,
    .row .col_m5,
    .row .col_m6,
    .row .col_m7,
    .row .col_m8,
    .row .col_m9,
    .row .col_m10,
    .row .col_m11,
    .row .col_m12 {
        flex: none;
        padding: 0px 15px;
    }
    .row .col_m12 {
        width: 100%;
    }
    .row .col_m11 {
        width: 91.66666667%;
    }
    .row .col_m10 {
        width: 83.33333333%;
    }
    .row .col_m9 {
        width: 75%;
    }
    .row .col_m8 {
        width: 66.66666667%;
    }
    .row .col_m7 {
        width: 58.33333333%;
    }
    .row .col_m6 {
        width: 50%;
    }
    .row .col_m5 {
        width: 41.66666667%;
    }
    .row .col_m4 {
        width: 33.33333333%;
    }
    .row .col_m3 {
        width: 25%;
    }
    .row .col_m2 {
        width: 16.66666667%;
    }
    .row .col_m1 {
        width: 8.33333333%;
    }
}

@media (min-width: 1200px) {
    .container-fluid {
        padding: 0px 80px;
    }
}

/*--------------------------------------------------------------
# Product Protective Caps
--------------------------------------------------------------*/
.protective-caps {
    text-align: center;
    background: #f4f4f4;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #e1003a;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

.section_padding {
    padding: 80px 0px;
}
@media (max-width: 768px) {
    .section_padding {
        padding: 60px 0px;
    }
}
@media (max-width: 500px) {
    .section_padding {
        padding: 30px 0px;
    }
}

/*--------------------------------------------------------------
# Modal Overlay
--------------------------------------------------------------*/
#modal_overlay {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    transition: all 0.5s;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0px;
    z-index: 9999;
}
.modal_visible {
    opacity: 1 !important;
    -webkit-opacity: 1 !important;
    -moz-opacity: 1 !important;
    visibility: visible !important;
    height: 100% !important;
}
#modal_overlay .close {
    position: absolute;
    position: sticky;
    top: -20px;
    right: 5px;
    color: #666;
    font-size: 25px;
    cursor: pointer;
    background: #fff;
    text-align: right;
}
#modal_overlay .modal {
    position: relative;
    background: #fff;
    height: auto;
    max-width: 700px;
    width: 90%;
    padding: 40px;
    border: 2px solid #000;
    max-height: 90%;
    overflow: auto;
}

#modal_overlay form {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

/*
  FORM
*/

form .form_section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
}

form .formline.nolabel {
    text-align: right;
}

#modal_overlay .horizontal {
    display: flex;
    align-items: center;
    gap: 20px;
}

/*--------------------------------------------------------------
# Main-Colors and Hover-Colors
--------------------------------------------------------------*/
html,
body {
    color: #595d60;
    background: #fff;
    font-family: "ZurichHead";
}
h1,
h2,
h3,
h4,
h5 {
    color: #595d60;
}

a {
    text-decoration: none;
    color: #e1003a;
}
a:hover {
    color: #e1003a;
}
mark {
    color: #e1003a;
}
.btn {
    background: #e1003a;
    color: #fff;
}
.btn_outline {
    border: 2px solid #e1003a;
    color: #e1003a;
    background: none;
}
.btn:hover {
    background: #c00032;
    color: #fff;
}
.btn_outline:hover {
    background: #e1003a;
    color: #fff;
}

.btn.btn-lg {
    padding: 20px;
}

.maincolor_bg {
    background: #e1003a;
}
.scrolltop:hover {
    background: #e1003a;
}

.products .item .text .price {
    color: #e1003a;
}
.products .item .subtext {
    font-size: 12px;
    font-family: 'ZurichHead';
    color: #ccc;
}
.listprice {
    text-decoration: line-through;
}
#breadcrumb ul li a:hover {
    color: #e1003a;
}

/*--------------------------------------------------------------
# Typo
--------------------------------------------------------------*/
html,
body {
    font-size: 22px;
    line-height: 1.5;
    font-family: "ZurichHead";
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn {
    font-family: "ZurichHeadBold";
    line-height: 1.3;
}
p {
    margin-bottom: 20px;
}
h1 {
    display: block;
    text-align: left;
    text-transform: uppercase;
    font-size: 42px;
    margin-bottom: 10px;
    margin-top: 20px;
    line-height: 42px;
}
h2 {
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
    text-align: left;
    text-transform: uppercase;
}
h3 {
    display: block;
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
h4 {
    display: block;
    font-size: 28px;
    font-family: "ZurichHead";
    font-weight: 100;
}
h5 {
    display: block;
    font-size: 16px;
    margin-bottom: 18px;
}

@media (max-width: 1200px) {
    h1 {
        font-size: 42px;
    }
    h3 {
        font-size: 28px;
    }
}

strong {
    font-family: "ZurichBold";
}
hr {
    height: 1px;
    background: none;
    border-bottom: solid 3px #585c5f;
    margin: 10px 0px;
}
a {
    text-decoration: none;
}
input[type="submit"],
.btn {
    font-family: "ZurichBold";
}
#header #slogan {
    font-family: "ZurichHead";
}

.footnote {
    font-size: 14px;
    color: #bdbbb4;
}

/* Text Aligns */
.align_right,
.align_right p,
.align_right h1,
.align_right h2,
.align_right h3 {
    text-align: right;
}
.align_left,
.align_left p,
.align_left h1,
.align_left h2,
.align_left h3 {
    text-align: left;
}
.align_center,
.align_center p,
.align_center h1,
.align_center h2,
.align_center h3 {
    text-align: center;
}
.align_center ul {
    margin: 20px auto;
    width: 300px;
    text-align: left;
}

/* Buttons */
.btn {
    padding: 10px 30px;
    transition: all 0.3s;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 40px;
    font-size: 17px;
    font-family: "ZurichHeadBold";
    cursor: pointer;
}
button {
    border: 0;
    margin-top: 0px;
    font-size: 17px;
}
.btn_round {
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
}
.btn_fullwidth {
    width: 100%;
    text-align: center;
}
.center_button {
    width: 100%;
    text-align: center;
}

/* White Color */
.white_color {
    color: #fff;
}
.white_color h1,
.white_color h2,
.white_color h3,
.white_color h5,
.white_color h5,
.white_color h6 {
    color: #fff;
}
.white_color .underline:after {
    background: #fff;
}
.white_color p {
    color: #fff;
}

@media (min-width: 1280px) {
    body,
    html {
        font-size: 22px;
    }
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
input,
textarea,
select {
    width: 100%;
    display: block;
    height: 45px;
    padding: 0px 10px;
    color: #333;
    background: #fff;
    border: solid 1px #ccc;
    outline: none;
    font-size: 15px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    margin-bottom: 10px;
}
input:focus,
textarea:focus,
select:focus {
    background: #fff;
    border-color: #e1003a;
}
input[type="submit"],
button[type="submit"] {
    display: inline-block;
    text-align: center;
    padding: 10px 30px;
    background: #e1003a;
    color: #fff;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 17px;
    height: auto;
    width: auto;
    cursor: pointer;
    border: none;
    margin-top: 10px;
}
input[type="submit"]:hover {
    background: #c30234;
    color: #fff;
}
input[type="radio"] {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 20px;
}
input[type="checkbox"] {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 20px;
}
textarea {
    height: auto;
    padding: 10px;
}
label {
    font-weight: 600;
}
.form {
    max-width: 800px;
    margin: 60px auto 30px auto;
}
.form .row {
    margin: 0px -5px;
}
.form .column {
    padding: 0px 5px;
}
.form_section {
    margin-bottom: 30px;
}

.check_section {
    position: relative;
}
.check_section input {
    position: absolute;
    left: 0;
    top: 0;
}
.check_section label {
    display: block;
    padding-left: 40px;
    margin-bottom: 5px;
}
.check_section label .txt_small {
    display: block;
    font-size: 13px;
    line-height: 1.3;
    font-family: "ZurichHead";
    font-weight: 400;
}

.login_form {
    max-width: 500px;
    width: 100%;
}

.hidden_container {
    display: none;
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs {
    padding: 30px;
    margin-bottom: 40px;
}

ul.tab_nav {
    list-style-type: none;
    margin: 0px 0px 30px 0px;
    border-bottom: solid 2px #c6c3bc;
    display: flex;
    gap: 30px;
}
ul.tab_nav li {
    cursor: pointer;
    text-transform: uppercase;
    padding-bottom: 10px;
    color: #c6c3bc;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;

    font-size: 28px;
    font-family: "ZurichHead";
    color: #585c5f;
}
ul.tab_nav li h3 {
    font-size: 28px;
    font-family: "ZurichHead";
    color: #585c5f;
    font-weight: 100;
    line-height: 30px;
    margin: 0;
}
ul.tab_nav li:hover {
    color: #585c5f;
}
ul.tab_nav li.active {
    border-color: #585c5f;
    color: #585c5f;
}

.tab_content .tab {
    display: block;
}
.tab_content {
    position: relative;
}
.tab_content .hide {
    display: none;
}
.tab_content .active {
    display: block;
}

@media (max-width: 1200px) {
    ul.tab_nav {
        gap: 20px;
    }
    ul.tab_nav li {
        font-size: 20px;
    }
}

@media (max-width: 1000px) {
    ul.tab_nav li {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    position: absolute;
    background: #fff;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
    box-shadow: 0px 0px 5px 1px #ccc;
}

#header #topbar .row {
    justify-content: space-between;
}

#header #topbar .container-fluid {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
}
#header #topbar .container-fluid .row {
    height: 100%;
}

.topbar_left {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
}

#topbar ul {
    list-style-type: none;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    height: 100%;
}
#topbar ul li {
    height: 100%;
}
#topbar .topbar_left ul li {
    border-right: solid 1px #c6c3bb;
}
#topbar ul li a {
    color: #c1c2c3;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    height: 100%;
    font-size: 14px;
    text-align: left;
    transition: all 0.3s;
}
#topbar ul li a i {
    color: #e1003a;
    display: inline-block;
    margin-right: 10px;
    font-size: 19px;
}

#topbar .topbar_left ul li:nth-of-type(2) a {
    justify-content: center;
}
#topbar .topbar_left ul li:nth-of-type(3) {
    border-right: none;
    width: auto;
}
#topbar .topbar_left ul li:nth-of-type(3) a {
    padding: 0px 20px;
}

#topbar .topbar_left .phone .text,
#topbar .topbar_left .mail .text {
    display: none;
}
#topbar .topbar_left .phone a {
    padding-right: 10px;
}
#topbar .topbar_left .clock a,
#topbar .topbar_left .mail a {
    padding: 0px 10px;
}
#topbar .topbar_left .clock {
    display: none;
}

#topbar .topbar_right ul {
    justify-content: flex-end;
}
#topbar .topbar_right ul li a {
    padding: 0px 30px;
}
#topbar .topbar_right ul li {
    border-left: solid 1px #c6c3bb;
}
#topbar .topbar_right ul li:nth-of-type(1) {
    border: none;
}
#topbar .topbar_right ul li:last-child {
    padding-right: 80px;
    border: 0;
}

#topbar .promotion-bar {
    background-color: #707070;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#topbar .info-bar .col {
    display: flex;
    justify-content: flex-end;
    flex: auto;
}
#topbar .info-bar .topbar_right_container {
    padding-top: 10px;
    padding-bottom: 10px;
    border-left: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    display: inline-block;
}
@media (max-width: 1400px) {
    #topbar ul li a .text {
        display: none;
    }
}
@media (max-width: 1000px) {
    #topbar .info-bar .topbar_right_container {
        border: 0;
    }

    #topbar ul li {
        border: none !important;
    }

    #topbar .topbar_right ul li:last-child {
        padding-right: 67px;
    }

    #topbar ul li a i {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    #topbar .topbar_right ul li:last-child {
        padding-right: 10px;
    }
    #topbar .topbar_right ul li a {
        padding: 0px 10px;
    }
}

/* Logging */
.logged_in #topbar .topbar_right .konto {
    display: flex;
    display: -webkit-flex;
}

#topbar .topbar_right .signout,
#topbar .topbar_right .pw {
    display: none;
}
#topbar .topbar_right .konto a {
    padding-right: 0px;
}
#topbar .row .col {
    width: auto;
}

/* Header Main */
#header #header_main {
    margin-top: 20px;
}
#header #header_main .container-fluid {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
}

.header_main_left {
    flex-wrap: wrap;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
}

.header_main_right {
    flex-wrap: wrap;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 30px;
}
@media (max-width: 1200px) {
    .header_main_right {
        margin-right: 50px;
    }
}
@media (max-width: 768px) {
    .header_main_right {
        gap: 10px;
    }
}
@media (max-width: 480px) {
    .header_main_right {
        margin-right: 10px;
    }
}

#header #logo img {
    width: 100%;
}
#header #logo {
    width: 150px;
    margin-bottom: 10px;
}
#header #logo a {
    display: flex;
}
#header #slogan {
    font-size: 14px;
    color: #666;
}

@media (min-width: 400px) {
    #topbar .topbar_left .clock {
        display: flex;
        display: -webkit-flex;
        width: 225px;
    }
}

@media (min-width: 600px) {
    #header #logo {
        width: 200px;
    }
    #header #slogan {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    #header {
        position: fixed;
    }
    #topbar ul li a:hover {
        color: #666;
    }
    #topbar .topbar_right ul li.signin a {
        padding-right: 20;
    }
}

@media (min-width: 900px) {
    .logged_in #topbar .topbar_right .signout,
    .logged_in #topbar .topbar_right .pw {
        display: flex;
        display: -webkit-flex;
    }
    #topbar .topbar_right .konto a {
        padding-right: 20px;
    }
}

@media (min-width: 1280px) {
    #topbar .topbar_left .phone .text,
    #topbar .topbar_left .mail .text {
        display: inline;
    }
    #topbar .topbar_right .logged_in .signout,
    #topbar .topbar_right .logged_in .konto,
    #topbar .topbar_right .logged_in .pw {
        display: flex;
        display: -webkit-flex;
    }
}

@media (min-width: 1600px) {
    #topbar .topbar_left ul li {
        width: 150px;
    }
    .header_main_left {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
    #header #logo {
        width: 300px;
    }
    #header #slogan {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Mainmenu
--------------------------------------------------------------*/
/* Pull-Button */
a#pull {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    justify-content: center;
    position: relative;
    padding: 10px 0px;
    background: none;
    cursor: pointer;
    margin-right: 5px;
}
a#pull .text {
    display: inline-block;
    font-size: 20px;
}
a#pull .pull_button {
    display: inline-block;
    width: 30px;
    margin-right: 7px;
    margin-bottom: 13px;
}
a#pull .pull_button span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    margin-bottom: 6px;
    border-radius: 100px;
}
a#pull span:nth-of-type(3) {
    margin-bottom: 0px;
}
#pull  .pull_button_x {
    display: none;
}
#pull  .pull_button_x:after {
    font-family: "FontAwesome";
    content: "\2b";
    display: inline-block;
    font-size: 50px;
    line-height: 10px;
    font-weight: 700;
    height: auto;
    transform: rotate(45deg);
    top: -17px;
}

#pull.open .pull_button {
    display: none;
}
#pull.open  .pull_button_x {
    display: block;
}

/* Menu */
#mainmenu {
    position: fixed;
    top: 140px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: none;
    overflow-y: auto;
    overflow-x: hidden;
}

#mainmenu ul {
    list-style-type: none;
    display: block;
    width: 100%;
    flex-wrap: wrap;
}

#mainmenu > .menu_inner > .menu_section > ul > li > a {
    display: block;
    color: #606468;
    text-align: left;
    text-transform: uppercase;
    font-size: 24px;
    padding-bottom: 10px;
}

#mainmenu > .menu_inner > .menu_section > ul > li > ul {
    display: none;
}

@media (max-width: 768px) {
    #mainmenu {
    }
    #mainmenu .menu_section {
        box-shadow: 0 0 1rem rgba(0,0,0,0.2);
        background: #fff;
        padding: 20px;
    }
    #mainmenu > .menu_inner > .menu_section > ul > li > a {
        padding: 0;
        display: flex;
        align-items: center;
    }
    #mainmenu > .menu_inner > .menu_section > ul > li.submenu_open > a {
        border-bottom: 1px solid #e4e0d7;
    }
    #mainmenu > .menu_inner > .menu_section > ul > li.submenu_open > a:after {
        transform: rotate(90deg);
        color: #e1003a;
    }
    #mainmenu > .menu_inner > .menu_section > ul > li.submenu_open > a span {
        color: #e1003a;
        border-bottom: 2px solid #e1003a;
    }
    #mainmenu .menu_section > ul > li {
        padding: 10px 0;
    }
    #mainmenu .menu_section > ul > li ~ li {
        border-top: 1px solid #ccc;
    }
}

.menu1 {
    background: #fff;
    padding-bottom: 40px;
    padding-top: 40px;
}
@media (max-width: 768px) {
    .menu1 {
        margin-left: 20px;
    }
}
.menu1 li .icon {
    color: #c6c3bb;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 100px;
    padding-bottom: 0px;
}
.menu1 > .submenu_inner > li ~ li {
    border-left: 1px solid #e4e0d7;
}

@media (max-width: 768px) {
    .menu1 > .submenu_inner > li ~ li {
        border: 0;
        margin-top: 40px;
        padding-top: 40px;
    }
    .menu1:not(.categories) > .submenu_inner > li ~ li {
        border-top: 1px solid #e4e0d7;
    }
}
.menu1 > .submenu_inner > li {
    padding: 0px 50px;
}
.menu1 > .submenu_inner > li > ul > li > a {
    display: block;
    padding: 5px 15px;
    color: #666;
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    font-family: "ZurichHead";
    margin-left: 60px;
}

@media (max-width: 768px) {
    .menu1 > .submenu_inner > li > ul > li > a {
        margin: 0;
    }
    .menu1 > .submenu_inner > li > ul > li > a.active {
        color: #e1003a;
    }
}

.has_submenu > a {
    position: relative;
    cursor: pointer;
}
.has_submenu > a:after {
    font-family: "FontAwesome";
    content: "\f054";
    display: inline-block;
    font-size: 16px;
    height: auto;
    transition: all 0.3s;
    margin-left: 10px;
}
.submenu_open > a:before {
    transform: rotate(90deg);
}

.menu1 li .category-title {
    color: #333;
    text-transform: uppercase;
    font-size: 24px;
    font-family: "ZurichBold";
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

@media (min-width: 768px) {
    .menu1 li .icon {
        font-size: 70px;
        height: 150px;
        display: flex;
        display: -webkit-flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .menu1 li .icon.icon-Hocker {
        font-size: 60px;
    }
    .menu1 li .icon.icon-Stuhl-2 {
        font-size: 70px;
    }
    .menu1 li .icon.icon-Weiteres {
        font-size: 75px;
    }
    .menu1 li .icon.icon-Tisch {
        font-size: 80px;
    }
    #mainmenu .menu1 .submenu_inner {
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    #mainmenu .menu1 .submenu_inner > li {
        margin-bottom: 20px;
    }
    .menu1 > .submenu_inner > li > ul > li > a {
        text-align: left;
        padding: 3px 0px;
    }
}

@media (min-width: 768px) {
    a#pull {
        display: none;
    }
    #mainmenu {
        position: relative;
        top: inherit;
        left: inherit;
        right: inherit;
        display: flex !important;
        height: 100%;
        overflow: hidden;
    }
    #mainmenu > .menu_inner > .menu_section {
        height: 100%;
    }
    #mainmenu > .menu_inner > .menu_section > ul {
        height: 100%;
        align-items: flex-end;
    }
    #mainmenu ul {
        display: flex;
        display: -webkit-flex;
        align-items: flex-end;
        gap: 40px;
    }
    #mainmenu > .menu_inner > .menu_section > ul > li {
        border: none;
    }
    #mainmenu > .menu_inner > .menu_section > ul > li > a {
        transition: all 0.3s;
        border-bottom: 4px solid transparent;
    }
    #mainmenu > .menu_inner > .menu_section > ul > li > a:hover {
        border-bottom: 4px solid #e1003a;
        color: #e1003a;
    }
    #mainmenu > .menu_inner > .menu_section > ul > li > a:hover::after {
        transform: rotate(90deg);
    }
    #mainmenu > .menu_inner > .menu_section > ul > li > a.active,
    #mainmenu > .menu_inner > .menu_section > ul > li > a.parent_active {
        color: #e1003a;
        border-bottom: 4px solid #e1003a;
        text-transform: uppercase;
        font-size: 24px;
    }
    #mainmenu .menu1 a {
        transition: all 0.3s;
        color: #c6c3bb;
        text-transform: uppercase;
        font-size: 14px;
        font-family: "ZurichHeadBold";
        margin-left: 60px;
        text-align: center;
        margin: 0;
    }
    #mainmenu .menu1 a:hover,
    #mainmenu .menu1 a.active {
        color: #e1003a;
    }
    .menu1 {
        position: fixed;
        /* top: 154px; */
        left: 0px;
        right: 0px;
        border-bottom: solid 1px #c6c3bb;
        box-shadow: 0px 5px 5px 1px #ccc;
    }
    #mainmenu .menu1 > .submenu_inner > li > ul {
        display: block;
    }

    #mainmenu .menu1 .submenu_inner > li {
        width: 25%;
    }
    #mainmenu .menu1.categories .category-title span:not(.icon) {
        display: none;
    }
}

@media (min-width: 1000px) {
    #mainmenu .menu1 .submenu_inner > li {
        width: 25%;
        margin-bottom: 20px;
    }
    .menu1 > .submenu_inner > li > ul > li > a {
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
    #mainmenu .menu1 .submenu_inner > li {
        width: auto;
        margin-bottom: 20px;
    }
}

@media (max-width: 900px) {
    #mainmenu .menu1.categories .category {
        padding: 0;
    }
    #mainmenu .menu1.categories .category-title .icon {
        width: 40px;
        text-align: left;
        flex-shrink: 0;
    }
    #mainmenu .menu1.categories .category ul {
        margin-left: 60px;
    }
    #mainmenu .menu1.categories .category ul li a {
        text-align: left;
        padding: 0;
    }
}

@media (max-width: 768px) {
    #mainmenu .menu1.categories .category-title {
        text-align: left;
        justify-content: flex-start;
        flex-direction: row;
    }
    #mainmenu .menu1.categories .category-title .icon {
        font-size: 30px;
    }

}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/

.cart_button {
    position: relative;
    display: block;
}
.cart_button i {
    text-align: center;
    font-size: 25px;
    color: #585c5f;
    transition: all 0.3s;
    margin-bottom: 20px;
}
.cart_button .cart_number {
    position: absolute;
    top: -10px;
    right: 0px;
    background: #e1003a;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    width: 18px;
    height: 18px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    padding: 1px;
    display: block;
}

@media (min-width: 768px) {
    .cart_button:hover i {
        color: #e1003a;
    }
}

/*--------------------------------------------------------------
# Site
--------------------------------------------------------------*/
#site {
    padding-top: 154px;
}

@media (max-width: 1600px) {
    #site {
        padding-top: 152px;
    }
}
@media (max-width: 1000px) {
    #site {
        padding-top: 164px;
    }
}

/*--------------------------------------------------------------
# Product Attributes
--------------------------------------------------------------*/
#product_attributes {
}
#product_attributes dt {
    font-weight: 700;
}
#product_attributes dd {
    display: block;
    margin-bottom: 10px;
    border-bottom: dotted 1px #666;
    padding-bottom: 5px;
}

/*--------------------------------------------------------------
# Header Section 2
--------------------------------------------------------------*/
#header_section2 {
    display: block;
    position: relative;
    margin-bottom: 50px;
}

#header_section2 .header_slider {
    width: 100%;
    height: 520px;
    position: relative;
    color: #212529;
}

.main_content_start_s1 {
    margin-top: 100px;
    margin-bottom: 30px;
}

#header_section2 .header_slider .slick-list,
#header_section2 .header_slider .slick-track {
    height: 100%;
}

#header_section2 .header_slider .slick-slide {
    background: #fff;
}
#header_section2 .header_slider h1,
#header_section2 .header_slider h2,
#header_section2 .header_slider h3,
#header_section2 .header_slider h4,
#header_section2 .header_slider h5,
#header_section2 .header_slider h6 {
    color: #fff;
    font-family: "ZurichHead";
    margin: 0;
    z-index: 1;
}
#header_section2 .header_slider .content.product h1,
#header_section2 .header_slider .content.product h2,
#header_section2 .header_slider .content.product h3,
#header_section2 .header_slider .content.product h4,
#header_section2 .header_slider .content.product h5,
#header_section2 .header_slider .content.product h6 {
    color: #212529;
}
#header_section2 .header_slider h2 {
    font-size: 72px;
    font-family: "ZurichHeadBold";
    line-height: 70px;
    margin-bottom: 40px;
}
#header_section2 .header_slider .content {
    font-family: "ZurichHead";
    font-size: 24px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#header_section2 .header_slider .content .text {
    position: absolute;
    color: #fff;
    font-family: "ZurichHead";
    font-weight: 100;
    font-size: 24px;
    top: 100px;
    left: 70px;
    width: 50%;
    text-shadow: 0 0 0.2rem #000;
}
#header_section2 .header_slider .content.product .text {
    text-shadow: 0 0 0.2rem #fff, 0 0 0.1rem #fff, 0 0 0.1rem #fff, 0 0 0.1rem #fff, 0 0 0.1rem #fff, 0 0 0.1rem #fff, 0 0 0.1rem #fff, 0 0 0.1rem #fff, 0 0 0.1rem #fff, 0 0 0.1rem #fff, 0 0 0.1rem #fff;
}
#header_section2 .header_slider .content.product .text {
    color: #212529;
}

.header-slider-arrows-title a,
#header_section2 .header_slider .content .text h2 a {
    color: #212529;
    transition: all 0.2s ease-in-out;
}
.header-slider-arrows-title a:hover,
#header_section2 .header_slider .content .text h2 a:hover {
    color: #e1003a;
}

#header_section2 .header_slider .text h3 {
    font-size: 32px;
}

#header_section2 .header_slider .content.product h3 {
    color: #e1003a;
}

#header_section2 .header_slider .content.product .price {
    color: #e1003a;
    font-size: 42px;
    font-family: "ZurichHeadBold";
}

#header_section2 .header_slider .content.product .price .listprice {
    color: #212529;
    font-size: 28px;
    font-family: "ZurichHead";
}

#header_section2 .header_slider .content .header-slider-arrows-title {
    color: #212529;
    font-size: 27px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "ZurichHeadBold";
    position: absolute;
    left: 0px;
}
#header_section2 .header_slider .content .header-slider-arrows-title {
    top: 340px;
    background: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    margin-left: -70px;
    padding: 0 100px 0 70px;
    text-shadow: none;
    width: 95%;
}

@media (max-width: 1280px) {
    #header_section2 .header_slider .content .text {
        top: 40px;
        left: 30px;
        right: 70px;
        width: auto;
    }
    #header_section2 .header_slider .content .text h2 {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 20px;
    }
    #header_section2 .header_slider .content .text h3 {
        font-size: 24px;
    }
    #header_section2 .header_slider .content .header-slider-arrows-title {
        top: 280px;
        width: 50%;
        font-size: 18px;
    }
}
@media (max-width: 480px) {
    #header_section2 .header_slider .content .text {
        font-size: 16px;
    }
}

#header_section2 .header_slider .content .img-link {
    position: relative;
    display: block;
    height: 100%;
}
#header_section2 .header_slider .content img {
    position: absolute;
    inset: 0px;
    background-size: cover;
    background-position: center top;
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

#header_section2 .header_slider .content.product:not(.freeimage) img {
    width: 50%;
    margin-left: 50%;
}
@media (max-width: 900px) {
    #header_section2 .header_slider .content.product img {
        height: 320px;
    }
}
@media (max-width: 768px) {
    #header_section2 .header_slider .content.product img {
        width: 100%;
        height: 350px;
        margin: 0;
    }
}

#header_section2 .slick-dotted.slick-slider {
    margin-bottom: 0px;
}

#header_section2 ul {
    list-style-type: none;
}

#header_section2 .header-slider-arrows {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 80px;
    /* background: #fff; */
    box-shadow: -5px -5px 5px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    z-index: 1;
}

@media (max-width: 768px) {
    #header_section2 .header-slider-arrows {
        height: 50px;
    }
}

#header_section2 .header-slider-arrows .title {
    background: transparent;
    color: #212529;
    flex: 1 1 auto;
    font-size: 27px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "ZurichHeadBold";
    padding: 0 2rem;
}
#header_section2 .header-slider-arrows .title * {
    display: none;
}

#header_section2 .header-slider-arrows > li {
    height: 80px;
    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
    #header_section2 .header-slider-arrows > li {
        height: 50px;
    }
}

#header_section2 .header-slider-arrows > li:last-child {
    width: 160px;
    background: #d3092a;
}

#header_section2 .header-slider-arrows .slick-arrows {
    display: flex;
    margin: 10px 0;
    margin: 0;
}

#header_section2 .header-slider-arrows .slick-arrows li {
    width: 80px;
    height: 60px;
}
@media (max-width: 768px) {
    #header_section2 .header-slider-arrows > li:last-child {
        width: 100px;
    }
    #header_section2 .header-slider-arrows .slick-arrows li {
        width: 50px;
        height: 30px;
    }
    #header_section2 .header-slider-arrows .slick-arrows li:before {
        font-size: 48px;
        margin-top: -14px;
    }
}

#header_section2 .header-slider-arrows .prev,
#header_section2 .header-slider-arrows .next {
    z-index: 9999;
    left: auto;
    right: auto;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#header_section2 .header-slider-arrows .next {
    border-left: 1px solid #f7acb8;
}

#header_section2 .header-slider-arrows .prev:before {
    content: "\2039";
    color: #fff;
    font-size: 60px;
    opacity: 1;
    margin-top: -17px;
    transition: all 0.2s ease-in-out;
}
#header_section2 .header-slider-arrows .prev:hover:before {
    margin-left: -10px;
}

#header_section2 .header-slider-arrows .next:before {
    content: "\203A";
    color: #fff;
    font-size: 60px;
    opacity: 1;
    margin-top: -17px;
    transition: all 0.2s ease-in-out;
}
#header_section2 .header-slider-arrows .next:hover:before {
    margin-left: 10px;
}

@media (max-width: 1200px) {
    #header_section2 .header-slider-arrows .title {
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    #header_section2 .header-slider-arrows {
        width: 100%;
    }
    #header_section2 .header_slider .content .header-slider-arrows-title {
        top: 280px;
        width: 98%;
    }
}

@media (max-width: 768px) {
    #header_section2 .header_slider .content .header-slider-arrows-title {
        top: 310px;
        width: 100%;
        height: 50px;
        font-size: 16px;
        margin-left: 0;
        padding: 0;
    }
    #header_section2 .header_slider .content.freetext .header-slider-arrows-title {
        margin-left: -20px;
        padding: 0 20px;
    }

}


/* Header Contact */
#header_section2 .header_contact {
    position: relative;
    display: flex;
    flex-flow: column;
}
#header_section2 .header_contact .contact_bottom {
    display: flex;
    display: -webkit-flex;
    align-items: stretch;
    justify-content: flex-start;
    background: #c6c3bc;
    padding: 30px;
}
.contact_bottom .icon {
    color: #fff;
    font-size: 50px;
    padding-right: 20px;
    margin-right: 20px;
    border-right: solid 1px #fff;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
}
.contact_bottom .text {
    color: #fff;
}
.contact_bottom .text .phone_number {
    display: block;
    font-size: 40px;
    font-family: "ZurichBold";
}

@media (max-width: 1600px) {
    .contact_bottom .text .phone_number {
        font-size: 30px;
    }
}
@media (max-width: 1280px) {
    #header_section2 .header_slider {
        height: 400px;
    }
    #header_section2 .header_contact {
        width: 40%;
    }
}
/* @media (max-width: 1200px) {
  #header_section2 .header_slider .content .text {
    top: 0px;
  }
} */
@media (max-width: 1000px) {
    #header_section2 {
        display: block;
    }
    #header_section2 .header_slider {
        height: 400px;
        width: 100%;
    }
    #header_section2 .header_contact {
        width: 100%;
    }
    #header_section2 .header_contact .image {
        display: none;
    }
    #header_section2 .header_contact .contact_bottom {
        position: relative;
    }
}
@media (max-width: 900px) {
    #header_section2 .header_slider .text .text_inner {
        width: 80%;
    }
}
@media (max-width: 768px) {
    #header_section2 .header_slider .text h3 {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Red Section
--------------------------------------------------------------*/
#red_section {
    padding: 50px 0px;
}
.check_list {
    list-style-type: none;
}
.check_list li {
    font-family: "ZurichHead";
    font-size: 32px;
    padding: 5px 0px;
}
.check_list li:before {
    font-family: "FontAwesome";
    content: "\f058";
    display: inline-block;
    margin-right: 20px;
}

@media (max-width: 768px) {
    #red_section {
        padding: 20px 0px;
    }
    .check_list li {
        font-size: 28px;
    }
}
@media (max-width: 600px) {
    .check_list li {
        font-size: 22px;
    }
}
@media (max-width: 400px) {
    .check_list li {
        font-size: 18px;
    }
}

/*
  MAIN CATEGORIES
*/

.main-categories {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}
.main-categories img {
    max-width: 100%;
    filter: brightness(70%);
}
.main-categories > * {
    position: relative;
    flex-basis: 50%;
    flex: 0 1 49%;
}
@media (max-width: 1200px) {
    .main-categories > * {
        flex: 0 1 100%;
    }
    .main-categories .main-categories-title {
        font-size: 7vw;
    }
}
.main-categories-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-basis: 100%;
    font-size: 50px;
    font-family: "ZurichHeadBold";
    color: #fff;
    text-transform: uppercase;
}

.main-categories-more {
    margin-bottom: 60px;
}
.main-categories-more .container {
    text-align: center;
}

/*--------------------------------------------------------------
# Products Start
--------------------------------------------------------------*/
.light-grey {
    background: #f4f4f4;
}
.products_start section {
    margin-bottom: 80px;
}
.products_start .col_m4 {
    margin-bottom: 40px;
}

/* SECION - NEW PRODUCTS  */

.highlighted-products.products_start {
    margin-top: 10rem;
}

@media (max-width: 900px) {
    .highlighted-products.products_start {
        margin-top: 1rem;
    }
}
.highlighted-products.products_start section {
    margin-bottom: 0;
}

.highlighted-products.section_padding {
    padding-bottom: 50px;
}

.highlighted-products .products {
    margin-top: -170px;
}

.highlighted-products .row .col:first-of-type {
    margin-bottom: 170px;
}

.highlighted-products p {
    font-size: 1.1rem;
}

.highlighted-products h3 {
    font-size: 40px;
    line-height: 45px;
}

.highlighted-products .products_slider .slick-list {
    padding: 20px 0 30px 0;
}

.highlighted-products .products_slider .slick-track {
    display: flex;
    align-items: stretch;
}

.highlighted-products .slick-initialized .slick-slide {
    display: flex;
    align-items: stretch;
    float: none;
    height: unset;
}

.highlighted-products .products_slider .slick-slide .item {
    background-color: #fff;
    width: auto;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 0 10px 0 rgba(0, 0, 0, 0.1);
    margin: 0 15px;
    display: flex;
    flex-flow: column;
}

.highlighted-products .products_slider .slick-slide .item .text {
    flex-grow: 1;
}

@media (min-width: 768px) {
    .highlighted-products .products_slider .slick-slide .item {
        display: flex;
        flex-flow: column;
        width: 100%;
    }
    .products_start .col_m4 {
        margin-bottom: 0px;
    }
}

@media (max-width: 768px) {
    .products_start .col_m4 .btn_fullwidth {
        width: auto;
    }
    .highlighted-products .products_slider .slick-slide .item {
        margin: 0 5px;
    }
}

/*--------------------------------------------------------------
# Articles
--------------------------------------------------------------*/

.article-full .brand {
    font-size: 28px;
    color: #e1003a;
    text-transform: uppercase;
    font-weight: 100;
    font-family: "ZurichHead";
    margin-bottom: -5px;
}
.article-full .title {
    font-size: 42px;
}
.article-full .text {
    margin: 0 10%;
}

/* Article - Default */

.article,
.article * {
    position: relative;
}

.article.article-default {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.article.article-default > * {
    flex: 1;
}

.article.article-default img {
    width: 100%;
    object-fit: cover;
}
.article.article-default .article-subtitle {
    text-transform: uppercase;
    font-weight: 100;
}
.article.article-default .article-title {
    margin-bottom: 20px;
    line-height: 45px;
}
.article.article-default a {
    color: #212529;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .article.article-default {
        flex-direction: column;
    }
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.products .item {
    width: 100%;
    height: 100%;
    position: relative;
}
.products .item .image {
    width: 100%;
    position: relative;
    padding: 0px 40px;
    margin-bottom: 10px;
}
.products .item .image img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}
@media (max-width: 900px) {
    .products .item .image img {
        object-fit: contain;
    }
}

.products .item .text {
    text-align: left;
    padding: 20px 40px 30px 40px;
    font-size: 14px;
    font-family: "ZurichHeadBold", sans-serif;
    color: #212529;
    display: flex;
    flex-flow: column;
    flex-grow: 1;
}
.products .item a {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 100;
}
.products .item .text h4 {
    margin: 0px;
    text-transform: uppercase;
    font-size: 18px;
    color: #212529;
    font-style: normal;
}
.products .item .text h3 {
    margin-bottom: 20px;
    transition: all 0.3s;
    color: #212529;
    font-style: normal;
    font-size: 32px;
    line-height: 32px;
}
.products .item .text .stock {
    flex-grow: 1;
    font-style: italic;
}
.products .item .text .price {
    font-size: 32px;
    font-style: normal;
}

.products .item .text .price .listprice {
    font-size: 0.65em;
    font-weight: 400;
    font-family: 'ZurichHead';
    color: #212529;
}

.products .item .article-details-link {
    font-family: "ZurichBold";
    font-size: 24px;
    color: #212529;
    font-style: normal;
}

.products .item .text .price sup {
    font-size: 10px;
}

.products .item .overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    visibility: hidden;
}
.products .item .overlay .overlay_inner {
    text-align: center;
    font-size: 15px;
}

.products .item:hover > .image > .overlay {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    visibility: visible;
}

/* Products Slider */
.products_slider .slick-dots {
    position: relative;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: 0;
    height: 7px;
    width: 100%;
    padding-left: 70%;
    padding-right: 15px;
}
.products_slider .slick-dots li ~ li {
    margin-left: 15px;
}
.products_slider .slick-dots li {
    flex: 1;
    margin: 0px;
    height: 100%;
    background: #dadadb;
}

.products_slider .slick-dots li button {
    height: 100%;
    width: 100%;
    padding: 0px;
}
.products_slider .slick-dots li button:before {
    display: none;
}
.products_slider .slick-dots li.slick-active button {
    background: #e1003a;
}

@media (max-width: 1200px) {
    .products_slider .slick-dots {
        padding-left: 40%;
    }
}
@media (max-width: 1000px) {
    .products_slider .slick-dots {
        padding-left: 20%;
    }
}

.action-label {
    background: #e1003a;
    color: #fff;
    font-size: 18px;
    font-family: "ZurichHeadBold";
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products .slider-nav {
    position: relative;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: solid 1px #c6c3bc;
    height: 10px;
    margin-top: 20px;
}
.products .slider-nav .slick-list,
.products .slider-nav .slick-track {
    height: 100%;
}
.products .slider-nav .slide {
    margin: 0px 2px;
    height: 100%;
    background: #c6c3bc;
}

/* Product List */
.product_list .item .text .price {
    margin-bottom: 10px;
}
.product_list .item:hover h3 {
    color: #e1003a;
}

.products_v1 .item {
    margin-bottom: 0px;
}
.products_v1 .item .image {
    height: 250px;
    overflow: hidden;
}
.products_v1 .item .text .title {
    font-size: 30px;
    line-height: 35px;
}
.products_v1 .col_m4, .products_v1 .col_m3 {
    margin-bottom: 30px;
}
.products .col_m6 {
    margin-bottom: 30px;
}

.products .bottom-text {
    margin-top: 20px;
    font-family: 'ZurichHead';
    color: #212529;
    flex-grow: 1;
}

/* Products V2 */
.products_v2 {
    height: 100%;
}
.products_v2 .item {
    display: flex;
    display: -webkit-flex;
    align-items: stretch;
    flex-wrap: wrap;
    background: #e5e5e5;
    height: 100%;
}
.products_v2 .item .image {
    width: 50%;
    line-height: 0;
    padding: 0px;
    margin-bottom: 0px !important;
}
.products_v2 .item .image img {
    object-fit: cover;
    height: 100%;
}
.products_v2 .item .text {
    width: 50%;
    padding: 40px 20px;
    text-align: left;
    font-size: 15px;
    position: relative;
}
.products_v2 .item .text hr {
    border-color: #d2d0ca;
}
.products_v2 .item .text .redbox {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 20px;
    background: #e1003a;
    padding: 20px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    text-transform: uppercase;
    height: 90px;
}
.products_v2 .item .text .redbox .price {
    color: #fff;
    font-size: 25px;
}
.products_v2 .item:hover .text h3 {
    color: #e1003a;
}

.products_v2_small .item {
    display: block;
}
.products_v2_small .item .image {
    width: 100%;
}
.products_v2_small .item .text {
    width: 100%;
    padding: 20px;
    padding-bottom: 110px;
}
.products_v2_small .item .text .redbox {
    left: 0px;
}

@media (max-width: 1100px) {
    .products_start .row .col {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 900px) {
    .products_v1 .item .image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .products_v2 .item {
        display: block;
    }
    .products_v2 .item .image {
        width: 100%;
        height: auto;
    }
    .products_v2 .item .text {
        width: 100%;
        padding: 20px;
        padding-bottom: 110px;
    }
    .products_v2 .item .text .redbox {
        left: 0px;
    }
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
#sidebar {
}
#sidebar section {
    margin-bottom: 20px;
}
#sidebar h2 {
    font-size: 35px;
    line-height: 1;
    color: #e1003a;
    border-bottom: solid 2px #e1003a;
    padding-bottom: 10px;
}
#sidebar .section_aktionsmodelle,
#sidebar .section_new {
}

#sidebar .slick-dots {
    position: relative;
    bottom: 0px;
    margin-top: 5px;
}
#sidebar .slick-dots li {
    margin: 0px 2px;
}
#sidebar .slick-dots li button:before {
    font-size: 15px;
    content: "";
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border: solid 1px #c6c3bb;
    opacity: 1;
    width: 10px;
    height: 10px;
}
#sidebar .slick-dots li.slick-active button:before {
    background: #c6c3bb;
    opacity: 1;
}
#sidebar .slick-dotted.slick-slider {
    margin-bottom: 10px;
}

/* Contact */
#sidebar .contact .image {
    width: 100%;
    line-height: 0px;
}
#sidebar .contact .image img {
    width: 100%;
}
#sidebar .contact .contact_bottom {
    display: flex;
    display: -webkit-flex;
    align-items: stretch;
    justify-content: flex-start;
    background: #c6c3bc;
    padding: 10px 10px 10px 20px;
}
#sidebar .contact_bottom .text {
    font-size: 14px;
}
#sidebar .contact_bottom .text .phone_number {
    font-size: 20px;
}
#sidebar .contact_bottom .icon {
    margin-right: 10px;
    padding-right: 10px;
}

/* Second Choice */
#sidebar .second_choice a {
    background: #e1003a;
    padding: 20px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
    transition: all 0.3s;
    flex-direction: column;
    text-align: center;
    text-transform: uppercase;
    font-family: "ZurichBold";
    border: solid 10px #b70130;
}
#sidebar .second_choice i {
    flex: none;
    border: solid 2px #fff;
    color: #fff;
    font-size: 45px;
    border-radius: 100%;
    width: 70px;
    height: 70px;
    text-align: center;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
#sidebar .second_choice a:hover {
    background: #c50033;
    color: #fff;
}

#sidebar .usp_sidebar {
    background: #c6c3bc;
    color: #fff;
    padding: 25px;
}
#sidebar .usp_sidebar .check_list li {
    font-size: 20px;
    position: relative;
    padding: 5px 0px 5px 25px;
    line-height: 1.2;
    margin-bottom: 5px;
}
#sidebar .usp_sidebar .check_list li:before {
    font-family: "FontAwesome";
    content: "\f058";
    display: inline-block;
    margin-right: 5px;
    color: #e1003a;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    #main_product_section #sidebar {
        display: flex;
        display: -webkit-flex;
        align-items: stretch;
        flex-wrap: wrap;
    }
    #sidebar .second_choice a {
        height: 100%;
    }
    #main_product_section #sidebar section {
        width: 50%;
        padding: 15px;
    }
    #main_product_section #sidebar .products_v2 {
        height: auto;
    }
}
@media (max-width: 630px) {
    #main_product_section #sidebar section {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Paging
--------------------------------------------------------------*/
.paging {
    color: #666;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin: 60px 0;
}

.paging .paging-from-until {
    margin-right: 40px;
}
.paging ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.paging ul li {
    font-size: 32px;
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.paging ul li.prev a,
.paging ul li.next a {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 50px;
    background-color: #e1003a;
    transition: all 0.2s ease-in-out;
}

.paging ul li a {
    color: #666;
}
.paging ul li:hover a,
.paging ul li.active a {
    color: #e1003a;
}

.paging ul li.prev a:before {
    content: "\2039";
    margin-top: -10px;
}
.paging ul li.next a:before {
    content: "\203A";
    margin-top: -10px;
}

.paging ul li.prev:hover a,
.paging ul li.next:hover a {
    background-color: #c00032;
    color: #fff;
}

.paging ul li.prev[disabled] a,
.paging ul li.next[disabled] a {
    background-color: #f0f0f0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .paging {
        margin: 30px 0;
    }
    .paging ul li.prev a,
    .paging ul li.next a {
        width: 40px;
        height: 40px;     
    }
    .paging ul {
        width: 100%;
        justify-content: space-between;
    }
    .paging ul li {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Parallax BG
--------------------------------------------------------------*/
.parallax_bg {
    position: relative;
    line-height: 1.8;
}

/*--------------------------------------------------------------
# Zertifikate
--------------------------------------------------------------*/
#zertifikate h2 {
    margin-bottom: 40px;
}
#zertifikate img {
    margin: 5px;
    height: 80px !important;
}

.certificate-slider {
    display: flex !important;
    /* max-height: 90px; */
}

.certificate-slider .slick-prev:before,
.certificate-slider .slick-next:before {
    color: #595d60;
}

.certificate-slider .slick-prev {
    left: 0;
    z-index: 999;
}
.certificate-slider .slick-next {
    right: 0;
    z-index: 999;
}

.certificate-slider .slick-prev:before {
    content: "\2039";
    font-size: 50px;
    line-height: 0px;
}
.certificate-slider .slick-next:before {
    content: "\203A";
    font-size: 50px;
    line-height: 0px;
}

/*--------------------------------------------------------------
# Main Content Start
--------------------------------------------------------------*/
#main_content_start {
}

.main_content_start_s1 {
}
.main_content_start_s2 {
    background: #e5e5e5;
}

.main_content_start_s2 .col img {
    margin-top: 30px;
}

.main_content_start_s2 .image {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    max-width: 700px;
    line-height: 0;
    padding: 0px 15px;
}
.main_content_start_s2 .col_m7 {
    position: relative;
}
.main_content_start_s2 .image img {
    width: 100%;
}
.main_content_start_s2 .col_m5 {
    padding: 50px 15px 140px 15px;
}
.main_content_start_s1 .col_m5 {
    padding-bottom: 50px;
}

@media (max-width: 1280px) {
    #main_content_start .col_m7 {
        width: 40%;
    }
    #main_content_start .col_m5 {
        width: 60%;
    }
}
@media (max-width: 1245px) {
    #main_content_start .col_m7 {
        width: 50%;
    }
    #main_content_start .col_m5 {
        width: 50%;
    }
}
@media (max-width: 1200px) {
    #main_content_start .col_m7 {
        width: 60%;
    }
    #main_content_start .col_m5 {
        width: 40%;
    }
}
@media (max-width: 1100px) {
    .main_content_start_s2 .image {
        position: relative;
        padding-top: 50px;
    }
    #main_content_start .col_m7 {
        width: 40%;
    }
    #main_content_start .col_m5 {
        width: 60%;
    }
}
@media (max-width: 768px) {
    .main_content_start_s2 .image {
        padding: 0px;
    }
    #main_content_start .col_m7 {
        width: 100%;
    }
    #main_content_start .col_m5 {
        width: 100%;
    }
    .main_content_start_s2 .col_m5 {
        padding: 25px 15px;
    }
    .main_content_start_s1 .col_m5 {
        padding-bottom: 20px;
    }
}

@media (min-width: 768px) {
    #main_content_start {
        margin-bottom: 10px;
    }
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
#breadcrumb {
    margin-top: 40px;
}
#breadcrumb ul {
    list-style-type: none;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
}
#breadcrumb ul li {
    color: #666;
    margin-right: 5px;
}
#breadcrumb ul li a {
    color: #666;
    transition: all 0.3s;
    cursor: pointer;
}
#breadcrumb ul li a:after {
    font-family: "FontAwesome";
    content: "\f105";
    position: relative;
    display: inline-block;
    margin: 0px 5px;
}
#breadcrumb ul li:last-child a:after {
    display: none;
}

/*--------------------------------------------------------------
# Product Section
--------------------------------------------------------------*/

#main_product_section #breadcrumb {
    display: none;
}

#main_product_section .categories h1 {
    margin: 56px 0 72px 0;
}
@media (max-width: 768px) {
    #main_product_section .categories h1 {
        margin: 10px 0 0 0;
    }
}

#main_product_section .categories .categories-header {
    color: #e1003a;
    text-transform: uppercase;
    font-size: 24px;
    font-family: "ZurichBold";
    margin-bottom: 40px;
}

#main_product_section .categories .categories-tree {
    margin-bottom: 100px;
}
@media (max-width: 768px) {
    #main_product_section .categories .categories-tree {
        margin-bottom: 0px;
    }
}

#main_product_section .categories .categories-tree img,
#main_product_section .categories .categories-tree .icon {
    width: 40px;
    color: #acaeaf;
}
#main_product_section .categories .categories-tree > .category {
    margin-bottom: 20px;
}

#main_product_section .categories .categories-tree > .category .category-title,
#main_product_section .categories .categories-tree > .category a {
    color: #333;
    text-transform: uppercase;
    font-size: 24px;
    font-family: "ZurichBold";
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
}
#main_product_section .categories .categories-tree > .category a:hover,
#main_product_section .categories .categories-tree > .category a.active {
    color: #e1003a;
}

#main_product_section .categories .categories-tree > .category > .category a {
    color: #333;
    text-transform: uppercase;
    font-size: 24px;
    font-family: "ZurichHead";
    margin-left: 60px;
}

#main_product_section .categories .categories-tree > .category > .category a.active {
    color: #e1003a;
}

#main_product_section
    .categories
    .categories-tree
    > .category
    > .category
    a:hover {
    color: #e1003a;
}

#main_product_section #filterform select {
    font-size: 20px;
    padding: 10px 20px;
}
#main_product_section .products .item {
    border: solid 1px #ccc;
    display: flex;
    flex-flow: column;
}

/* #main_product_section .products .text {
    margin-bottom: 40px;
} */

/* Productpage Header */

#main_product_section .product_main_infos .product_detail_page h1 {
    margin: 0;
}

.productpage_header {
    margin-top: 40px;
    margin-bottom: 30px;
}

.product_detail_page .productpage_header {
    margin: 0;
}

.productpage_header .pph_section2 .headline {
    color: #e1003a;
    font-size: 22px;
    font-family: "ZurichBold";
    text-transform: uppercase;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    #main_product_section .col_m9 {
        width: 70%;
    }
    #main_product_section .col_m3 {
        width: 30%;
    }
    #main_product_section .productpage_header .col_m3 {
        width: 25%;
    }
    #main_product_section .product_list .col_m4 {
        width: 50%;
    }
    #main_product_section .pph_section2 .col_m4 {
        width: 100%;
    }
    #main_product_section .pph_section2 .headline.empty {
        display: none;
    }
}
@media (max-width: 950px) {
    #main_product_section .product_list .col_m4 {
        width: 100%;
    }
    #main_product_section .col_m9 {
        width: 60%;
    }
    #main_product_section .col_m3 {
        width: 40%;
    }
    #main_product_section .productpage_header .col_m3 {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .productpage_header {
        margin-top: 0px;
    }
    .productpage_header h1 {
        margin-top: 0px;
    }
    #main_product_section .product_list .col_m4 {
        width: 100%;
    }
    #main_product_section .col_m9,
    #main_product_section .col_m3 {
        width: 100%;
    }
    #main_product_section .productpage_header .col_m3 {
        width: 50%;
    }
}

@media (max-width: 430px) {
    #main_product_section .productpage_header .col_m3 {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Product Detail Page
--------------------------------------------------------------*/
.product_detail_page .product_main {
    margin-top: 70px;
}
.product_detail_page .pph_section1 {
    margin-bottom: 10px;
}
.product_detail_page .pph_section2 {
    font-size: 14px;
}

.product_detail_page .product_main {
    margin-bottom: 50px;
}

.product_slider_nav {
    margin-bottom: 0px !important;
    /* padding-left: 30px; */
    height: 100%;
}
.product_slider_nav .slick-track .slick-slide img {
    max-width: 100%;
}
.product_slider_nav .slick-track .slick-slide {
    margin-right: 10px;
}
.product_slider_nav .item {
    border: solid 1px #ccc;
    height: 200px;
    text-align: center;
    padding: 10px;
    cursor: pointer;
}
.product_slider_nav .slick-current .item {
    border-width: 3px;
}
.product_slider_nav .item img {
    height: 100%;
    position: relative;
    margin: 0 auto;
    display: block;
}
.product_slider_nav .slick-slide {
    margin: 10px 0px;
}
.product_slider_nav .slick-list {
    margin: -10px 0px;
    overflow: hidden;
}

.product_slider_nav .slick-dots {
    position: absolute;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: solid 1px #ccc;
    width: 10px;
    left: -14px;
    top: 11px;
    bottom: -9px;
}
.product_slider_nav .slick-dots li {
    flex: 1;
    margin: 0px;
    width: 100%;
}
.product_slider_nav .slick-dots li button {
    height: 100%;
    width: 100%;
    padding: 0px;
}
.product_slider_nav .slick-dots li button:before {
    display: none;
}
.product_slider_nav .slick-dots li.slick-active button {
    background: #c6c3bc;
}

.products_detail_slider {
    border: solid 1px #c6c3bc;
    height: 100%;
}
.products_detail_slider .item {
    display: block;
    position: relative;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
}
.products_detail_slider .item_title {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: rgba(255,255,255,.8);
    padding: 7px 20px;
    font-size: 14px;
    border-top: 1px solid #ccc;
}
.products_detail_slider .item img {
    display: block;
}
.products_detail_slider .slick-list,
.products_detail_slider .slick-track {
    height: 100%;
}

.products_detail_slider .slick-dots {
    margin-bottom: 70px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: 0;
    height: 7px;
    width: 100%;
    transition: all .2s ease-in-out;
}
.products_detail_slider .slick-dots li {
    background-color: #dadadb;
    width: 10%;
    height: 100%;
}

.products_detail_slider .slick-dots li.slick-active {
    background-color: #e1003a;
}

.products_detail_slider .slick-dots li button {
    height: 100%;
    width: 100%;
    padding: 0px;
}
.products_detail_slider .slick-dots li button:before {
    content: "";
    opacity: 1;
}

@media (max-width: 1050px) {
    .product_detail_page .ps_nav_container,
    .product_detail_page .ps_detail_container {
        width: 100%;
    }
    .product_detail_page .product_sliders {
        flex-direction: column-reverse;
        margin-bottom: 40px;
    }

    .product_main > .row > .col_m9 {
        width: 70%;
    }
    .product_main > .row > .col_m3 {
        width: 30%;
    }
}

@media (max-width: 960px) {
    .product_main > .row > .col_m9 {
        width: 65%;
    }
    .product_main > .row > .col_m3 {
        width: 35%;
    }
}

/* Main Infos */
.product_main_infos {
    color: #585c5f;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    font-size: 20px;
}
.product_main_infos h2 {
    font-size: 40px;
    font-family: "ZurichHead";
    font-weight: 100;
    margin: 0;
}
.product_main_infos section {
    width: 100%;
}
.product_main_infos .art-nr {
    font-size: 24px;
    font-family: "ZurichHead";
    margin-bottom: 20px;
}
.product_main_infos form {
    width: 100%;
}
.product_main_infos table {
    width: 100%;
}
.product_main_infos table .table_headline {
    color: #585c5f;
}
.product_main_infos .price_section .price {
    font-family: "ZurichBold";
    font-size: 42px;
    color: #e1003a;
}
.product_main_infos .price_section .listprice {
    font-size: 24px;
    font-family: "ZurichHead";
    color: #585c5f;
}
.product_main_infos .price_section .subtext {
    color: #ccc;
    font-size: 20px;
    margin-top: -10px;
    margin-bottom: 20px;
}
.product_main_infos .stk_section {
    margin-bottom: 20px;
}
.product_main_infos .stk_section .headline {
    font-size: 28px;
    font-family: "ZurichBold";
    color: #585c5f;
}
.product_main_infos .stk_section .available-in-stock .count {
    color: #e1003a;
}
.product_main_infos .stk_section .subtext {
    font-size: 16px;
}
.product_main_infos .payment_icons {
    text-align: right;
    margin-bottom: 10px;
}
.product_main_infos .payment_icons ul {
    list-style-type: none;
}
.product_main_infos .payment_icons ul li {
    display: inline-block;
    color: #c6c3bc;
    font-size: 30px;
    padding: 2px;
}

.payment {
    border: solid 1px #ccc;
    padding: 5px 10px;
    display: inline-block;
    margin-bottom: 20px;
}
.payment_choose {
    font-size: 40px;
    color: #c6c3bc;
    text-align: left;
    margin-bottom: 20px;
}

.product_main_infos .cart_btn a {
    display: block;
    width: 100%;
    padding: 20px 0px;
    margin: 0px;
}
.product_main_infos .cart_btn a:before {
    font-family: "FontAwesome";
    content: "\f07a";
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
}

.product_main_infos .shop_btn a {
    width: 100%;
    font-size: 14px;
    margin: 20px 0 0 0;
}

.product_main_infos .pinfo.product_available {
    text-align: left;
    margin-bottom: 10px;
}

.product_main_infos form#add2basket {
    width: 70%;
}

.product_main_infos .item_count {
    display: flex;
    display: -webkit-flex;
    align-items: stretch;
    justify-content: space-between;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}
.product_main_infos .item_count input {
    margin: 0px;
    flex: 1;
}
.product_main_infos .item_count .box {
    height: auto;
    padding: 10px 20px;
    width: 30%;
    text-align: center;
    color: #aaa69d;
    font-size: 25px;
}
.product_main_infos .item_count .minus,
.product_main_infos .item_count .plus {
    cursor: pointer;
    width: 20%;
    transition: all 0.2s ease-in-out;
}
.product_main_infos .item_count .minus:hover,
.product_main_infos .item_count .plus:hover {
    background-color: #f0f0f0;
}
.product_main_infos .item_count .number {
    color: #e1003a;
    font-family: "ZurichBold";
    border: 0;
}

.product_main_infos #add2basketsubmit {
    text-align: center;
}

@media (max-width: 1050px) {
    .product_main_infos .item_count .box {
        padding: 5px;
    }
}
@media (max-width: 768px) {
    .product_main_infos .payment_icons {
        text-align: left;
    }

    .product_main_infos form#add2basket {
        width: 100%;
    }

    .product_main_infos .item_count {
        margin-bottom: 20px;
    }
    .product_main_infos .cart_btn a {
        margin-bottom: 10px;
    }
}

/* Product Details */

.product_details {
}
.product_details .tabs {
    padding: 30px;
    margin-bottom: 40px;
}

.product_details .tab_content .dotted-list {
    margin-bottom: 10px;
}

.product_details .tab_content .dotted-list .dotted-list-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 5px;
}
.product_details .tab_content .dotted-list .dotted-list-row .dotted-list-label,
.product_details .tab_content .dotted-list .dotted-list-row .dotted-list-value {
    flex-shrink: 0;
}

.product_details .tab_content .dotted-list .dotted-list-row .dotted-list-dots {
    flex: 1;
    border-bottom: 1px dotted #ccc;
}

.product_details h2 {
    font-size: 22px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: solid 1px #c6c3bc;
}
.product_details .zertifikate {
    margin: 0 -5px;
}
.product_details .zertifikate img {
    display: inline-block;
    margin: 5px;
}

@media (max-width: 1050px) {
    .product_details_container > .col_m9 {
        width: 70%;
    }
    .product_details_container > .col_m3 {
        width: 30%;
    }
}
@media (max-width: 960px) {
    .product_details_container > .col_m9 {
        width: 65%;
    }
    .product_details_container > .col_m3 {
        width: 35%;
    }
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
#basket_form .order {
    padding-top: 40px;
}

.cart_details {
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 3%), 0 0 10px 0 rgb(0 0 0 / 10%);
}

.cart_table {
    margin-top: 20px;
    margin-bottom: 20px;
}
.cart_table .item ~ .item {
    border-top: 2px solid #fff;
}
.cart_table .item {
    padding: 30px 20px;
    position: relative;
}
.cart_table .item h3 a {
    color: #595d60;
}
.cart_table .item h3 a:hover {
    color: #e1003a;
}
.cart_table .item .image {
    width: 100%;
    border: solid 1px #c6c3bc;
    margin-bottom: 20px;
}
.cart_table .item .image img {
    width: 100%;
}
.cart_table .item .delete {
    display: block;
    position: absolute;
    top: -5px;
    right: 3px;
    font-size: 28px;
    cursor: pointer;
}
.cart_table .item .delete span {
    display: block;
    transform: rotate(45deg);
    color: #c6c3bc;
    transition: all 0.3s;
}
.cart_table .item .delete:hover span {
    color: #e1003a;
}

.cart_table .item .price {
    font-family: "ZurichBold";
    color: #e1003a;
    font-size: 20px;
}
@media (max-width: 768px) {
    .cart_table .item .price {
        text-align: left;
        margin-top: 20px;
    }
}

.cart_table .item .price sup {
    font-size: 13px;
}
.cart_table .item_count {
    display: flex;
    display: -webkit-flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: 150px;
}
.cart_table .item_count input {
    margin: 0px;
}
.cart_table .item_count .box {
    height: auto;
    padding: 1px;
    width: 30%;
    text-align: center;
    color: #aaa69d;
    border: solid 1px #aaa69d;
    font-size: 17px;
}
.cart_table .item_count .minus,
.cart_table .item_count .plus {
    cursor: pointer;
}
.cart_table .item_count .number {
    color: #e1003a;
    font-family: "ZurichBold";
}

.cart_table_summery .item {
    padding: 10px 0px;
}

/* Cart Nav */

.cart_nav {
    margin-top: 20px;
    margin-bottom: 40px;
}
.cart_nav ul {
    list-style-type: none;
    display: flex;
    display: -webkit-flex;
    align-items: flex-end;
    border-bottom: 2px solid #ccc;
}
.cart_nav li {
    flex: 1;
    margin-right: 0;
    position: relative;
    border-bottom: 2px solid transparent;
    color: #ccc;
}
.cart_nav li a {
    color: #595d60;
    display: flex;
    padding: 10px 20px 10px 10px;
}
.cart_nav li:after {
    font-family: "FontAwesome";
    content: "\f105";
    position: absolute;
    top: 50%;
    right: 5px;
    font-size: 20px;
    margin-top: -17px;
    color: #ccc;
}
.cart_nav li:hover:after a {
    color: #595d60;
}
.cart_nav li:last-child:after {
    display: none;
}
.cart_nav li.current {
    border-color: #e1003a;
}
.cart_nav li.current:after {
    color: #e1003a;
}
.cart_nav li.current a {
    color: #e1003a;
    font-weight: 700;
}
.cart_nav li .number {
    font-family: "ZurichBold";
    display: inline-block;
    margin-right: 5px;
}

/* Cart Sidebar */

.cart_sidebar {
    background: #fff;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 3%), 0 0 10px 0 rgb(0 0 0 / 10%);
}

.cart_sidebar .cart-summary .price {
    text-align: right;
}

.cart_sidebar .cart-summary-product-count {
    border-bottom: 1px solid #ccc;
    padding: 10px 20px;
}

.cart_sidebar .table {
    width: 100%;
    padding: 20px;
    font-size: 15px;
}
.cart_sidebar .table table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 10px;
}
.cart_sidebar .table table td {
    padding: 10px 0px;
}

.cart_sidebar .table table .mwst {
    border-top: 1px solid #ccc;
    font-size: 0;
    line-height: 0;
}
.cart_sidebar .table table .mwst td {
    padding: 5px 0px;
}
.cart_sidebar .cart-summary-total {
    border-top: 1px solid #ccc;
    padding: 20px;
    text-transform: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-family: "ZurichBold";
}

.cart_sidebar .cart-summary-total .price {
    font-weight: 700;
    color: #e1003a;
}

/* Cart Table Footer */

.cart_table_footer {
    width: 100%;
    position: relative;
    padding-top: 10px;
    border-top: solid 3px #f0f0f0;
}
.cart_table_footer .row.nowrap {
    flex-wrap: nowrap;
    align-items: center;
}
.cart_table_footer .line_border {
    border-bottom: dotted 1px #f0f0f0;
    padding-bottom: 3px;
    margin-bottom: 8px;
}
.cart_table_footer .bill {
    border-top: solid 1px #f0f0f0;
    margin-top: 20px;
    padding-top: 5px;
}
.cart_table_footer .price {
    font-family: "ZurichBold";
    font-size: 20px;
}
.cart_table_footer .bill .price {
    color: #e1003a;
    font-size: 23px;
}

/* Cart Bottom Nav */

.cart_bottom_nav {
    float: right;
    width: auto;
    margin-top: 20px;
    margin-bottom: 50px;
}
.cart_bottom_nav ul {
    width: 100%;
    list-style-type: none;
    display: flex;
    display: -webkit-flex;
}
.cart_bottom_nav ul li {
    display: block;
}
.cart_bottom_nav ul li a,
.cart_bottom_nav ul li button {
    margin-top: 0px;
    text-transform: none;
    line-height: 1.2;
    cursor: pointer;
    display: block;
    background: #f0f0f0;
    color: #595d60;
    padding: 5px 20px;
    border: 0;
    transition: all 0.2s ease-in-out;
}
.cart_bottom_nav ul li a i,
.cart_bottom_nav ul li button i {
    display: inline-block;
    margin-right: 5px;
}
.cart_bottom_nav ul li .next i,
.cart_bottom_nav ul li .prev i {
}
.cart_bottom_nav ul li a.next i,
.cart_bottom_nav ul li button.next i {
    margin-right: 0px;
    margin-left: 5px;
}
.cart_bottom_nav ul li a,
.cart_bottom_nav ul li button {
    padding: 10px 20px;
}
.cart_bottom_nav ul li a:hover,
.cart_bottom_nav ul li button:hover {
    background: #e1003a;
    color: #fff;
}
@media (max-width: 768px) {
    .cart_bottom_nav ul li a,
    .cart_bottom_nav ul li button {
        text-align: center;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 5px 10px;
    }
}
@media (max-width: 600px) {
    .cart_bottom_nav ul li a,
    .cart_bottom_nav ul li button {
        font-size: 0.8em;
    }
}

.cart_bottom_nav .weiter_button a,
.cart_bottom_nav .weiter_button button {
    background: #e1003a;
    color: #fff;
    white-space: nowrap;
}
.cart_bottom_nav .weiter_button a:hover,
.cart_bottom_nav .weiter_button button:hover {
    background: #bc0635;
}

.cart_bottom_nav .ordernow {
    background: #e1003a;
    color: #fff;
    font-size: 22px;
    font-family: "ZurichHeadBold";
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart_bottom_nav .ordernow:hover {
    background: #ca0437;
}

/* Cart Content */

.cart_content {
    margin-top: 30px;
}
.cart_content .btn {
    margin: 5px 0px 10px 0px;
    background: #c6c3bc;
    font-size: 15px;
}
.cart_content .infotext {
    font-size: 13px;
    color: #9e9a91;
}
.cart_content section {
    margin-bottom: 30px;
}

.end_check {
    border-top: solid 1px #c6c3bc;
    margin-top: 30px;
    padding-top: 20px;
    margin-bottom: 30px;
}

@media (max-width: 1050px) {
    .cart_sidebar .redbox {
    }
    .cart_sidebar .redbox .left {
        display: none;
    }
    .cart_sidebar .redbox .right {
        width: 100%;
    }

    .order > .container > .row > .col_m9 {
        width: 70%;
    }
    .order > .container > .row > .col_m3 {
        width: 30%;
    }
}

@media (max-width: 900px) {
    .order > .container > .row > .col_m9 {
        width: 100%;
    }
    .order > .container > .row > .col_m3 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cart_nav li {
        flex: auto;
    }
    .cart_nav li:not(.current) .text {
        display: none;
    }
}

#basket_form .cart_sidebar .cart-summary-product-count {
    margin-top: 0px;
}

#submit_order .cart_sidebar .cart-summary-product-count,
#checkoutPaymentMethods .cart_sidebar .cart-summary-product-count,
#checkout1form .cart_sidebar .cart-summary-product-count {
    margin-top: 130px;
}

#basket_form,
#checkout1form,
#checkoutPaymentMethods,
#submit_order {
    margin-top: -30px;
}

#checkoutPaymentMethods {
    padding-bottom: 30px;
}

@media (max-width: 900px) {
    #submit_order .cart_sidebar .cart-summary-product-count,
    #checkoutPaymentMethods .cart_sidebar .cart-summary-product-count,
    #checkout1form .cart_sidebar .cart-summary-product-count {
        margin-top: 0;
    }
}


/* Gastbestellung */

.guest-order-form {
    margin-top: 40px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #707070;
    line-height: 1.8;
    color: #ccc;
    padding-top: 40px;
}
#footer .brand {
    width: 170px;
    height: 60px;
    margin-top: 70px;
    margin-bottom: 20px;
    object-fit: cover;
}
#footer .footer_section {
    margin-bottom: 40px;
}
#footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

#footer ul {
    list-style-type: none;
}
#footer ul li a {
    color: #ccc;
    transition: all 0.3s;
}
#footer ul li a:hover {
    color: #fff;
}

#footer .ico-with-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    line-height: 34px;
}

#footer .ico-with-label.email {
    margin-top: 20px;
}

#footer .trusted_logos {
    padding: 20px 0px 40px 0px;
    text-align: center;
    border-bottom: solid 1px #999;
    margin-bottom: 40px;
}
#footer .trusted_logos img {
    display: inline-block;
    margin: 0px 10px;
}

#footer .social-bar {
    background-color: #6a6a6a;
    padding: 10px 0;
}
#footer .social-bar .social-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer .social-icons {
    display: flex;
    gap: 20px;
}

@media (max-width: 1290px) {
    #footer .social-bar .social-bar-content {
        flex-direction: column;
        gap: 20px;
    }
}

/*--------------------------------------------------------------
# Scrolltop
--------------------------------------------------------------*/
.scrolltop {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: #2e2e2e;
    cursor: pointer;
    text-align: center;
    padding-top: 9px;
    display: none;
    transition: all 0.3s;
    border-radius: 100%;
}
.scrolltop .fa {
    color: #fff;
    font-size: 30px;
}

@media (max-width: 1024px) {
    .scrolltop {
        bottom: 20px;
        right: 20px;
    }
}

/*--------------------------------------------------------------
# Overwrite Styles
--------------------------------------------------------------*/
.no_margins {
    margin: 0px;
}
.row_margin {
    margin-bottom: 40px;
}

.basket_deliver {
    padding-top: 10px;
    font-size: 0.8em;
}

/*--------------------------------------------------------------
# Mobile Filter
--------------------------------------------------------------*/

.categories-toggler {
    display: none;
}
.hide-desktop {
    display: none !important;
}

.filter-row, .filter-row .categories {
    display: flex;
    gap: 5px;
    align-items: center;
    margin: 10px 0;
    font-weight: bold;
}
.filter-row .grow {
    flex-grow: 1;
    color: #e1003a;
        font-size: 22px;
        font-family: "ZurichBold";
        text-transform: uppercase;
}

.filter-row .category a {
    border: solid 1px #ccc;
    font-size: 16px;
    padding: 10px 10px;
    color: #333;
    transition: all .2s ease-in-out;
}

.filter-row .category a.active, .filter-row .category a:hover {
    color: #e1003a;
    border-color: #e1003a;
}
@media (max-width: 1500px) {
    .filter-row .category a {
        font-size: 16px;
        padding: 10px 7px;
    }
}
@media (max-width: 1445px) {
    .filter-row {
        flex-flow: column;
        align-items: flex-start;
    }
    .filter-row .categories {
        justify-content: space-evenly;
    }
    .filter-row .category a {
        font-size: 20px;
        padding: 10px 20px;
    }
}
@media (max-width: 1245px) {
    .filter-row .category a {
        font-size: 16px;
        padding: 10px;
    }
}
@media (max-width: 768px) {
    .categories-toggler {
        display: block;
        text-align: center;
        padding: 10px 30px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    #categories-filter-toggled {
        display: none;
    }
    #categories-filter-toggled section > .category a {
        color: #333;
        text-transform: uppercase;
        font-size: 24px;
        font-family: "ZurichBold";
        display: flex;
        align-items: center;
        transition: all 0.2s ease-in-out;
    }
    #categories-filter-toggled .category a:hover {
        color: #e1003a;
    }
    .hide-mobile {
        display: none;
    }
    .hide-desktop {
        display: unset !important;
    }
    .filter-row .category a {
        font-size: 20px;
    padding: 10px 20px;
    }
    .filter-row {
        display: flex !important;
        flex-flow: row;
        align-items: center;
    }
}
@media (max-width: 445px) {
    .filter-row {
        flex-flow: column;
        align-items: flex-start;
    }
    .filter-row .categories {
        justify-content: flex-start;
    }
    .filter-row .grow {
            color: #e1003a;
            font-size: 22px;
            font-family: "ZurichBold";
            text-transform: uppercase;
            margin-top: 20px;
        
    }
}

.search-wrapper {
    display: flex;
    align-items: stretch;
    gap: 3px;
}
.search-button {
    aspect-ratio: 1;
    background: hsla(0, 0%, 0%, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:19px;
    line-height: 0;
    height: 45px;
    border: 1px solid #ccc;
    transition: .3s linear;
}

.search-button:hover {
    color: #e1003a;
    border-color: #e1003a;
}