@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700&display=swap');
@import url("../fonts/europlate/europlate.css");



/*@import url('../fonts/titillium-web/titillium-web.css');*/
/*@import url("../fonts/europlate/europlate.css");*/
/*@import url("../fonts/gl-nummernschild/ql-nummernschild.css");*/




:root {



    /* Original Colours */

    --theme-basic-default: #efefef;
    --theme-basic-hover: #e4e4e4;
    --theme-basic-text: #636363;

    --theme-primary-dark: #06652A;
    --theme-primary-default: #0d9a42;
    --theme-primary-hover: #36b967;
    --theme-primary-text: #fff;

    --theme-secondary-default: #636363;
    --theme-secondary-hover: #223d5d;
    --theme-secondary-text: #fff;



    --theme-gray-light: #969696;
    --theme-gray-medium: #7f7f7f;
    --theme-gray-text: #636363;
    --theme-gray-dark: #595959;





    /* Override Colours ( WCAG AA Contrast ) */

    --theme-gray-medium: #747474;

    --theme-primary-default: #068938;





    /* Override Colours ( WCAG AAA Contrast ) */

    --theme-gray-text: #595959;

    --theme-gray-medium: #595959;

    /*--theme-primary-default: #07642B;*/

    /*--theme-primary-hover: #0d9a42;*/




}






.video-wrap {
    max-width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.video-element {
    position: relative;
    max-width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.video-element video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover ensures the video fills the container */
}







/**
 * Utilities
 */
.mt_2 {
    margin-top: 0.5rem;
}





/* Icons */
i.icon {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 32px;
    height: 32px;
}
i.icon::before,
i.icon::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}



i.icon[data-icon="valid"]::before {
    background-image: url(/images/svg/status-valid.svg);
}
i.icon[data-icon="invalid"]::before {
    background-image: url(/images/svg/status-invalid.svg);
}

i.icon[data-icon="check"]::before {
    background-image: url(/images/svg/checkmark.svg);
    -webkit-filter: invert(1);
    filter: invert(1);
}





/*html:not(.webp) i.icon[data-icon="check"]::before {*/
/*    background-image: url(/images/icon-check.png);*/
/*}*/
/*html.webp i.icon[data-icon="check"]::before {*/
/*    background-image: url(/images/icon-check.webp);*/
/*}*/



/*html:not(.webp) i.icon[data-icon="valid"]::before {*/
/*    background-image: url(/images/icon-valid.png);*/
/*}*/
/*html.webp i.icon[data-icon="valid"]::before {*/
/*    background-image: url(/images/icon-valid.webp);*/
/*}*/


/*html:not(.webp) i.icon[data-icon="invalid"]::before {*/
/*    background-image: url(/images/icon-invalid.png);*/
/*}*/
/*html.webp i.icon[data-icon="invalid"]::before {*/
/*    background-image: url(/images/icon-invalid.webp);*/
/*}*/


/*html:not(.webp) i.icon[data-icon="check"]::before {*/
/*    background-image: url(/images/icon-check.png);*/
/*}*/
/*html.webp i.icon[data-icon="check"]::before {*/
/*    background-image: url(/images/icon-check.webp);*/
/*}*/










/**
 * Header
 */

.header-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5000;
    background: #fff;
    border-bottom: 2px solid #efefef
}

body.scrolled:not(.sticky-header) .header-wrapper .header-top {
    margin-top: -45px
}

body.sticky-header .header-wrapper {
    position: sticky;
    top: 0;
}

@media all and (max-width:575px) {

    body.has-rating.scrolled .header-wrapper .header-top {
        margin-top: -80px
    }

}

.header-wrapper .header-top .service-button {
    padding: 6px 10px;
    vertical-align: 1px;
    font-size: 0.785rem;
}

body.has-christmas .header-wrapper .header-top .service-button {
    background-color: #7a0b0b;
}
body.has-christmas .header-wrapper .header-top .service-button:hover,
body.has-christmas .header-wrapper .header-top .service-button:focus {
    background-color: #8d0f0f;
}




.header-wrapper .header-wrap {
    padding: 15px 0 15px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s
}

.header-wrapper.large .header-wrap,
body.scrolled .header-wrapper.large .header-wrap {
    padding: 27px 0 28px
}

.header-wrapper .header-wrap .logo-wrap {
    display: block;
    width: 300px;
    line-height: 0;
}

.header-wrapper .header-wrap .logo-wrap > .logo {
    display: inline-block;
    height: 80px;
    color: #000;
}

.header-wrapper .header-wrap .logo-wrap img {
    height: 80px;
    width: auto;
}

.header-wrapper .header-wrap .logo-wrap svg {
    width: 100%;
    height: 100%;
}

.header-wrapper .header-warning {
    display: block;
    position: absolute;
    bottom: -46px;
    left: 0;
    right: 0;
    z-index: 40;
    color: #ce0000;
    background: #f6e8dd;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -ms-transform: translateY(100%) scaleY(1);
    transform: translateY(100%) scaleY(1);
    -webkit-transform: translateY(100%) scaleY(1);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s
}

.header-wrapper .header-warning .warning {
    display: block;
    position: relative;
    line-height: 1.3em
}

body.scrolled .header-wrapper .header-warning {
    -ms-transform: translateY(100%) scaleY(0);
    transform: translateY(100%) scaleY(0);
    -webkit-transform: translateY(100%) scaleY(0)
}

.header-wrapper .header-bottom {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 46px;
    min-height: 46px;
    color: #fff;
    background: #12100b;
    padding: 10px 0;
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    overflow: hidden
}

