/* ==== BASE STYLES ====*/
/* ==================== GLOBAL STYLES ======================= */

@font-face {
    font-family: montserrat-regular;
    src: url(/fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: montserrat-semibold;
    src: url(/fonts/Montserrat-SemiBold.ttf);
}

@font-face {
    font-family: montserrat-bold;
    src: url(/fonts/Montserrat-Bold.ttf);
}

@font-face {
    font-family: montserrat-extrabold;
    src: url(/fonts/Montserrat-ExtraBold.ttf);
}

@font-face {
    font-family: pluto-bold;
    src: url(/fonts/Pluto-Bold.otf);
    font-weight: bold;
}

/* ========================
INCLUDE STYLES AND COMPONENTS
===================== */
/* ================== HELPERS  =================== */
.widgets-wrap {
    display: flex;
    justify-content: space-around;
}

.img-wrap {
    text-align: center;
    display: block;
}

    .img-wrap img {
        max-width: 100%;
    }

.icon-wrap {
    text-align: center;
    display: inline-block;
}

.price-wrap {
    letter-spacing: -0.7px;
}

.content-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 30px;
}

/* =================  DEFINED VARIABLES =================== */
.icon-xs,
.icon-sm,
.icon-md,
.icon-lg {
    display: inline-block;
    text-align: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}

.icon-xs {
    width: 32px;
    height: 32px;
    line-height: 32px !important;
    font-size: 16px;
}

.icon-sm {
    width: 48px;
    height: 48px;
    line-height: 48px !important;
    font-size: 20px;
}

.icon-md {
    width: 60px;
    height: 60px;
    line-height: 60px !important;
    font-size: 28px;
}

.icon-lg {
    width: 96px;
    height: 96px;
    line-height: 96px !important;
    font-size: 42px;
}

.img-xs,
.img-sm,
.img-md,
.img-lg {
    -o-object-fit: cover;
    object-fit: cover;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}

.img-xs {
    width: 40px;
    height: 40px;
}

.img-sm {
    width: 60px;
    height: 50px;
}

.img-md {
    width: 140px;
    height: 140px;
}

.img-lg {
    width: 250px;
    height: 250px;
}

.icon-flag-sm {
    width: 28px;
    margin-right: 10px;
}