.header-wrapper .header-bottom .usp-wrap ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
    white-space: nowrap
}

.header-wrapper .header-bottom .usp-wrap ul>li {
    display: inline-block;
    position: relative;
    vertical-align: top;
    font-size: 15px;
    line-height: 21px
}

.header-wrapper .header-bottom .usp-wrap ul>li:not(:last-child) {
    margin-right: 30px
}

.header-wrapper .header-bottom .usp-wrap ul>li::before {
    content: ' ';
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    min-width: 20px;
    min-height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px
}


html:not(.webp) .header-wrapper .header-bottom .usp-wrap ul>li::before {
    background-image: url(/images/icon-check.png);
}
html.webp .header-wrapper .header-bottom .usp-wrap ul>li::before {
    background-image: url(/images/icon-check.webp);
}


.header-wrapper .header-bottom .usp-wrap ul>li strong {
    display: inline-block;
    vertical-align: middle
}

.header-wrapper .header-discount {
    color: #fff;
    background: #cc151a;
    max-height: 80px;
    overflow: hidden
}

.header-wrapper .header-discount .discount-wrap {
    display: block;
    text-align: center;
    padding-bottom: 10px
}

.header-wrapper .header-discount .discount-text {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.2em;
    padding-top: 10px;
    margin-right: 8px
}

.header-wrapper .header-discount .discount-counter {
    display: inline-block;
    vertical-align: middle;
    padding-top: 10px
}

.header-wrapper .header-discount .countdown .count {
    color: #fff;
    background: #971115
}

.header-navigation {
    display: block;
    color: #000;
    background: #F1F1F1;
    padding: 0px 0;
    overflow: hidden;
}

.header-navigation .menu-wrap ul {
    display: inline-block;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-navigation .menu-wrap ul > li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-right: 4px;
    font: 600 16px/24px sans-serif;
    text-transform: uppercase;
    -webkit-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
}





body.ready-font .header-navigation .menu-wrap ul > li {
    font: 600 16px/24px 'Titillium Web', sans-serif;
    letter-spacing: 1px;
}

@media all and (min-width: 1200px) {

    body:not(.ready-font) .header-navigation .menu-wrap ul {
        height: 44px;
    }

}

@media all and (min-width: 992px) {

    body.ready-font .header-navigation .menu-wrap ul > li > .link,
    body.ready-font .header-navigation .menu-wrap ul > li > a {
        padding: 10px 14px;
    }

}






.header-navigation .menu-wrap ul > li > .link,
.header-navigation .menu-wrap ul > li > a {
    display: block;
    position: relative;
    text-decoration: none !important;
    padding: 10px 10px;
    color: #000;
}



.header-navigation .menu-wrap ul > li > .link > span,
.header-navigation .menu-wrap ul > li > a > span {
    display: block;
    position: relative;
    z-index: 15;
}

.header-navigation .menu-wrap ul > li > .link::before,
.header-navigation .menu-wrap ul > li > a::before {
    content: ' ';
    display: block;
    position: absolute;
    top: 0; left: 0;
    right: 0; bottom: 0;
    z-index: 5;
    background: #d9d9d9;
    opacity: 0;
}

.header-navigation .menu-wrap ul > li:hover > .link::before,
.header-navigation .menu-wrap ul > li:hover > a::before {
    opacity: 1;

}
.header-navigation .menu-wrap ul:not(:hover) > li.active > a:not(.no-active)::before {

}

.header-navigation .menu-wrap ul:hover > li:not(:hover) > a {
    opacity: 0.55;
}


/*body.ready .header-navigation .menu-wrap ul > li > a::before,*/
/*body.ready .header-navigation .menu-wrap ul > li > a {*/
/*-webkit-transition: 0.3s;*/
/*-o-transition: 0.3s;*/
/*transition: 0.3s;*/
/*}*/




@media all and (max-width:991px) {

    .header-wrapper .header-bottom .usp-wrap ul li:nth-child(3),
    .header-wrapper .header-bottom .usp-wrap ul li:nth-child(4) {
        display: none
    }

    .header-navigation {
        display: none;
    }
    .header-navigation .menu-wrap ul > li {
        display: block;
        vertical-align: top;
    }
    .header-navigation .menu-wrap ul > li > .link,
    .header-navigation .menu-wrap ul > li > a {
        display: inline-block;
        padding: 7px 0px;
    }

    .header-navigation .menu-wrap ul > li > .link::before,
    .header-navigation .menu-wrap ul > li > a::before {
        left: -12px;
        right: -12px;
    }

}

@media all and (max-width:767px) {

    .header-wrapper .header-bottom {
        height: 56px;
        max-height: 56px;
        overflow: hidden;
        display: none
    }
    .header-wrapper .header-warning {
        bottom: -56px;
        font-size: 14px
    }
    .header-wrapper .header-bottom .usp-wrap ul {
        white-space: normal;
        min-width: 270px
    }
    .header-wrapper .header-bottom .usp-wrap ul li {
        font-size: 14px;
        line-height: 24px;
        padding-left: 32px
    }
    .header-wrapper .header-bottom .usp-wrap ul li strong {
        font-weight: 500;
        line-height: 1.4em
    }
    .header-wrapper .header-bottom .usp-wrap ul>li::before {
        position: absolute;
        top: 50%;
        left: 0;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%)
    }
    .header-wrapper .header-bottom .usp-wrap ul li:nth-child(2),
    .header-wrapper .header-bottom .usp-wrap ul li:nth-child(3),
    .header-wrapper .header-bottom .usp-wrap ul li:nth-child(4) {
        display: none
    }

    .header-wrapper .header-wrap,
    body.scrolled .header-wrapper .header-wrap {
        padding: 0 0;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s
    }

    .header-wrapper.large .header-wrap,
    body.scrolled .header-wrapper.large .header-wrap {
        padding: 15px 0 14px
    }

}

@media all and (max-width:575px) {

    html:not(.webp) .header-wrapper .header-bottom .usp-wrap ul>li::before {
        background-image: url(/images/icon-check.png)
    }
    html.webp .header-wrapper .header-bottom .usp-wrap ul>li::before {
        background-image: url(/images/icon-check.webp)
    }

    .header-wrapper .header-discount .discount-text {
        padding-top: 8px;
        max-height: 3em;
        overflow: hidden
    }
    .header-wrapper .header-discount .discount-counter {
        padding-top: 4px
    }
    .header-wrapper .header-discount .countdown .count {
        margin-right: 3px
    }
    .header-wrapper .countdown .count small {
        display: none
    }


    .header-wrapper .header-wrap .logo-wrap {
        width: 240px;
        height: 80px;
    }

    .header-wrapper .header-wrap .logo-wrap > .logo {
        display: inline-block;
        position: relative;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        top: 50%;
        height: 50px;

        display: inline-flex;
        align-items: center;
    }

    .header-wrapper .header-wrap .logo-wrap img {
        height: auto;
        max-width: 65vw;
        width: 220px;
    }

    .header-wrapper .header-wrap .logo-wrap svg {
        max-width: 65vw;
        width: 200px;
    }





    /* v2 */

    .header-wrapper .header-wrap .logo-wrap {
        height: 52px;
    }
    .header-wrapper .header-wrap .hamburger {
        width: 28px;
        top: 11px;
    }
    .header-wrapper .header-wrap .hamburger > div {
        height: 3px;
        margin: 6px 0;
    }
    .header-wrapper .header-wrap .hamburger.cross div:nth-child(1) {
        -webkit-transform: translateY(9px) rotate(-45deg);
        -ms-transform: translateY(9px) rotate(-45deg);
        transform: translateY(9px) rotate(-45deg);
    }
    .header-wrapper .header-wrap .hamburger.cross div:nth-child(3) {
        -webkit-transform: translateY(-9px) rotate(45deg);
        -ms-transform: translateY(-9px) rotate(45deg);
        transform: translateY(-9px) rotate(45deg);
    }






}








/**
 * Header Icons
 */

.header-wrapper .header-icons {
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
}
.header-wrapper .header-icons .header-icon {
    background: transparent no-repeat 0 0;
    background-size: 64px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 70px;
    width: 70px;
    margin: 0 0.5em;
}

html:not(.webp) .header-wrapper .header-icons .header-icon {
    background-image: url(/template_for_de/img/review-icon.svg);
}



/* TODO Trustpilot Widgets */

.header-wrapper .header-trustpilot-widget {
    margin-top: -15px;

    .trustpilot-widget {
        transform-origin: 0 0;
        transform: scale(0.8);
    }

    .trust-widget {
        transform-origin: 0 50%;
        &.scale-down {
            transform: scale(0.875);
        }
    }
}