.center-xy {
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.center-y {
    top: 50%;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.center-x {
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.vh-100 {
    height: 100vh;
}

.overflow-h {
    overflow: hidden;
}

.flip-h {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.klang-no-desktop {
    display: none;
}

.opacity {
    opacity: 0.2;
}

[class*="hover-"] {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.hover-bg:hover {
    background: #ff6a00;
    /* For browsers that do not support gradients */
    /* For Safari 5.1 to 6.0 */
    /* For Opera 11.1 to 12.0 */
    /* For Firefox 3.6 to 15 */
    background: -webkit-gradient( linear, left top, right bottom, from(#ff6a00), to(#ff6a00) );
    background: linear-gradient(to bottom right, #ff6a00, #ff6a00);
    /* Standard syntax */
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.hover-zoom:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.bordered-cols > [class*="col-"] {
    overflow: hidden;
    border-color: #e5e7ea;
    border-width: 1px 0 0 1px;
    border-style: solid;
}

/* =================  SPACING =================== */
.padding-y {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padding-top {
    padding-top: 30px;
}

.padding-bottom {
    padding-bottom: 30px;
}

.padding-y-lg {
    padding-top: 48px;
    padding-bottom: 48px;
}

.padding-top-lg {
    padding-top: 48px;
}

.padding-bottom-lg {
    padding-bottom: 48px;
}

.padding-y-sm {
    padding-top: 10px;
    padding-bottom: 10px;
}

.padding-top-sm {
    padding-top: 10px;
}

.padding-bottom-sm {
    padding-bottom: 10px;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

var {
    font-style: normal;
}

figure {
    margin-bottom: 0;
}

.form-noborder input,
.form-noborder select,
.form-noborder .btn {
    border: 0;
}

    .form-noborder select.form-control-lg:not([size]):not([multiple]) {
        height: 2.875rem;
    }

/* all clearfix */
article:after,
.form-group:after {
    display: block;
    clear: both;
    content: "";
}

/* =================  SMALL GRID GUTTER =================== */
.row-sm {
    margin-right: -5px;
    margin-left: -5px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .row-sm > [class^="col"] {
        padding-left: 5px;
        padding-right: 5px;
    }

.bg {
    background-color: #f6f7f9;
}

.bg-white {
    background-color: #fff;
}

.bg-orange {
    background-color: #ff6a00;
}

.bg-green {
    background-color: #00b517;
}

.bg-blue {
    background-color: #12225b;
}

.bg-red {
    background-color: #fa3434;
}

.bg-light-orange {
    background-color: #ffdcb0;
}

.bg-light-green {
    background-color: #abeae8;
}

.bg-light-blue {
    background-color: #9fe0ff;
}

.bg-light-red {
    background-color: #fbd5e7;
}

.bg-gradient-blue {
    background: rgba(33, 37, 41, 0.4);
    /* For browsers that do not support gradients */
    /* For Safari 5.1 to 6.0 */
    /* For Opera 11.1 to 12.0 */
    /* For Firefox 3.6 to 15 */
    background: -webkit-gradient( linear, left top, right bottom, from(rgba(18, 34, 91, 0.65)), to(rgba(33, 37, 41, 0.4)) );
    background: linear-gradient( to bottom right, rgba(18, 34, 91, 0.65), rgba(33, 37, 41, 0.4) );
    /* Standard syntax */
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.bg-gradient-green {
    background: rgba(33, 37, 41, 0.4);
    /* For browsers that do not support gradients */
    /* For Safari 5.1 to 6.0 */
    /* For Opera 11.1 to 12.0 */
    /* For Firefox 3.6 to 15 */
    background: -webkit-gradient( linear, left top, right bottom, from(rgba(0, 181, 23, 0.65)), to(rgba(33, 37, 41, 0.4)) );
    background: linear-gradient( to bottom right, rgba(0, 181, 23, 0.65), rgba(33, 37, 41, 0.4) );
    /* Standard syntax */
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.bg-gradient-orange {
    background: rgba(33, 37, 41, 0.4);
    /* For browsers that do not support gradients */
    /* For Safari 5.1 to 6.0 */
    /* For Opera 11.1 to 12.0 */
    /* For Firefox 3.6 to 15 */
    background: -webkit-gradient( linear, left top, right bottom, from(rgba(255, 106, 0, 0.65)), to(rgba(33, 37, 41, 0.4)) );
    background: linear-gradient( to bottom right, rgba(255, 106, 0, 0.65), rgba(33, 37, 41, 0.4) );
    /* Standard syntax */
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.bg-gradient-red {
    background: rgba(33, 37, 41, 0.4);
    /* For browsers that do not support gradients */
    /* For Safari 5.1 to 6.0 */
    /* For Opera 11.1 to 12.0 */
    /* For Firefox 3.6 to 15 */
    background: -webkit-gradient( linear, left top, right bottom, from(rgba(250, 52, 52, 0.65)), to(rgba(33, 37, 41, 0.4)) );
    background: linear-gradient( to bottom right, rgba(250, 52, 52, 0.65), rgba(33, 37, 41, 0.4) );
    /* Standard syntax */
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.bg-gradient-pink {
    background: rgba(33, 37, 41, 0.4);
    /* For browsers that do not support gradients */
    /* For Safari 5.1 to 6.0 */
    /* For Opera 11.1 to 12.0 */
    /* For Firefox 3.6 to 15 */
    background: -webkit-gradient( linear, left top, right bottom, from(rgba(232, 62, 140, 0.65)), to(rgba(33, 37, 41, 0.4)) );
    background: linear-gradient( to bottom right, rgba(232, 62, 140, 0.65), rgba(33, 37, 41, 0.4) );
    /* Standard syntax */
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.overlay-gradient {
    position: relative;
}

    .overlay-gradient:before {
        position: absolute;
        content: "";
        display: block;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.6;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        background: #12225b;
        /* For browsers that do not support gradients */
        /* For Safari 5.1 to 6.0 */
        /* For Opera 11.1 to 12.0 */
        /* For Firefox 3.6 to 15 */
        background: -webkit-gradient( linear, left top, right bottom, from(#ff6a00), to(#12225b) );
        background: linear-gradient(to bottom right, #ff6a00, #12225b);
        /* Standard syntax */
    }

    .overlay-gradient:hover:before {
        opacity: 0.9;
    }

/* =================  TITLES =================== */
.section-heading {
    margin-bottom: 10px;
    margin-top: 10px;
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    padding-top: 9px;
}

.section-title {
    color: #212529;
}

.title-text {
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #212529;
}

.title-page {
    color: #212529;
}

.b {
    font-weight: 600;
}

.white {
    color: #fff;
}

.dark {
    color: #212529;
}

.black {
    color: #000;
}

p:last-child {
    margin-bottom: 0;
}

/* =================  TITLE ELEMENT =================== */
.heading-line {
    position: relative;
}

    .heading-line .title-section {
        position: relative;
        display: inline-block;
        padding-right: 15px;
        background-color: #f6f7f9;
        z-index: 2;
    }

    .heading-line::before {
        top: 35%;
        border-radius: 7px;
        border-top-style: solid;
        content: "";
        position: absolute;
        left: auto;
        right: 0;
        width: 100%;
        height: 0;
        border: 3px solid #dcdee3;
        overflow: hidden;
    }

/* =================  TITLE HELPERS =================== */
.rtl {
    direction: rtl;
}

.ltr {
    direction: ltr;
}

/* =================  SECTIONS =================== */
.section-header {
    background-color: #fff;
    -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.15);
    box-shadow: 0 0 3px rgba(51, 51, 51, 0.15);
    position: fixed;
    width: 100%;
    z-index: 99991;
}

.mainsection {
    position: relative;
    width: 100%;
    height: auto;
}

/* =================  HEADER MAIN =================== */
.header-top-light .nav-link {
    color: #969696;
}

    .header-top-light .nav-link:hover {
        color: #212529;
    }

.header-main {
    position: relative;
    padding-top: 0.5rem;
}

.brand-wrap .logo,
.navbar-brand .logo {
    max-height: 70px;
    display: inline-block;
}

.navbar .navbar-main .nav-link:hover {
    color: #ff6a00;
}

.klang-shopping-num {
    display: flex;
    align-items: center;
}

.klang-analog-shopping {
    font-size: 12px;
    font-weight: 200;
    vertical-align: middle;
}

.klang-contact-team {
    font-family: montserrat-regular;
    text-decoration: none;
    font-size: 0.8rem;
    border: 1px solid #969696;
    padding: 3px;
    cursor: pointer;
}

    .klang-contact-team:hover {
        text-decoration: none;
        background-color: #969696;
        border: 1px solid #969696;
        color: #fff !important;
    }

.klangfarbe-contact-team-profile {
    border: 3px solid #000;
    margin: 20px 0px 10px 0px;
    padding: 10px;
    font-size: 0.8rem;
}

.klang-category-overview-page-content .card-category .card-title {
    font-size: 12.5px;
}
/* =================  COLLAPSIBLE IN NAV MENU =================== */

#klang-vertical-menu {
    color: #000000;
}

    #klang-vertical-menu ul {
        margin-left: -40px;
    }

    /*iconfont styles*/
    #klang-vertical-menu a span {
        font-size: 24px;
        margin-right: 10px;
    }
    /*list items*/
    #klang-vertical-menu li {
        list-style-type: none;
    }
    /*links*/
    #klang-vertical-menu ul ul li a {
        color: #000000;
        text-decoration: none;
        font-size: 14px;
        line-height: 27px;
        display: block;
        padding: 0 15px;
        /*transition for smooth hover animation*/
        transition: all 0.15s;
    }
    /*Lets hide the non active LIs by default*/
    #klang-vertical-menu ul ul {
        display: none;
        margin-left: -10px;
    }

    #klang-vertical-menu li.active ul {
        display: block;
    }

.klang-compare-heading {
    background-color: #000;
    font-size: 1.5rem;
}

.klang-comparison-gallery .slick-slider .slick-prev,
.slick-slider .slick-next {
    height: fit-content;
}
/* =================  SEARCH FIELD AND HEADER WIDGETS =================== */

.search-header {
    border-radius: 0rem;
    margin-top: 10px;
    margin-bottom: 5px;
}

    .search-header .form-control,
    .search-header .custom-select {
        border-color: transparent;
        height: 30px;
    }

/** remove focus on search and other input fields **/
.klang-search-input-group textarea:hover,
.klang-search-input-group input:hover,
.klang-search-input-group textarea:active,
.klang-search-input-group input:active,
.klang-search-input-group textarea:focus,
.klang-search-input-group input:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

.search-header select {
    -ms-flex-preferred-size: 150px !important;
    flex-basis: 150px !important;
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}

.klang-search-input-group {
    max-width: 500px;
    margin: 0 auto;
}

input {
    border: none;
    background-color: transparent;
}

    input:focus,
    select:focus,
    textarea:focus,
    button:focus {
        outline: none;
    }

.klang-search-input-group {
    border: 1px #ededed solid;
}

    .klang-search-input-group:hover {
        border: 1px #000000 solid;
    }

.klang-search-result,
.klang-product-list-availability {
    color: #00b601;
}

.klang-input-group-product-detail > .input-group-prepend > .btn {
    border-color: #000;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.klang-input-group-product-detail.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
    border-color: #000;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group span i {
    padding-left: 5px;
    padding-top: 4px;
    font-size: 1.3rem;
}

/** reveal more fields if certain radio or checkboxes are checked **/

input[type="radio"]:checked ~ .reveal-if-active,
input[type="checkbox"]:checked ~ .reveal-if-active {
    opacity: 1;
    max-height: 850px;
    /* little bit of a magic number :( */
    overflow: visible;
}

.reveal-if-active {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    /*transform: scale(0.9);*/
    transition: 0.5s;
}


.widget-header {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

    .widget-header .widget-view {
        padding: 2px 2px;
        display: inline-block;
        position: relative;
        text-align: center;
    }

    .widget-header .icon-area {
        font-size: 24px;
        display: inline-block;
        width: 36px;
        height: 30px;
        color: #969696;
    }

        .widget-header .icon-area .notify {
            position: absolute;
            top: 0px;
            right: 8%;
        }

    .widget-header .icon {
        color: #969696;
    }

        .widget-header .icon .notify {
            position: absolute;
            top: 0;
            right: 0;
        }

.klang-svg-icon-eye {
    max-width: 32px;
}

.klang-svg-icon-search {
    max-width: 25px;
}

.klang-svg-icons-hands {
    max-width: 25px;
}

.widget-header .text {
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    line-height: 1.2;
}

.widget-header a {
    color: #212529;
}

.widget-header form {
    min-width: 280px;
}

.widget-header i {
    color: #212529;
}

.widget-header:hover i {
    color: #212529;
}

/* ================ SECTION SITE NAVIGATION MAIN ==================  */

.klang-category-section {
    border: 2px solid #d3d3d3;
    margin-bottom: 2%;
    height: 63px;
    padding: 4px;
    position: relative;
}

    .klang-category-section span {
        font-family: montserrat-extrabold;
    }

.klang-site-nav a:hover {
    color: #000000;
}

.klang-category-section span {
    position: absolute;
    top: 15px;
    left: 13px;
}

.klang-category-section:hover {
    border-color: black;
}

.klang-category-section-text {
    font-size: 1.1rem;
    font-family: montserrat-semibold;
}

.klang-category-section-image {
    float: right;
    width: 70px;
}

.card-category a span {
    font-size: 0.8rem;
    font-family: montserrat-regular;
    font-weight: normal;
}

/* ================ SECTION VIRTUAL-TOUR ==================  */

.container-klang-tour {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.klang-responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.klang-responsive-iframe-product-detail {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding-bottom: 10px;
}

/* desktop only */
/* desktop only .end */

/* ================ SECTION-FOOTER ==================  */

.section-footer ul li {
    margin-bottom: 5px;
    font-weight: normal;
}

.section-footer ul a {
    color: inherit;
}

    .section-footer ul a:hover {
        color: #ff6a00;
    }

.section-footer .logo-footer {
    height: 40px;
}

.section-footer .title {
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 18px;
}



.footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: normal;
    border-top: 1px solid #333;
    margin-top: -15px;
}

.klang-payment {
    border-top: 1px solid #333;
}

.footer-copyright {
    padding-top: 20px;
    padding-bottom: 20px;
}

.title.klang-versand {
    font-size: 0.9rem;
}

    .title.klang-versand span {
        margin-left: -20px;
    }

.klang-footer,
.klang-footer a {
    background-color: #3c3c3c;
    color: white;
}

/* ================== COMPONENTS =================== */

.btn-facebook {
    background-color: #405d9d;
    color: #fff;
}

    .btn-facebook:hover {
        color: #fff;
    }

.klang-social-media-product-page .btn-icon i {
    color: grey;
    font-size: 0.8rem;
}

.btn-instagram {
    background-color: #e52d27;
    color: #fff;
}

    .btn-instagram:hover {
        color: #fff;
    }

.btn-youtube {
    background-color: #c8046c;
    color: #fff;
}

    .btn-youtube:hover {
        color: #fff;
    }

.btn-twitter {
    background-color: #42aeec;
    color: #fff;
}

    .btn-twitter:hover {
        color: #fff;
    }

.btn-google {
    background-color: #af0000;
    color: #fff;
}

    .btn-google:hover {
        color: #fff;
    }

.btn-icon {
    width: 20px;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}

    .btn-icon i {
        line-height: 1;
        font-size: 1.3rem;
    }

.btn-light {
    background-color: #fff;
    border-color: #e5e7ea;
}

    .btn-light i {
        color: #000000;
    }

    .btn-light:hover {
        background-color: #fff;
        border-color: #9099a6;
    }

    .btn-light.active i {
        color: #ff6a00;
    }

.btn .text + i {
    margin-left: 10px;
}

.btn i + .text {
    margin-left: 10px;
}

.btn-klang-warenkorb {
    border-radius: 0px;
    border: 3px solid #ff6a00;
    width: 300px;
}

.btn-klang-warenkorb-product-listing {
    border-radius: 0px;
    border: 3px solid #ff6a00;
    width: 100%;
}

.btn-klang-warenkorb-blog-page {
    border-radius: 0px;
    border: 3px solid #ff6a00;
    font-size: 0.8rem;
    width: 100%;
    padding: 0.45rem 0.25rem;
}

.btn-klang-warenkorb-product-listing span,
.detailbullets,
.listetext {
    font-size: 0.8rem;
}

.btn-klang-warenkorb:hover {
    background-color: transparent;
    border: 3px solid #ff6a00;
    color: #000;
}

.btn-klang-warenkorb-product-listing:hover {
    background-color: transparent;
    border: 3px solid #ff6a00;
    color: #000;
}

.btn-klang-warenkorb-blog-page:hover {
    background-color: transparent;
    border: 3px solid #ff6a00;
    color: #000;
}

.btn-klang-frage {
    border: 3px solid #000000;
    border-radius: 0px;
    width: 300px;
}

.btn-sm,
.btn-group-sm > .btn {
    margin-left: 10px;
    vertical-align: baseline;
    border-radius: 0px;
}

.cookiealert a {
    color: #ff6a00;
    font-size: 0.7rem;
}

.cookiealert {
    background-color: #000;
}

.klang-compare-btn {
    border: 3px solid #000000;
    border-radius: 0px;
    width: auto;
    max-width: 100%;
    color: #000;
    font-size: 14px;
    background-color: transparent;
}

    .klang-compare-btn:hover {
        border: 3px solid grey;
        color: #000;
        background-color: transparent;
    }

.klang-category-kontakt {
    border: 3px solid #000000;
    border-radius: 0px;
    width: 220px;
    color: #000;
    background-color: transparent;
}

    .klang-category-kontakt:hover,
    .klang-category-kontakt:not(:disabled):not(.disabled):active {
        border: 3px solid grey;
        color: #000;
        background-color: transparent;
    }

.klang-register-btn {
    border: 3px solid #000000;
    border-radius: 0px;
    width: 100%;
    color: #000;
    background-color: transparent;
}

    .klang-register-btn:hover,
    .klang-category-kontakt:not(:disabled):not(.disabled):active {
        border: 3px solid grey;
        color: #000;
        background-color: transparent;
    }

.klang-filter-btn {
    border: 3px solid #000000;
    background-color: transparent;
    color: #000;
}

    .klang-filter-btn:hover {
        border: 3px solid grey;
        color: #000;
        background-color: transparent;
    }

.klang-grid-filter-list {
    font-size: 0.9rem;
}

.btn-klang-frage-product-listing {
    border: 3px solid #000000;
    border-radius: 0px;
    width: 40px;
    color: #000;
    padding-top: 0;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 0;
    font-size: 0.8rem;
}

    .btn-klang-frage-product-listing:hover {
        border: 3px solid grey;
        color: #000;
        background-color: transparent;
    }

.btn-klang-zuruck:hover {
    border: 3px solid grey;
    color: #000;
    background-color: transparent;
}

.btn-klang-zuruck {
    border: 3px solid #000000;
    border-radius: 0px;
    width: 30%;
    color: #000;
    font-size: 0.8rem;
}

.btn-klang-frage-blog-page {
    border: 3px solid #000000;
    border-radius: 0px;
    color: #000;
    font-size: 0.8rem;
    width: 100%;
    padding: 0.45rem 0.25rem;
}

    .btn-klang-frage-blog-page:hover {
        border: 3px solid grey;
        color: #000;
        background-color: transparent;
    }

.btn-klang-frage i,
.btn-klang-frage-product-listing i {
    color: #000;
}

.klang-btn-coupon {
    border-radius: 0px;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
}

    .klang-btn-coupon:hover {
        background-color: #fff;
        color: #000;
        border: 2px solid #000;
    }

.klang-cart-next {
    border: 3px solid #ff6a00;
}

    .klang-cart-next:hover {
        color: #000;
        border: 3px solid #ff6a00;
        background-color: transparent;
    }

.klang-cart-form-payment-method {
    width: 70px;
    margin-right: 30px;
}

/*** Klang gutschein  ***/

.klang-gutschein-bg-1 {
    background-image: url("/images/banners/gutschein-bg1.jpg");
    background-color: #fff;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
    height: 600px;
    width: 500px;
}

.klang-qr-code img {
    display: block;
    margin: 0 auto;
}

.klang-qr-code {
    text-align: center;
}

.klang-gutschein-info {
    color: #fff;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 25em;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 22%;
}

.klang-bg-filter {
    background-color: #000;
    opacity: 0.5;
    height: 600px;
}

.klang-gutschein-value {
    font-family: pluto-bold, Arial, "Helvetica Neue", "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 6rem;
    border: 7px solid #ffffff;
    padding: 0 8% 0 8%;
    -webkit-box-shadow: 10px 10px 18px -9px rgba(0, 0, 0, 1);
    -moz-box-shadow: 10px 10px 18px -9px rgba(0, 0, 0, 1);
    box-shadow: 10px 10px 18px -9px rgba(0, 0, 0, 1);
}

.klang-gutschein-title {
    font-family: pluto-bold, Arial, "Helvetica Neue", "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 3rem;
    border: 7px solid #ffffff;
    padding: 0 1% 0 1%;
    text-transform: uppercase;
    -webkit-box-shadow: 10px 10px 18px -9px rgba(0, 0, 0, 1);
    -moz-box-shadow: 10px 10px 18px -9px rgba(0, 0, 0, 1);
    box-shadow: 10px 10px 18px -9px rgba(0, 0, 0, 1);
}

.klang-gutschein-logo img {
    padding-top: 70px;
    width: 220px;
}

/*** Klang cart page step arrows  ***/

.klang-arrow-cart-items--container {
    display: flex;
    flex-direction: row;
}

.klang-arrow-cart-item {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    position: relative;
    margin-left: 1rem;
    width: 350px;
    height: 50px;
    margin-bottom: 10px;
}

    .klang-arrow-cart-item.active .klang-arrow-cart-content,
    .klang-arrow-cart-item.active .klang-arrow-cart-content-mobile {
        color: #ffffff;
    }

    .klang-arrow-cart-item.active .klang-arrow-cart {
        background: #000;
    }

.klang-arrow-cart-content,
.klang-arrow-cart-content-mobile {
    color: #000000;
    position: absolute;
    z-index: 2;
}

.klang-arrow-cart {
    width: 100%;
    height: 50%;
    background: #ffffff;
}

    .klang-arrow-cart.top {
        transform: skew(45deg, 0deg);
        border-left: 1px solid #000;
        border-right: 1px solid #000;
        border-top: 1px solid #000;
    }

    .klang-arrow-cart.bottom {
        transform: skew(-45deg, 0deg);
        border-left: 1px solid #000;
        border-right: 1px solid #000;
        border-bottom: 1px solid #000;
    }

.klang-arrow-cart-content-mobile {
    display: none;
}

/*** Klang cart page step arrows end ***/

.klang-align-payment-method {
    margin-left: 104px;
}

.itemside {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

    .itemside .aside {
        position: relative;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .itemside .info {
        padding-left: 10px;
        padding-right: 0px;
    }

    .itemside p {
        margin-bottom: 0;
    }

    .itemside .title {
        display: block;
        margin-bottom: 5px;
        color: #212529;
    }

.klang-cart-product-title a {
    font-size: 0.9rem;
}

.klang-availability p {
    text-align: center;
}

.klang-availability i {
    color: #0fb40f;
}

.itemside a.title:hover {
    color: #ff6a00;
}

a.itemside {
    color: initial;
}

.items-bordered-wrap .itemside:not(:last-child) {
    border-bottom: 1px solid #e5e7ea;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.itemlist {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.list-inline {
    margin-bottom: 0;
}

.list-inline-item {
    vertical-align: middle;
}

/* --------- description list --------*/
dl[class="row"] {
    margin-bottom: 0;
}

[class*="dlist-"] {
    margin-bottom: 5px;
}

    [class*="dlist-"] dd {
        margin-bottom: 0;
    }

.dlist-inline dt,
.dlist-inline dd {
    display: inline-block;
}

.dlist-align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .dlist-align dt {
        width: 120px;
        word-wrap: break-word;
        font-weight: normal;
    }

    .dlist-align dd {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

/* -------------------- list.row--------------------- */
ul.row,
ul.row-sm {
    list-style: none;
    padding: 0;
}

/* =================  LISTS =================== */

[class*="list-"] li:after {
    visibility: hidden;
    display: block;
    content: "";
    overflow: hidden;
    height: 0;
    clear: both;
}

.list-icon {
    list-style: none;
    padding-left: 0;
}

    .list-icon li {
        margin-bottom: 7px;
        position: relative;
        padding-left: 30px;
    }

    .list-icon .icon {
        width: 22px;
        margin-right: 15px;
        vertical-align: middle;
        text-align: center;
        position: absolute;
        top: 3px;
        left: 0;
    }

    .list-icon span {
        vertical-align: middle;
    }

.list-bullet {
    list-style: none;
    padding-left: 0;
}

    .list-bullet li {
        margin-bottom: 5px;
        position: relative;
        padding-left: 15px;
    }

        .list-bullet li::before {
            content: " ";
            position: absolute;
            top: 8px;
            left: 0;
            width: 7px;
            border-radius: 100%;
            height: 7px;
            background: #ced4da;
        }

.list-check {
    padding-left: 0;
    list-style: none;
}

    .list-check > li {
        position: relative;
        padding-left: 24px;
        margin-bottom: 7px;
    }

        .list-check > li::before {
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            font-size: 13px;
            color: #00b517;
            position: absolute;
            top: 3px;
            left: 0;
            content: "\f00c";
        }

.list-normal {
    list-style: none;
    padding-left: 0;
}

    .list-normal li {
        padding-left: 1em;
        margin-bottom: 7px;
    }

        .list-normal li:before {
            content: "\2022";
            color: #ff6a00;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

.list-menu {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

    .list-menu li {
        margin-bottom: 5px;
    }

    .list-menu a {
        color: #212529;
    }

        .list-menu a:hover {
            color: #ff6a00;
        }

.cols-two {
    -webkit-column-count: 2;
    column-count: 2;
}

.cols-three {
    -webkit-column-count: 3;
    column-count: 3;
}

.cols-four {
    -webkit-column-count: 4;
    column-count: 4;
}

/* IF CARD IS LINKED */
a[class*="card"] {
    color: initial;
}

    a[class*="card"]:hover .title {
        color: #ff6a00;
    }

/* BASE STYLE FOR PRODUCT ITEM */
[class*="card-product"] a.title {
    color: #212529;
    display: block;
    
}

    [class*="card-product"] a.title:hover {
        color: #ff6a00;
    }

[class*="card-product"] .img-wrap .badge {
    top: 10px;
    left: 10px;
    position: absolute;
}

[class*="card-product"] p {
    margin-bottom: 0;
}

[class*="card-product"] .img-wrap {
    overflow: hidden;
    position: relative;
}

    [class*="card-product"] .img-wrap img {
        /*height: 100%;*/
        width: 100%;
        /*width: auto;
  display: inline-block;
  -o-object-fit: cover;
  object-fit: cover;*/
    }

/* =================  GRID STYLE PRODUCT ITEM =================== */

.card-product-grid {
    margin-bottom: 20px;
    /* cursor: pointer; */
}

    .card-product-grid .img-wrap {
        height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card-product-grid .info-wrap {
        overflow: hidden;
        padding: 16px;
    }

        .card-product-grid .info-wrap a {
            font-size: 0.8rem;
        }

    .card-product-grid .title {
        font-size: 1rem !important;
    }

.klang-price-strikethrough {
    font-size: 14px;
    color: #6c83b4;
}

.klang-products-bottom-hr {
    margin-top: -5px;
    margin-bottom: 3rem;
}

.card-product-grid .bottom-wrap {
    padding: 16px;
    border-top: 1px solid #e5e7ea;
}

.card-product-grid .topbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    left: 0;
    text-align: initial;
    padding: 10px 15px;
}

    .card-product-grid .topbar a {
        color: #ccc;
    }

        .card-product-grid .topbar a:hover {
            color: #ff6a00;
        }

.card-product-grid .fix-height {
    height: 80px;
    overflow: hidden;
}

.card-product-grid .btn-overlay {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    left: 0;
    bottom: 0;
    color: #fff;
    width: 100%;
    padding: 5px 0;
    text-align: center;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
}

.card-product-grid:hover .btn-overlay {
    opacity: 1;
}

/*remove box-shadow on card for now */

/*.card-product-grid:hover {
  -webkit-box-shadow: 0 4px 15px rgba(153, 153, 153, 0.3);
  box-shadow: 0 4px 15px rgba(153, 153, 153, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}*/
.item-slide .card-product-grid {
    margin-bottom: 0;
}

/* =================  LARGE LIST STYLE PRODUCT ITEM =================== */

.card-product-list {
    margin-bottom: 20px;
}

    .card-product-list .img-wrap {
        height: 220px;
        border-radius: 0.37rem 0 0 0.37rem;
    }

    .card-product-list .info-main {
        padding: 5px;
    }

    .card-product-list .info-aside {
        padding: 5px;
        border-left: 1px solid #e5e7ea;
        height: 100%;
        width: 100%;
    }

    .card-product-list:hover {
        -webkit-box-shadow: 0 4px 15px rgba(153, 153, 153, 0.3);
        box-shadow: 0 4px 15px rgba(153, 153, 153, 0.3);
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

.card-sm {
    min-height: 284px;
}

    .card-sm .img-wrap {
        height: 180px;
    }

.card-lg .img-wrap {
    height: 280px;
}

.card-category {
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
    min-height: 800px;
}

    .card-category .card-title {
        font-weight: 800;
        font-size: 18px;
    }

.card-title.klang-blog-post-title {
    font-size: 2rem;
    text-transform: uppercase;
}

.klang-card {
    border: 1px solid #d8d8d8;
    height: 188px;
    margin-bottom: 10px;
}

.btn-card-klang {
    padding: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: -5px;
    font-family: montserrat-bold;
}

.klang-save-button {
    display: block;
    margin: 0 auto;
}

/** remove safari btn style foe widget headers **/

#zuletzt-gesehen button,
[type="button"],
#warenkorb button,
[type="button"] {
    -webkit-appearance: none !important;
}

.klang-save-button:before {
    content: "\f0c7";
    font-family: "Font Awesome 5 Free";
    padding-right: 10px;
}

.btn-card-klang:hover {
    border-radius: 0px;
    border: 2px solid #000000;
}

.klang-card-image img {
    height: 187px;
}

.klang-card h5 {
    margin-top: 5px;
    max-width: 180px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.klang-card-text {
    font-weight: normal;
    margin-top: -9px;
    max-width: 190px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.5;
    font-size: 0.9rem;
}

.klang-card-text-product-detail p {
    font-weight: normal;
    line-height: 1.5;
    font-size: 0.9rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.klang-full-description p {
    font-weight: normal;
}

.klang-workshops-date {
    font-weight: normal;
    font-size: 0.8rem;
    margin-top: 6px;
}

.klang-one-panel-heading,
.klang-two-panel-heading,
.klang-three-panel-heading,
.klang-four-panel-heading,
.klang-five-panel-heading {
    border: 7px solid #fff;
    display: block;
    margin: 0 auto;
    text-transform: uppercase;
    text-align: center;
}

.klang-one-panel-heading {
    width: 50%;
    margin-top: 15%;
    padding: 2%;
    margin-left: 100px;
    font-size: 2rem;
}

.klang-two-panel-heading {
    width: 53%;
    margin-bottom: 10px;
    margin-top: 2%;
    font-size: 2rem;
    padding: 2%;
}

.klang-three-panel-heading {
    width: 36%;
    margin-top: 8%;
    font-size: 2rem;
    padding: 2%;
}

.klang-four-panel-heading {
    width: 59%;
    margin-bottom: 10px;
    margin-top: 2%;
    font-size: 2rem;
    padding: 2%;
}

.klang-five-panel-heading {
    width: 80%;
    margin-bottom: 10px;
    margin-top: 26%;
    font-size: 3.5rem;
    padding: 3%;
}

.klang-onsale .card-banner-lg .card-img {
    border: 3px solid green;
    height: 386px;
}

.klang-card-height {
    height: 400px;
}

.klang-panel-btn {
    display: block;
    margin: 0 auto;
    max-width: 190px;
    background-color: transparent;
    border-radius: 0px;
    border: 3px solid transparent;
    text-transform: uppercase;
    color: white;
}

    .klang-panel-btn:hover {
        background-color: transparent;
        border-radius: 0px;
        border: 3px solid #fff;
        text-transform: uppercase;
        color: white;
    }

.klang-site-nav-heading {
    background-color: black;
    color: white;
    padding: 10px;
}

.card-category .img-wrap {
    overflow: hidden;
    /*display: inline-block;*/
    height: 170px;
    background: #fff0c5;
}

    .card-category .img-wrap img {
        height: 100%;
        width: 60%;
        -o-object-fit: cover;
        object-fit: cover;
        mix-blend-mode: multiply;
    }

.card-category .list-menu a:hover {
    margin-left: 3px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.card-category:hover {
    border-color: #ff6a00;
}

.card-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    background-size: cover;
    background-position: center center;
}

    .card-banner .card-body {
        background-size: cover;
        position: relative;
        z-index: 10;
    }

    .card-banner .caption {
        background-color: rgba(0, 0, 0, 0.65);
        z-index: 10;
        padding: 1.25rem;
        color: #fff;
    }

        .card-banner .caption.bottom {
            bottom: 0;
            left: 0;
            position: absolute;
            width: 100%;
        }

        .card-banner .caption.top {
            top: 0;
            left: 0;
            position: absolute;
            width: 100%;
        }

        .card-banner .caption.left {
            top: 0;
            left: 0;
            bottom: 0;
            position: absolute;
        }

    .card-banner .text-bottom {
        position: absolute;
        left: 0;
        bottom: 0;
        left: 0;
        z-index: 10;
        width: 100%;
        padding: 7px 20px;
        padding-top: 30px;
        border-radius: 0 0 0.37rem 0.37rem;
        background: -webkit-gradient( linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)) );
        background: linear-gradient( to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100% );
        color: #fff;
    }

    .card-banner .img-bg {
        position: absolute;
        right: 0;
        bottom: 0;
        mix-blend-mode: multiply;
        max-width: 100%;
    }

.card-banner-lg img {
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
}

.card-post .card-img-top {
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}

.card .img-wrap {
    overflow: hidden;
}

.icontext {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    vertical-align: middle;
}

    .icontext p {
        margin-bottom: 0;
    }

    .icontext .text {
        width: 100%;
        color: #212529;
    }

    .icontext .icon {
        position: relative;
        margin-right: 10px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
    }

    .icontext .title {
        display: block;
        margin-bottom: 0;
    }

.tag {
    display: inline-block;
    padding: 3px 7px;
    background: #f2f2f2;
    border: 1px solid #eee;
    border-radius: 3px;
    margin-top: 0px;
    margin-right: 2px;
    font-size: 85%;
}

.item-logo {
    margin-bottom: 20px;
    text-align: center;
}

    .item-logo img {
        max-height: 65px;
    }

.timer > div {
    display: inline-block;
    text-align: center;
    margin-right: 5px;
}

.timer .num {
    padding: 7px 3px;
    display: block;
    background-color: #212529;
    min-width: 44px;
    color: #fff;
    font-size: 22px;
    border-radius: 6px;
    line-height: 1.2;
}

.notify {
    position: absolute;
    top: -4px;
    right: -10px;
    display: inline-block;
    padding: 0.25em 0.6em;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    font-weight: 300;
    border-radius: 3rem;
    color: #fff;
    background-color: #fa3434;
}

.price {
    font-weight: 600;
    color: #212529;
    font-family: montserrat-extrabold;
}

.price-old {
    color: #969696;
    margin-left: 5px;
}

.midgray {
    color: #969696;
}

.icon-control {
    margin-top: 5px;
    float: right;
    font-size: 80%;
}

.card-header .title {
    margin-bottom: 0;
    line-height: 1.5;
}

.filter-group {
    border-bottom: 1px solid #e5e7ea;
    margin-top: 10px;
    padding-bottom: 10px;
}

    .filter-group .title {
        margin-bottom: 0;
    }

    .filter-group:last-child {
        border-bottom: 0;
    }

    .filter-group .inner {
        padding-top: 16px;
        padding-bottom: 7px;
    }

/* =================  BLOCK =================== */

.box {
    padding: 18px;
    background: #fff;
    border: 1px solid #e5e7ea;
}

    .box img {
        max-width: 100%;
    }

/* ================= RATINGS ============== */
.label-rating {
    margin-left: 7px;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
}

/* rating-list */
.rating-stars {
    display: inline-block;
    vertical-align: middle;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    white-space: nowrap;
    clear: both;
}

    .rating-stars img {
        height: 14px;
        max-width: none;
    }

    .rating-stars i {
        font-size: 14px;
        color: #ccc;
        display: inline;
    }

    .rating-stars li {
        display: block;
        text-overflow: clip;
        white-space: nowrap;
        z-index: 1;
    }

        .rating-stars li.stars-active {
            z-index: 2;
            position: absolute;
            top: 0;
            left: 0;
            overflow: hidden;
        }

            .rating-stars li.stars-active i {
                color: orange;
            }

.nav-home-aside {
    width: 250px;
}

    .nav-home-aside .menu-category {
        margin: 0;
        padding: 0;
    }

        .nav-home-aside .menu-category li {
            position: relative;
            display: block;
            border-bottom: 1px solid #e5e7ea;
        }

        .nav-home-aside .menu-category a {
            color: #212529;
        }

        .nav-home-aside .menu-category > li > a {
            display: block;
            padding: 10px 0px;
        }

        .nav-home-aside .menu-category .submenu {
            display: none;
            margin: 0;
            padding: 0;
            -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 20;
            position: absolute;
            left: 100%;
            top: 0;
            width: 250px;
            background: #fff;
        }

            .nav-home-aside .menu-category .submenu li {
                list-style: none;
            }

                .nav-home-aside .menu-category .submenu li a {
                    padding: 10px 16px;
                    display: block;
                }

        .nav-home-aside .menu-category a:hover {
            color: #ff6a00;
            -webkit-transition: all 0.3s;
            transition: all 0.3s;
        }

        .nav-home-aside .menu-category li:hover .submenu {
            display: block;
            margin-left: 0px;
        }

        .nav-home-aside .menu-category .has-submenu > a:after {
            content: "\203A";
            font-size: 24px;
            color: #999;
            line-height: 18px;
            font-weight: bold;
            float: right;
        }

.vl {
    border-left: 1px solid #999;
    height: 340px;
    z-index: 10000;
}

.dropdown-large {
    padding: 20px;
}

    .dropdown-large a {
        display: block;
        color: #212529 !important;
        padding: 5px 0;
        font-weight: normal;
    }

        .dropdown-large a:hover {
            color: #ff6a00 !important;
        }

.form-inline input[type="number"] {
    max-width: 100px;
}

.input-spinner {
    width: 120px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

    .input-spinner input.form-control {
        text-align: center;
        max-width: 46px;
        -ms-flex-preferred-size: 46px;
        flex-basis: 46px;
        border-color: #000;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
    }

    .input-spinner .btn {
        width: 36px;
        text-align: center;
    }

.checkbox-btn {
    position: relative;
}

    .checkbox-btn input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }

        .checkbox-btn input:checked ~ .btn {
            border-color: #ff6a00;
            background-color: #ff6a00;
            color: #fff;
        }

.js-check {
    position: relative;
}

    .js-check .title {
        margin-left: 20px;
    }

    .js-check input {
        position: absolute;
        top: 21px;
        left: 16px;
    }

    .js-check.active {
        border-color: #ff6a00;
    }

    .js-check.box {
        width: 100%;
        border-width: 3px;
    }

/* ================== PAGES =================== */

body {
    background-color: #f6f7f9;
    position: relative;
}


/* ================ PAGES HEADER ================== */
.section-pagetop {
    padding: 45px 0;
}

.slider-home-banner .carousel-item img {
    width: 100%;
    height: 550px;
    -o-object-fit: cover;
    object-fit: cover;
}

.carousel-item .card {
    border-right: 1px solid #c8c8c8 !important;
    height: 390px;
    padding-right: 25px;
    width: 100%;
}

.special-home-right .card-banner {
    min-height: 112px;
}

.card-deal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

    .card-deal .col-heading {
        min-width: 300px;
        -ms-flex-preferred-size: 350px;
        flex-basis: 350px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .card-deal .row {
        width: 100%;
    }

    .card-deal .items-wrap > [class*="col"] {
        border-left: 1px solid #e5e7ea;
    }

    .card-deal .card-product-grid {
        margin-bottom: 0;
        text-align: center;
    }

.home-category-banner {
    position: relative;
    padding: 30px;
    height: 100%;
    overflow: hidden;
}

    .home-category-banner .img-bg {
        position: absolute;
        right: -50px;
        bottom: -50px;
        mix-blend-mode: multiply;
        height: 260px;
    }

.card-home-category .item .card-body::after {
    content: "";
    display: table;
    clear: both;
}

.card-home-category .item .title {
    min-height: 40px;
    font-weight: 500;
}

.card-home-category .item:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.banner-quote {
    min-height: 350px;
}

.section-subscribe {
    background-color: #162a70;
}

/* ================== PAGE DETAILS ==================  */
.item-option-select {
    margin-bottom: 1rem;
    display: inline-block;
    margin-right: 15px;
}

    .item-option-select .btn {
        min-width: 80px;
    }

.title-description:not(:first-child) {
    margin-top: 30px;
}

/* ================ PAGES HEADER ================== */

/* shopping-cart */
.table-shopping-cart.table td,
.table-shopping-cart.table th {
    padding-left: 15px;
    padding-right: 15px;
}

.table-shopping-cart.table th {
    font-size: 0.6rem;
    text-align: center;
}

.table-shopping-cart .price-wrap {
    line-height: 1.2;
}

.table-shopping-cart .price {
    font-weight: bold;
    margin-right: 5px;
    display: block;
}

.klang-table-normal {
    font-weight: normal;
}

html[dir="rtl"] .card-banner .img-bg {
    right: auto;
    left: 0;
}

html[dir="rtl"] .heading-line .title-section {
    padding-left: 15px;
}

html[dir="rtl"] .home-category-banner .img-bg {
    right: auto;
    left: -50px;
}

html[dir="rtl"] .icon-flag-sm {
    margin-right: auto;
    margin-left: 10px;
}

html[dir="rtl"] .list-check {
    padding-right: 0;
}

    html[dir="rtl"] .list-check > li {
        padding-right: 24px;
    }

        html[dir="rtl"] .list-check > li:before {
            right: 0;
            left: auto;
        }

html[dir="rtl"] .icontext .icon {
    margin-right: auto;
    margin-left: 10px;
}

html[dir="rtl"] .itemside .info {
    padding-right: 15px;
    padding-left: initial;
}
/*# sourceMappingURL=ui.css.map */

/** side navigation overlay all pages **/

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    border-right: 1px solid #000000;
}

    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 20px;
        color: #000000;
        display: block;
        transition: 0.3s;
    }

        .sidenav a:hover {
            color: #f1f1f1;
        }

    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 50px;
        margin-left: 50px;
    }

/* The filter side navigation menu on product listing page */
.filternav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 10000; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #fff; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    padding-right: 5px;
    padding-bottom: 100px;
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

    .filternav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 16px;
        color: #000;
        display: block;
        transition: 0.3s;
    }

    .filternav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 50px;
        margin-left: 50px;
    }

@media screen and (max-height: 450px) {
    .filternav {
        padding-top: 15px;
    }

        .filternav a {
            font-size: 18px;
        }
}

/* =================  SLIDE HEADINGS HOMEPAGE =================== */

/** slide one **/
.klang-slideone-heading {
    position: absolute;
    top: 6rem;
    text-align: center;
    width: 100%;
    color: white;
    font-weight: bold;
    font-size: 5rem;
    text-transform: uppercase;
    font-family: pluto-bold, Arial, "Helvetica Neue", "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.klang-slideone-info-text {
    position: absolute;
    top: 16rem;
    text-align: center;
    width: 100%;
    color: white;
    font-size: 18px;
    font-weight: normal;
    padding: 0% 22% 0% 22%;
}

.klang-slideone-button {
    color: white;
    font-size: 16px;
    text-align: center;
    font-weight: normal;
    text-transform: uppercase;
    border: 4px solid transparent;
    padding: 3px 40px 3px 40px;
    font-family: montserrat-bold;
}

    .klang-slideone-button:hover {
        color: #fff;
        border: 4px solid #fff;
    }

/** slide two **/
.klang-slidetwo-heading {
    position: absolute;
    top: 6rem;
    text-align: center;
    width: 100%;
    color: white;
    font-weight: bold;
    font-size: 5rem;
    text-transform: uppercase;
    font-family: pluto-bold, Arial, "Helvetica Neue", "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.klang-slidetwo-info-text {
    position: absolute;
    top: 16rem;
    text-align: center;
    width: 100%;
    color: white;
    font-size: 18px;
    font-weight: normal;
    padding: 0% 22% 0% 22%;
}

.klang-slidetwo-button {
    color: white;
    font-size: 16px;
    text-align: center;
    font-weight: normal;
    text-transform: uppercase;
    border: 4px solid transparent;
    padding: 3px 40px 3px 40px;
    font-family: montserrat-bold;
}

    .klang-slidetwo-button:hover {
        color: #fff;
        border: 4px solid #fff;
    }

/** slide three **/
.klang-slidethree-heading {
    position: absolute;
    top: 6rem;
    text-align: center;
    width: 100%;
    color: white;
    font-weight: bold;
    font-size: 5rem;
    text-transform: uppercase;
    font-family: pluto-bold, Arial, "Helvetica Neue", "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.klang-slidethree-info-text {
    position: absolute;
    top: 16rem;
    text-align: center;
    width: 100%;
    color: white;
    font-size: 18px;
    font-weight: normal;
    padding: 0% 22% 0% 22%;
}

.klang-slidethree-button {
    color: white;
    font-size: 16px;
    text-align: center;
    font-weight: normal;
    text-transform: uppercase;
    border: 4px solid transparent;
    padding: 3px 40px 3px 40px;
    font-family: montserrat-bold;
}

    .klang-slidethree-button:hover {
        color: #fff;
        border: 4px solid #fff;
    }

.klang-main-menu-img {
    max-width: 160px;
}

/* =================  PRODUCTS CAROUSEL HOMEPAGE =================== */

.carousel-multi-item.v-2.product-carousel .carousel-inner .carousel-item.active,
.carousel-multi-item.v-2.product-carousel .carousel-item-next,
.carousel-multi-item.v-2.product-carousel .carousel-item-prev {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.carousel-multi-item.v-2.product-carousel .carousel-item-right.active,
.carousel-multi-item.v-2.product-carousel .carousel-item-next {
    -webkit-transform: translateX(20%);
    -ms-transform: translateX(20%);
    transform: translateX(20%);
}

.carousel-multi-item.v-2.product-carousel .carousel-item-left.active,
.carousel-multi-item.v-2.product-carousel .carousel-item-prev {
    -webkit-transform: translateX(-20%);
    -ms-transform: translateX(-20%);
    transform: translateX(-20%);
}

.carousel-multi-item.v-2.product-carousel .carousel-item-right,
.carousel-multi-item.v-2.product-carousel .carousel-item-left {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.carousel-multi-item.v-2.product-carousel *,
.carousel-multi-item.v-2.product-carousel ::after,
.carousel-multi-item.v-2.product-carousel ::before {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.fuchsia-rose-text {
    color: #db0075;
}

.aqua-sky-text {
    color: #5cc6c3;
}

.mimosa-text {
    color: #f0c05a;
}

.list-inline-item .fas,
.list-inline-item .far {
    font-size: 0.8rem;
}

.chili-pepper-text {
    color: #9b1b30;
}

.carousel-multi-item .controls-top .btn-floating {
    background: #f8cdcd;
}

.carousel-multi-item .carousel-indicators li {
    height: 0.75rem;
    width: 0.75rem;
    max-width: 0.75rem;
    background-color: #5cc6c3;
}

.carousel-multi-item .carousel-indicators .active {
    height: 1rem;
    width: 1rem;
    max-width: 1rem;
    background-color: #5cc6c3;
}

.carousel-multi-item .carousel-indicators {
    margin-bottom: -1rem;
}

#klang-carousel-slider {
    position: relative;
}

.klang-arrow-left {
    position: absolute;
    z-index: 1000;
    top: 40%;
    left: -40px;
}

.klang-arrow-right {
    position: absolute;
    z-index: 1000;
    right: -40px;
    top: 40%;
}

.klang-arrow-right-when-bottom {
    position: absolute;
    z-index: 1000;
    right: -40px;
    top: 40%;
}

.klang-arrow-left i,
.klang-arrow-right i {
    font-size: 3rem;
}

.klang-arrow-right-when-bottom i,
.klang-arrow-right-when-bottom i {
    font-size: 3rem;
}

#klang-carousel-product-detail {
    background-color: #fff;
    margin-bottom: -48px;
    padding-top: 14px;
}

/***** product detail page lightbox *******/

.slick-slider .slick-prev,
.slick-slider .slick-next {
    z-index: 100;
    font-size: 2.5em;
    height: 100%;
    width: 40px;
    margin-top: -20px;
    color: #333;
    position: absolute;
    top: 50%;
    text-align: center;
    color: #000;
    /*opacity: 0.3;*/
    transition: opacity 0.25s;
    cursor: pointer;
    background: transparent;
}

    .slick-slider .slick-prev:hover,
    .slick-slider .slick-next:hover {
        opacity: 0.65;
    }

.slick-slider .slick-prev {
    left: 0;
}

.slick-slider .slick-next {
    right: 0;
}

#detail .product-images {
    width: 100%;
    margin: 0 auto;
}

    #detail .product-images li,
    #detail .product-images figure,
    #detail .product-images a,
    #detail .product-images img {
        display: block;
        outline: none;
        border: none;
    }

    #detail .product-images .main-img-slider figure,
    #detail .product-images .main-img-slider-compare-one figure,
    #detail .product-images .main-img-slider-compare-two figure {
        margin: 0 auto;
        padding: 0 2em;
    }

        #detail .product-images .main-img-slider figure a,
        #detail .product-images .main-img-slider-compare-one figure a,
        #detail .product-images .main-img-slider-compare-two figure a {
            cursor: pointer;
            cursor: -webkit-zoom-in;
            cursor: -moz-zoom-in;
            cursor: zoom-in;
        }

            #detail .product-images .main-img-slider figure a img,
            #detail .product-images .main-img-slider-compare-one figure a img,
            #detail .product-images .main-img-slider-compare-two figure a {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }

    #detail .product-images .thumb-nav {
        margin: 0 auto;
        padding: 20px 10px;
        max-width: 600px;
    }

        #detail .product-images .thumb-nav.slick-slider .slick-prev,
        #detail .product-images .thumb-nav.slick-slider .slick-next {
            font-size: 1.2em;
            height: 20px;
            width: 26px;
            margin-top: -10px;
        }

        #detail .product-images .thumb-nav.slick-slider .slick-prev {
            margin-left: 20px;
        }

        #detail .product-images .thumb-nav.slick-slider .slick-next {
            margin-right: 20px;
        }

        #detail .product-images .thumb-nav li {
            display: block;
            margin: 0 auto;
            cursor: pointer;
        }

            #detail .product-images .thumb-nav li img {
                display: block;
                width: 100%;
                max-width: 60px;
                margin: 0 auto;
                border: 2px solid transparent;
                -webkit-transition: border-color 0.25s;
                -ms-transition: border-color 0.25s;
                -moz-transition: border-color 0.25s;
                transition: border-color 0.25s;
            }

            #detail .product-images .thumb-nav li:hover,
            #detail .product-images .thumb-nav li:focus {
                border-color: #999;
            }

            #detail .product-images .thumb-nav li.slick-current img {
                border-color: #d12f81;
            }

.main_img {
    width: 370px;
    margin: 0 auto;
    margin-top: 30px;
}

.klang-comparison-gallery {
    width: 170px;
    margin: 0 auto;
    height: 50px;
}

    .klang-comparison-gallery i {
        display: none !important;
    }

.klang-compare-heading i {
    color: #fff;
    float: right;
}

.klang-compare-price {
    color: red;
    font-weight: bold;
    font-family: pluto-bold, Arial, "Helvetica Neue", "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.2rem;
}

#detail .klang-comparison-gallery .product-images img {
    max-height: 175px;
}

.klang-comparison-gallery-cell-image {
    height: 200px;
    background-color: #fff;
}

.klang-comparison-gallery-cell-image-desc {
    height: 200px;
}

.main-image .fa {
    opacity: 0.3;
}

/***** cookies popup modal *****/
.modal-dialog {
    margin-top: 0rem;
    max-width: 100%;
}

    .modal-dialog .modal-content {
        border-radius: 0rem;
    }

    .modal-dialog .buttons .btn {
        margin: 0.2rem;
    }

/***** cookies settings modal popup *****/
.cookiealert i {
    color: #008f12;
    font-size: 0.6rem;
    margin: 0px 2px 0px 2px;
}

#cookies-settings {
    color: #008f12;
    text-decoration: underline;
    padding: 0px 8px 0px 8px;
}

.klang-cookies-settings-main-text {
    font-size: 0.8rem;
}

    .klang-cookies-settings-main-text a {
        color: #008f12;
    }

    .klang-cookies-settings-main-text .list-group p {
        color: #000;
        padding-left: 4%;
    }

    .klang-cookies-settings-main-text .list-group a {
        color: #000;
    }

    .klang-cookies-settings-main-text small {
        color: grey;
    }

    .klang-cookies-settings-main-text .list-group {
        width: 98%;
    }

/** fix this -- should be cookies modal only**/
#cookiesSettingsModal .list-group.list-group-root .list-group-item {
    background-color: #f2f2f2;
}

.klang-cookies-settings-status {
    text-align: right;
}

#cookiesSettingsModal .close {
    font-size: 2.5rem;
}

@media only screen and (max-width: 640px) {
    .mySlides {
        height: auto;
        min-height: 300px;
    }

        .mySlides img {
            width: 100%;
            height: auto;
        }
}

/* =================  MEDIA SCREENS =================== */

@media all and (min-width: 992px) {
    .dropdown-large {
        min-width: 500px;
    }

    .fancybox-navigation .fancybox-button {
        height: 100%;
        opacity: 0;
        padding: 6px;
        position: absolute;
        top: 0%;
        width: 138px;
    }

    .fancybox-button svg {
        top: 40%;
    }

    .fancybox-toolbar {
        display: none;
    }
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

        .sidenav a {
            font-size: 18px;
        }
}
/** no sidenav on large devices **/
@media (min-width: 768px) {
    #mysidenav {
        display: none !important;
    }

    .mysidenav-trigger {
        display: none !important;
    }
}

/** mobile devices **/
@media only screen and (max-width: 960px) {
    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .klang-no-mobile {
        display: none;
    }

    .klang-no-desktop {
        display: block;
    }

    .widget-header .icon-area {
        font-size: 18px;
    }

    .klang-analog-shopping {
        text-align: center !important;
    }
    /** slide one mobile **/
    .klang-slideone-heading {
        font-size: 1.2rem;
        top: 3rem;
    }

    .klang-slideone-info-text,
    .klang-slidetwo-info-text,
    .klang-slidethree-info-text {
        top: 6.5rem;
        font-size: 0.7rem;
        padding: 0% 12% 0% 12%;
    }

    .klang-slideone-button {
        font-size: 0.8rem;
    }
    /** slide two mobile **/
    .klang-slidetwo-heading {
        font-size: 1.2rem;
        top: 3rem;
    }

    .klang-slidetwo-button {
        font-size: 0.8rem;
    }
    /** slide three mobile **/
    .klang-slidethree-heading {
        font-size: 1.2rem;
        top: 3rem;
    }

    .klang-slidethree-button {
        font-size: 0.8rem;
    }

    .widget-header .text {
        font-size: 0.6rem;
    }

    .carousel-indicators li {
        display: none;
    }

    .klang-category-section-text {
        font-size: 0.7rem;
    }

    .title.klang-versand {
        font-size: 0.8rem;
        margin-left: -30px;
    }

    .klang-card-image img {
        height: 140px;
    }

    .card-title,
    .klang-card-text,
    .btn-card-klang,
    .section-footer,
    .klang-panel-btn {
        font-size: 0.8rem;
    }

    .klang-card-text {
        margin-top: -10px;
    }

    .btn-card-klang {
        margin-top: -30px;
    }

    .klang-category-section {
        height: 47px;
        padding: 2px;
    }

    .klang-category-overview-page-content .klang-category-section {
        height: 67px;
    }

    .klang-category-overview-page-content .card-category {
        min-height: auto;
    }

    .klang-category-section-image {
        width: 50px;
    }

    .klang-card {
        height: 142px;
    }

    .klang-card-height,
    .card-banner-lg img {
        height: 200px;
        margin-bottom: 20px;
    }

    .klang-onsale .card-banner-lg .card-img {
        height: 180px;
        margin-bottom: 20px;
    }

    [class*="card-product"] .img-wrap img {
        /*width: 50%;*/
    }

    .klang-arrow-right,
    .klang-arrow-right-when-bottom {
        right: 0px;
    }

    .klang-arrow-left {
        left: 0px;
    }

    .klang-breadcrumb a {
        font-size: 0.7rem;
    }

    .section-footer .title {
        font-size: 16px;
    }

    .title.klang-versand span {
        font-size: 14px;
        margin-left: 0px;
    }

    .carousel-item .card {
        height: 300px;
    }

    .card-product-grid .info-wrap {
        padding-left: 40px;
    }

    .card-title.klang-one-panel-heading {
        width: 90%;
        margin-left: 5px;
        font-size: 1.3rem;
        margin-top: -5px;
    }

    .card-title.klang-two-panel-heading {
        width: 95%;
        margin-left: 20px;
        font-size: 1.3rem;
        margin-top: 4%;
    }

    .card-title.klang-three-panel-heading {
        width: 90%;
        margin-left: 5px;
        font-size: 1.3rem;
        margin-top: -5px;
    }

    .card-title.klang-four-panel-heading {
        width: 109%;
        margin-left: -16px;
        font-size: 1.3rem;
        margin-top: 4%;
        padding-left: 1px;
        padding-right: 1px;
    }

    .card-title.klang-five-panel-heading {
        width: 100%;
        font-size: 1.3rem;
        margin-top: 6%;
    }

    .gallery-wrap .img-big-wrap img {
        height: 280px;
    }

    .klang-arrow-right {
        top: 40%;
    }
    /** cart table mobile **/
    .table-shopping-cart.table th {
        font-size: 0.6rem;
        text-align: left;
    }

    .table-shopping-cart.table td,
    .table-shopping-cart.table th {
        padding-left: 4px;
        padding-right: 4px;
    }

    .table-shopping-cart .price {
        font-size: 0.8rem;
    }

    .table-shopping-cart.text-right {
        font-size: 0.8rem;
    }

    .table-shopping-cart .btn {
        font-size: 0.7rem;
    }

    .klang-cart-product-title a {
        font-size: 0.7rem;
    }

    .klang-arrow-cart-content,
    .klang-arrow-cart-content-mobile {
        font-size: 8px;
    }

    .klang-cart-next,
    .btn-light {
        font-size: 0.8rem;
    }

    .icontext,
    .input-group-append button,
    .form-group label,
    .klang-delivery-info-cart-page,
    .custom-checkbox,
    .klang-table-order-overview td,
    .klang-order-details,
    .klang-return-form,
    .klang-order-details .btn,
    .klang-return-form .btn {
        font-size: 0.8rem;
    }

    .alternate-address-form-alert {
        margin-top: -5px;
    }

    .pagination {
        font-size: 0.7rem;
    }

    .klang-compare-btn {
        float: left !important;
    }

    .klang-category-overview-page-content .klang-category-section-image {
        width: 75px;
    }

    .klang-category-kontakt {
        width: 160px;
    }

    /** product detail page fancybox slider **/
    .main_img {
        width: 270px;
    }

    #detail .product-images .thumb-nav.slick-slider .slick-next {
        display: none !important;
    }

    #detail .product-images .thumb-nav.slick-slider .slick-prev {
        display: none !important;
    }

    .category-overview .img-wrap {
        height: 165px !important;
    }

    .card-product-grid .info-wrap {
        overflow: hidden;
        padding: 15px;
    }

    .klang-category-kontakt {
        display: block;
        margin: 0 auto;
        font-size: 0.8rem;
    }

    .klang-svg-icon-eye {
        max-width: 28px;
    }

    .klang-svg-icons-hands {
        max-width: 22px;
    }

    .klang-svg-icons-search {
        max-width: 22px;
    }

    .btn-klang-frage-product-listing,
    .btn-klang-frage-product-listing {
        margin-bottom: 3px;
    }

    .section-klang-product-comparison {
        font-size: 12px;
    }

    .klang-comparison-gallery {
        width: 90px;
        margin: 0 auto;
        height: 50px;
    }

    .klang-comparison-gallery-cell-image {
        height: 120px;
    }

    .klang-comparison-gallery-cell-image-desc {
        height: 120px;
    }

    #detail .klang-comparison-gallery .product-images img {
        max-height: 100px;
    }

    .klang-compare-heading {
        font-size: 1rem;
    }

    /** gutschein styles mobile **/
    .klang-gutschein-bg-1 {
        height: auto;
        width: 100%;
    }

    .klang-gutschein-info {
        min-height: 15em;
        margin-top: 12%;
    }

    .klang-gutschein-value {
        font-size: 4rem;
        border: 5px solid #ffffff;
        padding: 0 8% 0 8%;
    }

    .klang-gutschein-title {
        font-size: 2.2rem;
        border: 5px solid #ffffff;
        padding: 0 1% 0 1%;
    }

    .klang-gutschein-logo img {
        padding-top: 40px;
        padding-bottom: 40px;
        width: 180px;
    }

    .klang-gutschein-form {
        padding: 0% 3% 0% 3% !important;
    }

        .klang-qr-code small,
        .klang-gutschein-form label {
            font-size: 0.7rem;
        }
}