.header-wrapper .header-trust {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin-right: 20px;
}
.header-wrapper .header-trust ul {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    list-style: none;
    padding: 0;
}
.header-wrapper .header-trust ul .text {
    color: #000;
    font: 600 18px/22px 'Titillium Web', sans-serif;
}
.header-wrapper .header-trust ul .stars {
    font-size: 16px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.header-wrapper .header-trust ul .stars-element.has-border {
    border: 1px solid white;
    background-color: #f1f1f1;
    border-radius: 4px;
    padding: 0 3px;
    margin: 5px 0;
}

.header-wrapper .header-trust ul .grade {
    color: #000;
    font: 400 14px/22px 'Titillium Web', sans-serif;
}

@media (max-width: 1000px) {

    .header-wrapper .header-icons .header-icon {
        width: 55px;
        height: 55px;
    }
    .header-wrapper .header-trust ul .text,
    .header-wrapper .header-trust ul .grade {
        line-height: 18px;
    }
    .header-wrapper .header-trust ul .text {
        font-size: 16px;
    }
    .header-wrapper .header-trust ul .stars {
        font-size: 14px;
    }
    .header-wrapper .header-trust ul .grade {
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    .header-wrapper .header-trust {
        display: none;
        height: 40px;
        width: 40px;
    }
}
@media (max-width: 413px) {
    .header-wrapper .header-logo {
        height: 45px;
    }
}
@media (max-width: 374px) {
    .header-wrapper .header-logo {
        height: 40px;
    }
}






/**
 * Header Top
 */

.header-top {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    height: 45px;
    overflow: hidden;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
    background: #000
}

.header-top.is-relative {
    height: auto !important;
    min-height: 45px !important;
    max-height: none !important;
}

.header-top.is-relative .usp.usp-list {
    position: static;
}

@media all and (max-width: 991px) {

    .header-top.is-relative .usp.usp-list {
        margin: 0 -10px;
    }

}

.header-top.is-relative .usp.usp-list > ul > li.warning:not(:last-child) {
    padding-bottom: 0;
    padding-right: 15px;
}

.header-top.is-relative .usp.usp-list > ul > li.action {
    padding-left: 0;
}

.header-top.is-relative .usp.usp-list > ul > li.action span {
    display: inline-block;
}

.header-top .full-height {
    height: 100%;
}


@media (max-width: 575px) {



    body.scrolled.top-more .header-wrapper .header-top {
        margin-top: -70px
    }

    body.top-more .header-wrapper .header-top {
        height: 70px;
    }

    body.top-more:not(.no-space) {
        padding-top: 152px !important;
    }


    body.has-rating .header-top {
        height: 85px;
        height: 80px;
    }
    body.has-rating .header-top .usp.usp-list {
        top: 40px;
        top: 35px;
    }



    .header-top.compact-mobile {
        height: 36px;
    }

    .header-top.compact-mobile .header-usp > .usp.usp-rating {
        padding: 5px 0;
    }

    .header-top.compact-mobile .header-usp > .usp.usp-score {
        height: 22px;
        padding-top: 0;
        margin-top: 7px;
    }

    .header-top.compact-mobile .usp-score .before::before {
        background-size: 20px;
        top: -3px;
    }




    .header-top .usp-score {
        display: block;
        position: relative;
        text-align: center;
        width: 100%;
        padding-bottom: 0 !important;
    }
    .header-top .usp-score.nowrap {
        white-space: nowrap;
    }
    .header-top .usp-score .before {
        position: relative;
        padding-left: 24px;
    }
    .header-top .usp-score .before::before {
        content: ' ';
        display: inline-block;
        position: absolute;
        top: -2px;
        left: -10px;
        width: 24px;
        height: 24px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }


    html:not(.webp) .header-top .usp-score .before::before {
        background-image: url(/template_for_de/img/review-star.png);
    }
    html.webp .header-top .usp-score .before::before {
        background-image: url(/template_for_de/img/review-star.webp);
    }


    .header-top .usp-score .text {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        min-height: 21px;
    }
    .header-top .usp-score .amount {
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }
    .header-top .usp-score .rating {
        display: inline-block;
        vertical-align: -2px;
    }


}


@media (max-width: 380px) {


    .header-top .usp-score.responsive .text {
        padding: 0 10px 0 24px;
    }
    .header-top .usp-score.responsive .amount.score {
        display: none;
    }

}


body.has-christmas .header-top:not(.black) {
    background-color: #c51313;
}

.header-top .container-fluid {
    position: relative;
    max-width: 1140px
}

.header-top.language-switch .container-fluid {
    padding-right: 75px
}

.header-top .container-fluid .language {
    display: inline-block;
    position: absolute;
    top: 9px;
    right: 15px
}

.header-top .container-fluid .language img {
    display: inline-block;
    width: 16px
}

.header-top .container-fluid .language span {
    display: inline-block;
    text-transform: uppercase;
    vertical-align: middle;
    color: #6f6f6f;
    font-size: 15px;
    font-weight: 600
}

@media all and (max-width:1199px) {

    .header-top .container-fluid {
        max-width: 960px
    }
    .header-top .usp-wrap ul li:first-child {
        width: 255px
    }
    .header-top .usp-wrap ul li:last-child {
        width: auto
    }

}

@media all and (max-width:991px) {

    .header-top .container-fluid {
        padding: 0 20px
    }

    .header-wrapper .header-icons {
        display: none;
    }

}

@media all and (max-width:767px) {

    .header-top .usp-wrap ul li:not(:first-child) {
        display: none
    }
    .header-top .usp-wrap ul li:not(:last-child):after {
        display: none
    }

    .header-usp>.usp.usp-rating .amount {
        display: none
    }

    .header-usp>.usp.usp-rating .mobile {
        display: inline-block!important
    }
    .header-usp>.usp.usp-rating .desktop {
        display: none!important
    }

    .header-usp>.usp.usp-processed:not(.usp-whatsapp) {
        display: none
    }




}

@media all and (max-width:575px) {

    .header-top.language-switch .container-fluid {
        padding-right: 70px
    }

    .header-wrapper .header-usp>.usp.usp-rating .text {
        margin-right: 2px;
        font-size: 14px
    }


}

@media all and (max-width:460px) {

    .header-wrapper .header-usp>.usp.usp-rating {
        padding: 10px 0
    }
    .header-wrapper .header-usp>.usp>.stars-rating {
        margin: -2px 0 0 -3px
    }

}

@media all and (max-width:370px) {

    .header-wrapper .header-usp>.usp.usp-rating .text {
        font-size: 10.2pt
    }

}








/**
 * Header USP
 */

.header-usp {
    display: block;
    position: relative
}

.header-usp > .usp {
    display: inline-block;
    text-decoration: none !important;
    vertical-align: top;
    padding: 10px 0;
    color: #fff
}

.header-usp .usp-trustpilot-widget {
    width:100%;
    height:100%;
    align-items:center;
    justify-content: center;

    &.is-full {
        width: 100vw;
        min-width: 240px;
        margin: 0 -20px;
    }

    .trustpilot-widget {
        min-width: 420px;
        flex: 1 1;
    }

    .trust-widget {
        flex: 1 1;
        color: #fff;
        margin-left: 15px;

        @media all and (min-width: 440px) {
            justify-content: center;
            margin-left: 0;
        }

    }

}

@media all and (max-width: 440px) {

    .header-usp .usp-trustpilot-widget {

        /*&::after {*/
        /*    content: ' ';*/
        /*    position: absolute;*/
        /*    top: 0;*/
        /*    width: 120px;*/
        /*    left: 300px;*/
        /*    bottom: 0;*/
        /*    z-index: 5;*/
        /*    background: black;*/
        /*}*/

        .trustpilot-widget {
            position: absolute !important;
            left: -10px !important;
        }

    }
}




.header-usp > .usp.usp-processed {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0
}

.header-usp > .usp.usp-whatsapp {
    padding-top: 6px
}

.header-usp > .usp.usp-rating {
    padding: 8px 0;
    white-space: nowrap;
    font-weight: 600
}

.header-usp > .usp.usp-rating .text {
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px
}

.header-usp > .usp.usp-rating .rate {
    display: inline-block;
    vertical-align: -2px;
    line-height: 15px;
    font-size: 16px
}

.header-usp > .usp.usp-rating .amount {
    display: inline-block;
    vertical-align: -1px;
    line-height: 15px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 5px
}

.header-usp > .usp.usp-rating .mobile {
    display: none!important
}

.header-top .usp.usp-list {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
    -webkit-transition: opacity 0.25s;
    -o-transition: opacity 0.25s;
    transition: opacity 0.25s;
}

.header-top:not(.no-left) .usp.usp-list {
    left: 415px;
}


.header-top .usp.usp-list > ul.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-top .usp.usp-list > ul {
    display: block;
    position: relative;
    text-align: right;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-top.no-left .usp.usp-list > ul {
    text-align: left;
}

.header-top .usp.usp-list > ul > li {
    display: inline-block;
    position: relative;
    vertical-align: top;
    padding: 10px 0 10px 15px;
}

.header-top .usp.usp-list > ul > li:first-child {
    padding-left: 0;
}

.header-top .usp.usp-list > ul > li:last-child {
    padding-right: 0;
}

.header-top .usp.usp-list > ul > li > strong {
    font-weight: 400;
}

.header-top .usp.usp-list > ul > li:not(.none)::before {
    content: ' ';
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 10px;
    min-width: 20px;
    min-height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px
}
.header-top .usp.usp-list > ul > li.warning::before {
    background-size: 24px;
}



html:not(.webp) .header-top .usp.usp-list > ul > li:not(.none)::before {
    background-image: url(/images/icon-check.png);
}
html:not(.webp) .header-top .usp.usp-list > ul > li.warning::before {
    background-image: url(/images/icon-warning.png);
}

html.webp .header-top .usp.usp-list > ul > li:not(.none)::before {
    background-image: url(/images/icon-check.webp);
}
html.webp .header-top .usp.usp-list > ul > li.warning::before {
    background-image: url(/images/icon-warning.webp);
}




.header-usp > .usp > .stars-rating {
    display: inline-block;
    vertical-align: -5px;
    margin-left: 4px
}



@media all and (min-width:575px) {


    [data-ref="home-de-e"] .header-top .usp.usp-list > ul > li:not(.forced):nth-child(2),
    [data-ref="home-de"] .header-top .usp.usp-list > ul > li:not(.forced):nth-child(2) {
        display: none;
    }


}

@media all and (max-width:575px) {


    .header-top .usp.usp-list {
        left: -10px;
        right: -10px;
    }

    .header-top .usp.usp-list > ul > li:not(.none)::before {
        margin-right: 7px;
    }

    .header-usp > .usp {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .header-top .usp.usp-list > ul > li {
        font-size: 0.85rem;
        line-height: 14px;
        padding: 6px 0 6px 10px;
    }


    .header-top .usp-score {
        font-size: 0.85rem;
    }






}

.header-usp .whatsapp-button {
    display: inline-block;
    position: relative;
    color: #6b6b6b;
    background: #efefef;
    font-size: 14px;
    line-height: 1em;
    border-radius: 26px 7px 7px 26px;
    -moz-border-radius: 26px 7px 7px 26px;
    -webkit-border-radius: 26px 7px 7px 26px;
    padding: 6px 10px 8px 45px;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s
}

.header-usp .whatsapp-button:hover,
.header-usp .whatsapp-button:focus {
    background: #e2efe7
}

.header-usp .whatsapp-button > img {
    display: inline-block;
    vertical-align: middle;
    width: 33px;
    position: absolute;
    top: 4px;
    left: 5px
}

.header-usp .whatsapp-button > span {
    display: inline-block;
    vertical-align: middle
}

.header-usp .whatsapp-button > span strong {
    display: block;
    margin-right: 4px
}

@media (max-width: 767px) {

    .header-top:not(.no-left) .usp.usp-list {
        left: 255px;
    }

}
@media all and (max-width:575px) {

    .header-top:not(.no-left) .usp.usp-list {
        display: none;
    }

}












/**
 * Banner
 */

.banner .banner-emblem {
    background: transparent no-repeat center center;
}
.banner .banner-big-emblem {
    background: transparent no-repeat center center;
}


html:not(.webp) body.ref-home .banner .banner-emblem {
    background-image: url("/template_for_de/img/eagle-f.png");
}
html:not(.webp) body.ref-home .banner .banner-big-emblem {
    background-image: url("/template_for_de/img/eagle-f.png");
}
html:not(.webp) body.home-ref-de .banner .banner-emblem {
    background-image: url("/template_for_de/img/eagle-d.png");
}
html:not(.webp) body.home-ref-de .banner .banner-big-emblem {
    background-image: url("/template_for_de/img/eagle-d.png");
}



html.webp body.ref-home .banner .banner-emblem {
    background-image: url("/template_for_de/img/eagle-f.webp");
}
html.webp body.ref-home .banner .banner-big-emblem {
    background-image: url("/template_for_de/img/eagle-f.webp");
}
html.webp body.home-ref-de .banner .banner-emblem {
    background-image: url("/template_for_de/img/eagle-d.webp");
}
html.webp body.home-ref-de .banner .banner-big-emblem {
    background-image: url("/template_for_de/img/eagle-d.webp");
}



.banner {
    width: 100%;
    background-color: #55636F;
    padding: 0 35px;
    font-size: 20px;
    position: relative;
    z-index: -20;
}
.banner.banner-before::before {
    content: ' ';
    display: block;
    position: absolute;
    background-color: #55636F;
    right: 0;
    left: 0;
    top: 2px;
    z-index: 2;
    height: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}



/*body.has-christmas .banner,*/
/*body.has-christmas .banner.banner-before::before {*/
/*    background-color: #c51313;*/
/*}*/



.banner .banner-wrapper {
    max-width: 1230px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 1.25em 0;
    position: relative;
}
.banner .banner-emblem {
    background-size: contain !important;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    min-width: 4.8em;
    margin-left: 15px;
}
.banner .banner-flag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 1em;
}
.banner .banner-flag > * {
    height: 33.3%;
    width: 0.2em;
    background: #000;
}
.banner .banner-flag .flag-red {
    background-color: #D65151;
}
.banner .banner-flag .flag-gold {
    background-color: #FFE30F;
}
.banner .banner-flag .flag-white {
    background-color: #fff;
}
.banner .banner-flag .flag-blue {
    background-color: #2e53c6;
}
.banner .banner-headline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.banner .banner-headline h1,
.banner .banner-headline .headline {
    color: #fff;
    font: 600 1.9em/0.9em 'Titillium Web', sans-serif;

    /*font: 600 1.25em / 0.9em 'Montserrat', sans-serif;*/

    margin-bottom: 0.25em;
    margin-top: 0;

    /*margin-top: 0.5em;*/
}
.banner .banner-headline h2,
.banner .banner-headline .subline {
    color: #FFFFFFCC;
    font: 600 1.6em/0.9em 'Titillium Web', sans-serif;

    /*font: 500 1em/0.9em 'Montserrat', sans-serif;*/

    margin-bottom: 0.2em;
}


@media all and (min-width: 992px) {

    .banner .banner-headline h1,
    .banner .banner-headline .headline {
        font-size: 1.9rem;
    }
    .banner .banner-headline h2,
    .banner .banner-headline .subline {
        font-size: 1.54rem;
    }

}

.banner .banner-big-emblem {
    background-size: contain !important;
    position: absolute;
    right: 15px;
    background-size: 230px 200px;
    height: 205px;
    width: 205px;
    -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, color-stop(55%, rgba(0, 0, 0, 0)), color-stop(120%, rgba(255, 255, 255, 0.5)));
    -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 55%, rgba(255, 255, 255, 0.5) 120%);
    z-index: -10;
}

.banner .banner-headline .subline i.icon {
    vertical-align: -5px;
}

.banner .banner-headline .subline i.icon:not(:first-child) {
    margin-left: 5px;
}

.banner .banner-headline ul.subline > li {
    display: inline-block;
    position: relative;
    vertical-align: top;
    font-size: 0.815rem;
    padding-left: 18px;
    font-weight: 400;
}
.banner .banner-headline ul.subline > li:not(:last-child) {
    margin-right: 5px;
}
.banner .banner-headline ul.subline > li::before {
    content: ' ';
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
}


html:not(.webp) .banner .banner-headline ul.subline > li::before {
    background-image: url('/images/icon-check.png');
}
html.webp .banner .banner-headline ul.subline > li::before {
    background-image: url('/images/icon-check.webp');
}



@media (max-width: 1000px) {
    .banner {
        font-size: 18px;
        padding: 0 30px;
    }
    .banner .banner-big-emblem {
        display: none;
    }
    .banner .banner-emblem {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .banner {
        padding: 0;
        font-size: 15px;
    }
    .banner .banner-wrapper {
        padding: 1.25em 10px;
    }
    .banner .banner-headline h1 {
        font-size: 1.7em;
    }
    .banner .banner-headline h2 {
        font-weight: 400;
    }
    .banner .banner-emblem {
        min-width: 4em;
    }

    .block .block-headline .add-top {
        margin-top: 5px;
    }
    .block .block-headline .add-top {
        margin-bottom: 5px;
    }

}
@media all and (max-width:575px) {


    .banner {
        font-size: 13px;
        font-size: 9px;
    }

    .banner .banner-headline .subline i.icon {
        vertical-align: -2px;
        width: 16px;
        height: 16px;
    }

    .banner .banner-headline .subline i.icon:not(:first-child) {
        margin-left: 5px;
    }

    .banner .banner-headline h1,
    .banner .banner-headline .headline {
        font-size: 1.075rem;
        margin-bottom: 0.5rem;
    }


    .banner.compact-mobile .banner-flag > * {
        width: 0.4em;
    }
    .banner.compact-mobile .banner-emblem {
        display: none;
    }
    .banner.compact-mobile .banner-flag {
        margin-left: 0 !important;
    }

    .banner.compact-mobile .banner-headline h1,
    .banner.compact-mobile .banner-headline .headline {
        margin-top: 0px;
    }



}
@media all and (max-width:350px) {


    .banner .banner-headline h1,
    .banner .banner-headline .headline {
        font-size: 1rem;
    }

}
@media (max-width: 500px) {

    .banner {
        font-size: 13px;
        font-size: 9px;
    }

}
@media (max-width: 413px) {

    .banner {
        font-size: 12px;
        font-size: 9px;
    }

}
@media (max-width: 374px) {

    .banner {
        font-size: 9px;
    }

}




/**
 * Hamburger
 */

@media all and (max-width:991px) {

    .hamburger {
        display: block;
        width: 36px;
        position: absolute;
        right: 28px;
        top: 22px
    }
    .hamburger div {
        height: 3px;
        margin: 7px 0;
        background: var(--theme-gray-text);
        -webkit-transition: 0.35s;
        -o-transition: 0.35s;
        transition: 0.35s
    }
    .hamburger.cross div:nth-child(2) {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
    }
    .hamburger.cross div:nth-child(1) {
        -webkit-transform: translateY(10px) rotate(-45deg);
        -ms-transform: translateY(10px) rotate(-45deg);
        transform: translateY(10px) rotate(-45deg)
    }
    .hamburger.cross div:nth-child(3) {
        -webkit-transform: translateY(-10px) rotate(45deg);
        -ms-transform: translateY(-10px) rotate(45deg);
        transform: translateY(-10px) rotate(45deg)
    }


}





/**
 * Others
 */

.jq-stars {
    display: inline-block;
}

.jq-rating-label {
    font-size: 22px;
    display: inline-block;
    position: relative;
    vertical-align: top;
    font-family: helvetica, arial, verdana;
}

.jq-star {
    width: 100px;
    height: 100px;
    display: inline-block;
    cursor: pointer;
}

.jq-star-svg {
    padding-left: 3px;
    width: 100%;
    height: 100% ;
}

.jq-star-svg path {
    stroke-linejoin: round;
}

.jq-shadow {
    -webkit-filter: drop-shadow( -2px -2px 2px #888 );
    filter: drop-shadow( -2px -2px 2px #888 );
}

.jq-star-svg {
    padding-left: 3px;
    width: 100%;
    height: 100%;
}




/* FAQ Questions */


.questions-wrapper {
    display: block;
    position: relative;
}

.questions-wrapper:not(.regular) {
    background: #efefef;
}

.questions-wrapper .montitle>h2 {
    color: var(--theme-gray-text);
    margin-bottom: 25px
}

.questions-wrapper .news-wrap {
    padding-right: 35px
}

.questions-wrap {
    display: block;
    position: relative
}

.questions-wrap .more {
    margin-top: 16px
}

.questions-wrap .questions-list h3 {
    cursor: pointer!important;
    display: block;
    position: relative;
    color: var(--theme-gray-text);
    font-size: 11.5pt;
    font-weight: 600;
    line-height: 1.35em;
    padding: 17px 0 17px 46px;
    margin: 0
}

.questions-wrap .questions-list h3:not(:first-child) {
    border-top: 2px solid #fff
}

.questions-wrap .questions-list.reverse h3:not(:first-child) {
    border-top: 2px solid #efefef
}

.questions-wrap .questions-list h3.active {
    font-weight: 600
}

.questions-wrap .questions-list.preview {
    margin-top: -10px
}

.questions-wrap .questions-list.preview h3 {
    display: none;
    margin: 0
}

.questions-wrap .questions-list.preview h3>a {
    display: block;
    padding-right: 25px
}

.questions-wrap .questions-list.preview h3:nth-child(1),
.questions-wrap .questions-list.preview h3:nth-child(3),
.questions-wrap .questions-list.preview h3:nth-child(5),
.questions-wrap .questions-list.preview h3:nth-child(7),
.questions-wrap .questions-list.preview h3:nth-child(9) {
    display: block
}

.questions-wrap .questions-list.preview p:nth-child(10) {
    padding-bottom: 18px!important;
    margin: 0!important
}

.questions-wrap .questions-list p {
    display: none;
    color: var(--theme-gray-text);
    padding: 0 0 26px 48px;
    margin: -5px 0 0
}

.questions-wrap .questions-list h3:before {
    content: ' ';
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    background-color: var(--theme-gray-text);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%)
}


html:not(.webp) .questions-wrap .questions-list h3:before {
    background-image: url(/images/icon-plus-white.png);
}
html:not(.webp) .questions-wrap .questions-list h3.active:before {
    background-image: url(/images/icon-minus-white.png)
}


html.webp .questions-wrap .questions-list h3:before {
    background-image: url(/images/icon-plus-white.webp);
}
html.webp .questions-wrap .questions-list h3.active:before {
    background-image: url(/images/icon-minus-whitewebpg)
}



@media all and (max-width:1199px) {

    .questions-wrapper .news-wrap {
        padding-right: 15px
    }

}

@media all and (max-width:991px) {

    .questions-wrapper .montitle > h2 {
        margin-bottom: 20px
    }
    .questions-wrapper .news-wrap {
        padding-right: 0
    }
    .questions-wrapper.has-news .questions-wrap {
        margin-top: 45px
    }

}

@media all and (max-width:767px) {

    .questions-wrap .questions-list h3 {
        padding: 15px 0 15px 46px
    }

}

@media all and (max-width:575px) {

    .questions-wrap .questions-list h3 {
        font-size: 15px;
        line-height: 1.3em;
        padding: 15px 0 15px 46px
    }
    .questions-wrap .questions-list.preview {
        margin-top: -12px
    }
    .questions-wrap .more {
        margin-top: 10px
    }

}




/*  STORIES  */






.stories-wrapper {
    display: block;
    position: relative
}

.stories-wrapper .montitle>h2 {
    color: #636363
}

.stories-wrap .row {
    margin: 0 -7px
}

.stories-wrap .row>div {
    padding: 0 7px
}

.stories-wrap .story-item {
    display: block;
    position: relative;
    padding: 20px 22px 10px;
    border: 2px solid #efefef;
    background: #fff;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    text-align: center;
}

.stories-wrap.static .story-item {
    height: 100%
}

.stories-wrap.static .row > div {
    padding-bottom: 15px
}

.stories-wrap .story-item > .trust-author {
    margin-bottom: 10px
}


.stories-wrap .story-item > .rating {
    margin-bottom: 10px
}

.stories-wrap .story-item > .rating > .stars {
    display: inline-block;
    vertical-align: middle
}

.stories-wrap .story-item>.rating>.score {
    display: inline-block;
    vertical-align: -7px;
    color: #fff;
    background: #0d9a42;
    background: #098939;
    padding: 3px 7px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    font-weight: 600;
    overflow: hidden;
    margin: 0 7px;
}

.stories-wrap .story-item>.author {
    font-size: 16px
}

.stories-wrap .story-item>.date {
    display: block;
    font-size: .9em;
    color: var(--theme-gray-medium);
}

.stories-wrap .more {
    text-align: center;
    margin-top: 40px
}


@media all and ( max-width: 1199px ) {


    .stories-wrap .story-item {
        padding: 20px 15px 5px
    }


}

@media all and (max-width: 991px) {

    .stories-wrap .row > .col-item-4 {
        display: none;
    }

}

@media all and ( max-width: 767px ) {



    .stories-wrap .row>div {
        padding-bottom: 14px
    }
    .stories-wrap .story-item {
        height: 100%;
        margin-bottom: 0;
        padding: 50px 14px 0;
        text-align: left
    }
    .stories-wrap .story-item>.rating {
        display: inline-block;
        position: absolute;
        top: 10px;
        right: 10px;
        padding-right: 36px
    }
    .stories-wrap .story-item>.rating>.score {
        position: absolute;
        top: -2px;
        right: 0;
        margin: 0;
        padding: 1px 6px!important;
        text-align: center;
        max-width: 48px;
        min-width: 27px;
        width: auto;
    }
    .stories-wrap .story-item>.author {
        text-align: left;
        position: absolute;
        top: 32px;
        left: 14px
    }
    .stories-wrap .story-item>.date {
        display: inline-block;
        position: absolute;
        top: 10px;
        left: 14px
    }
    .stories-wrap .more {
        text-align: center;
        margin-top: 15px
    }


}

@media all and ( max-width: 575px ) {



}












/* MON TITLE */

.montitle h1,
.montitle h2,
h3.montitle {
    color: var(--theme-gray-text);
    font-size: 26px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3em;
    margin-bottom: 15px
}

.montitle h1 {
    font-size: 32px;
    margin-bottom: 20px
}

h3.montitle {
    font-size: 20px
}

.main.montitle {
    text-align: center;
    margin-bottom: 38px
}

.montitle .label {
    color: #fff;
    background: #0d9a42;
    display: inline-block;
    vertical-align: -75%;
    padding: 10px 12px;
    line-height: 1em;
    border-radius: 7px;
    overflow: hidden;
    margin: 8px
}

.montitle .label.blue {
    background: #636363!important
}

.montitle span.subtitle {
    display: block;
    font-size: 22px;
    font-weight: 400;
    margin-top: -10px
}


@media all and (max-width:991px) {

    .main.montitle {
        margin-bottom: 25px
    }


}


@media all and (max-width:767px) {

    .montitle span.subtitle {
        display: inline-block;
        font-size: 21px
    }

    .montitle h1 {
        font-size: 28px
    }

    .montitle h2 {
        font-size: 28px
    }

    h3.montitle {
        font-size: 18px
    }

}


@media all and (max-width:575px) {

    .montitle h2 {
        font-size: 24px
    }
    .montitle .label {
        font-size: 23px;
        margin: 0 5px;
        padding: 7px 8px;
        vertical-align: -50%
    }

}





/**
 * Rating
 */

.rating-reviews:not(.dynamic) {
    background: transparent no-repeat 0 0;
    background-size: 5em auto;
    display: block;
    height: 1em;
    width: 5em;
}
.rating-reviews:not(.dynamic) span {
    background: transparent no-repeat 0 -1em;
    background-size: 5em auto;
    display: block;
    height: 1em;
}

html:not(.webp) .rating-reviews:not(.dynamic) {
    background-image: url(/template_for_de/img/review-stars.png);
}
html:not(.webp) .rating-reviews:not(.dynamic) span {
    background-image: url(/template_for_de/img/review-stars.png);
}

html.webp .rating-reviews:not(.dynamic) {
    background-image: url(/template_for_de/img/review-stars.webp);
}
html.webp .rating-reviews:not(.dynamic) span {
    background-image: url(/template_for_de/img/review-stars.webp);
}











/**
 * Rating (REMOVE)
 */

.rating-reviews:not(.dynamic) {
    background: transparent no-repeat 0 0;
    background-size: 5em auto;
    display: block;
    height: 1em;
    width: 5em;
}
.rating-reviews:not(.dynamic) span {
    background: transparent no-repeat 0 -1em;
    background-size: 5em auto;
    display: block;
    height: 1em;
}

html:not(.webp) .rating-reviews:not(.dynamic) {
    background-image: url(/template_for_de/img/review-stars.png);
}
html:not(.webp) .rating-reviews:not(.dynamic) span {
    background-image: url(/template_for_de/img/review-stars.png);
}

html.webp .rating-reviews:not(.dynamic) {
    background-image: url(/template_for_de/img/review-stars.webp);
}
html.webp .rating-reviews:not(.dynamic) span {
    background-image: url(/template_for_de/img/review-stars.webp);
}

















.visible-xs {
    display: none !important;
}

@media all and (max-width:767px) {

    .hidden-xs {
        display: none !important;
    }

    .visible-xs {
        display: block !important;
    }

    .visible-xs.xs-flex {
        display: inline-flex !important;
    }

    .visible-xs.xs-inline-flex {
        display: inline-flex !important;
    }

}