/** medium screens - ipad etc **/
@media screen and (max-width: 1280px) and (min-width: 960px) {
    .klang-no-ipad {
        display: none;
    }

    .klang-no-desktop {
        display: none;
    }

    .klang-total-price {
        font-size: 12px;
    }

        .klang-total-price .h5 {
            font-size: 13px;
        }



    .navbar-expand .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
        font-size: 0.7rem;
    }

    .klang-card-height {
        height: 360px;
    }

    .dropdown-menu {
        font-size: 0.8rem;
    }

    .navbar-expand .navbar-nav .dropdown-menu {
        margin-top: 11px;
        width: 540px;
    }

    .klang-slideone-heading,
    .klang-slidetwo-heading,
    .klang-slidethree-heading {
        font-size: 2.5rem;
        top: 3rem;
    }

    .klang-slideone-info-text,
    .klang-slidetwo-info-text,
    .klang-slidethree-info-text {
        top: 8.5rem;
        font-size: 0.8rem;
        padding: 0% 12% 0% 12%;
    }

    .klang-slideone-button,
    .klang-slidetwo-button,
    .klang-slidethree-button {
        font-size: 0.7rem;
    }

    .card-product-grid .img-wrap {
        height: 285px;
    }

    .slider-home-banner .carousel-item img {
        height: 350px;
    }

    .klang-one-panel-heading {
        width: 80%;
        margin-top: 20%;
        margin-left: 0px;
    }

    .klang-two-panel-heading {
        width: 90%;
        margin-bottom: 10px;
        margin-top: 2%;
    }

    .klang-three-panel-heading {
        width: 80%;
        margin-top: 20%;
        margin-left: 0px;
    }

    .klang-four-panel-heading {
        width: 95%;
        margin-bottom: 10px;
        margin-top: 2%;
    }

    .klang-five-panel-heading {
        width: 95%;
        margin-bottom: 10px;
        margin-top: 18%;
    }

    .klang-arrow-right,
    .klang-arrow-right-when-bottom {
        right: 0px;
    }

    .klang-arrow-left {
        left: 0px;
    }

    .klang-one-panel-heading,
    .klang-two-panel-heading,
    .klang-three-panel-heading,
    .klang-four-panel-heading,
    .klang-five-panel-heading {
        font-size: 1.4rem;
    }

    small,
    .small {
        font-size: 59%;
        font-weight: 400;
    }

    .klang-arrow-cart-content,
    .klang-arrow-cart-content-mobile {
        font-size: 10px;
    }

    .btn-klang-warenkorb-product-listing,
    .btn-klang-warenkorb-product-listing span,
    .btn-klang-frage-product-listing,
    .custom-control-label {
        width: 100%;
        font-size: 0.6rem;
    }

    .klang-category-overview-page-content .card-category .card-title {
        font-size: 11px;
    }

    .klang-category-overview-page-content .card-category a span {
        font-size: 0.6rem;
        font-family: montserrat-regular;
        font-weight: normal;
    }

    .klang-category-overview-page-content .klang-category-section-image {
        float: right;
        width: 50px;
    }

    .klangfarbe-contact-team-profile {
        font-size: 0.6rem;
    }

        .klangfarbe-contact-team-profile img {
            width: 55px;
        }

    .klang-category-kontakt {
        width: 160px;
    }

    .section-klang-product-comparison {
        font-size: 12px;
    }

    .klang-compare-heading {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1300px) and (min-width: 992px) {
    .klang-category-section-text {
        font-size: 0.6rem;
    }

    .section-footer .title {
        font-size: 15px;
    }
}

@media screen and (max-width: 1450px) and (min-width: 1280px) {
    .klang-arrow-right {
        right: 0px;
    }

    .klang-arrow-left {
        left: 0px;
    }

    .klang-one-panel-heading,
    .klang-two-panel-heading,
    .klang-three-panel-heading,
    .klang-four-panel-heading,
    .klang-five-panel-heading {
        font-size: 1.5rem;
    }
}
/** very small **/

@media only screen and (max-width: 530px) {
    .klang-arrow-cart-item {
        margin-left: 0.4rem;
        width: 350px;
        height: 40px;
    }

    .klang-arrow-cart-content {
        display: none;
    }

    .klang-arrow-cart-content-mobile {
        display: block;
    }

    .pagination {
        font-size: 0.4rem;
    }

    .btn-klang-warenkorb-product-listing {
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 767px) {
    .btn-klang-warenkorb-product-listing {
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 370px) {
    .card-title.klang-one-panel-heading,
    .card-title.klang-two-panel-heading,
    .card-title.klang-three-panel-heading,
    .card-title.klang-four-panel-heading,
    .card-title.klang-five-panel-heading {
        font-size: 1.1rem;
    }

    .klang-warenkorb-modal .table-shopping-cart .itemside .info {
        font-size: 0.5rem;
    }

    /** gutschein styles mobile **/

    .klang-gutschein-info {
        margin-top: 15%;
    }

    .klang-gutschein-value {
        font-size: 3rem;
        border: 4px solid #ffffff;
    }

    .klang-gutschein-title {
        font-size: 1.6rem;
        border: 4px solid #ffffff;
        padding: 0 1% 0 1%;
    }

    .klang-gutschein-logo img {
        padding-top: 30px;
        width: 120px;
    }
}

@media only screen and (max-width: 320px) {
    .form-control.klang-cart-page {
        width: 54px;
        font-size: 0.7rem;
    }

    .table-shopping-cart .price {
        font-size: 0.75rem;
    }

    small,
    .small {
        font-size: 59%;
        font-weight: 400;
    }

    .table-shopping-cart .btn {
        font-size: 0.6rem;
    }

    .table-shopping-cart.table td,
    .table-shopping-cart.table th {
        padding-left: 2px;
        padding-right: 2px;
    }

    .section-footer .title {
        font-size: 15px;
    }

    .progress.klang-progress {
        height: 2rem;
        font-size: 0.7rem;
    }

    .widget-header .icon-area {
        font-size: 16px;
    }

    .klang-svg-icons-hands {
        max-width: 18px;
    }

    .klang-svg-icon-eye {
        max-width: 26px;
    }

    .klang-svg-icon-search {
        max-width: 18px;
    }

    .widget-header .text {
        font-size: 0.5rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .klang-category-section-text {
        font-size: 0.6rem;
    }

    .klangfarbe-contact-team-profile {
        font-size: 0.6rem;
    }

        .klangfarbe-contact-team-profile img {
            width: 60px;
        }

    .section-klang-product-comparison {
        font-size: 10px;
    }
}

/** galaxy fold **/
@media only screen and (max-width: 290px) {
    body,
    .btn {
        font-size: 0.8rem;
    }

    .form-control.klang-cart-page {
        width: 54px;
        font-size: 0.6rem;
    }

    .table-shopping-cart .price {
        font-size: 0.65rem;
    }

    small,
    .small {
        font-size: 57%;
        font-weight: 400;
    }

    .table-shopping-cart .btn {
        font-size: 0.5rem;
    }

    .table-shopping-cart.table td,
    .table-shopping-cart.table th {
        padding-left: 1px;
        padding-right: 1px;
    }

    .table-shopping-cart.table th {
        font-size: 0.5rem;
    }

    .section-footer .title {
        font-size: 12px;
    }

    .progress.klang-progress {
        height: 2rem;
        font-size: 0.7rem;
    }

    .klang-slideone-heading,
    .klang-slidetwo-heading,
    .klang-slidethree-heading {
        top: 1rem;
    }

    .klang-slideone-info-text,
    .klang-slidetwo-info-text,
    .klang-slidethree-info-text {
        top: 4.5rem;
    }

    .card-title.klang-one-panel-heading,
    .card-title.klang-two-panel-heading,
    .card-title.klang-three-panel-heading,
    .card-title.klang-four-panel-heading,
    .card-title.klang-five-panel-heading {
        font-size: 1rem;
    }

    .card-title,
    .klang-card-text,
    .btn-card-klang,
    .section-footer,
    .klang-panel-btn {
        font-size: 0.5rem;
    }

    .widget-header .icon-area {
        font-size: 14px;
    }

    .klang-svg-icon-eye {
        max-width: 20px;
    }

    .klang-svg-icon-search {
        max-width: 14px;
    }

    .klang-svg-icons-hands {
        max-width: 14px;
    }

    h3 {
        font-size: 1.2rem;
    }

    .klang-category-section-text {
        font-size: 0.5rem;
    }

    .title.klang-versand span {
        font-size: 10px;
    }

    .btn-icon i {
        font-size: 0.8rem;
    }

    .btn-icon {
        width: 10px;
    }

    .klang-card {
        height: 120px;
    }

    .klang-card-image img {
        height: 118px;
    }

    .klang-workshops-date {
        font-size: 0.5rem;
    }

    .klang-card-height,
    .card-banner-lg img {
        height: 180px;
    }

    .btn-klang-warenkorb,
    .btn-klang-frage {
        width: 240px;
    }

    .icontext,
    .input-group-append button,
    .form-group label,
    .klang-delivery-info-cart-page,
    .custom-checkbox,
    .klang-table-order-overview td {
        font-size: 0.6rem;
    }

    .klang-category-overview-page-content .klang-category-section-image {
        width: 45px;
    }

    .klang-category-overview-page-content .card-category a span {
        font-size: 0.6rem;
    }

    .klang-category-overview-page-content .klang-category-section {
        height: 57px;
    }

    .klang-category-overview-page-content .card-category .card-title {
        font-size: 11px;
    }
}


.bannertext {

}

.detailbanner {
    display: block;
    width: 100%;
}