@charset "UTF-8";
@import url('/shop/frontend/public/css/webshop.css?v=8.96.1439');

body.bodyOverlay .container.content:after {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 39;
}

body.bgOverlay:after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 99999999;
}


.minibasket {
    position: absolute;
    height: 100%;
    display: flex;
    flex-direction: column;
    top: 0;
    right: 0;
    transform: translateX(110%);
    background-color: rgba(255,255,255,1.00);
    width: 500px;
    max-width: calc(100vw - 260px);
    transition: all .5s ease;
}
.minibasketcontainer.active .minibasket {
    transform: translateX(0);
}
.minibasket > *:not(.linescontainer) {
    padding-left: 40px;
    padding-right: 40px;
}
.minibasket > .header {
    font-size: 25px;
    padding-top: 30px;
    padding-bottom: 10px;
    display: flex;
    align-items: flex-end;
}
.minibasket .linescontainer {
    position: absolute;
    right: 100%;
    top: 0;
    height: 100%;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    width: 260px;
    box-shadow: -40px 0 40px rgba(0,0,0,.2);
}
.minibasket .linescontainer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 10px;
    height: 100%;
    box-shadow: -10px 0 8px 0 rgb(0 0 0 / 3%);
}
.minibasket .linesheader {
    font-size: 15px;
    justify-content: center;
    padding: 40px 30px 27px;
    flex: none;
    display: flex;
    align-items: flex-end;
    position: relative;
}
.basketclosebutton {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Arial';
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    background-color: #000;
    color: #FFF;
    padding: 0 10px;
}
.minibasket .lines {
    flex: auto;
    padding: 0 30px;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
}
.minibasket .line {
    display: flex;
    flex-direction: column;
    background-color: rgba(255,255,255,1.00);
    padding: 15px;
    box-shadow: 0 0 5px rgba(0,0,0,.1);
    margin-bottom: 20px;
    position: relative;
}
.minibasket .line > * {
    flex: none;
}
.minibasket .line a {
    text-decoration: none;
}
.minibasket .line .price {
    color: #E03400;
    font-weight: 700;
}
.minibasket .line .deletebutton, .slideoutmain .line .deletebutton {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    display: flex;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgba(0,0,0,1.00);
    align-items: center;
    justify-content: center;
    transform: translate(-50%,-50%);
    cursor: pointer;
}
.minibasket .line .deletebutton img, .slideoutmain .line .deletebutton img {
    display: block;
    width: 55%;
    height: auto;
    margin: 0;
    cursor: pointer;
}
.minibasket .line > .image {
    position: relative;
    margin-bottom: 10px;
}
.minibasket .line > .image img {
    display: block;
    width: 100%;
    height: auto;
}
.minibasket .line > a.name {
    text-decoration: none;
    color: rgba(0,0,0,1.00);
    font-weight: bold;
}
.minibasket .line > .price {
    display: flex;
    flex-direction: column;
    line-height: normal;
    font-weight: bold;
}
.minibasket .line .price small, .minibasket .line > small {
    color: rgba(130,130,130,1.00);
    font-weight: normal;
    display: block;
}
.minibasket .line .incdec {
    margin: 7px 0 10px;
}
.minibasket .line .giftwrap label {
    display: flex;
    align-items: center;
    margin: 0 0 7px;
    cursor: pointer;
}
.minibasket .line .giftwrap label input {
    flex: none;
    margin: 0 7px 0 0;
}

.minibasket .shippingline, .minibasket .total, .minibasket .wrappingline {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
}
.minibasket .wrappingline.hidden {
    display: none;
}
.minibasket .shippingline, .minibasket .wrappingline {
    border-bottom: solid 1px #f0f0f0;
}
.minibasket .discountcode {
    border: none;
    border-bottom: solid 1px #f0f0f0;
}
.minibasket .discountcode > input[type="text"] {
    padding-left: 0;
}
.minibasket .discountcode > input[type="text"].active {
    background-position: 0 50%;
}
.minibasket .discountcode > button:disabled {
    cursor: progress;
}
.minibasket .discountcode > button.active {
    background-color: #6C7A00;
}
.minibasket .pointsinfo {
    border-left: none;
    border-right: none;
}
.minibasket .total {
    font-weight: bold;
    font-size: 15px;
    padding-top: 20px;
    padding-bottom: 30px;
}
.minibasket .sparxpress {
    margin-bottom: 20px;
}
.minibasket .bottom {
    padding-bottom: 40px;
}
.minibasket .bottom > a {
    padding: 15px 20px;
    width: 100%;
}
.minibasket .bottom > a:first-child {
    margin-bottom: 20px;
    background-color: #6B6B6B;
}
.minibasket .bottom > a:last-child:not(:hover) {
    animation: buttonColorChange 5s infinite;
}
.minibasket .pointsinfo:not(.active) {
    display: none;
}
.basket-usp {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1% 40px;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
    border-top: solid 1px rgba(237,237,237,1.00);
}
.basket-usp > div {
    width: 48%;
    flex: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 1% 2%;
    background-color: #f9f9f9;
    padding: 10px;
}
.basket-usp > div > * {
    flex: none;
}
.basket-usp > div > img {
    display: block;
    width: 20px;
	height: auto;
    margin-bottom: 10px;
}
.basket-usp > div > span {
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    width: 100%;
}
.basket-usp > div > small {
    color: #909090;
    display: block;;
    width: 100%;
    text-align: center;
}
.basket-usp-emaerket img {
    width: 30px;
}


/* ALERTBAR */
.infobar {
    display: flex;
    /*background-color: #604338;*/
	background-color: darkred;
    color: rgba(255,255,255,1.00);
    letter-spacing: 1px;
    z-index: 30;
}
.infobar > div {
    padding: 8px 0;
    align-items: center;
    display: flex;
    position: relative;
}
.infobar > div > * {
    flex: none;
}
.infobar a {
    padding: 3px 8px;
    background-color: rgba(255,255,255,1.00);
    text-decoration: none;
    margin-left: 10px;
    border-radius: 2px;
}
.infobar .close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
    cursor: pointer;
    padding: 0 0 0 20px;
}
.infobar .close:before {
    content: "×";
    font-family: 'Arial';
    line-height: 1;
    font-size: 18px;
    color: #FFF;
}
/*
body:not(.webshop-frontpage):not(.webshop-checkout) .infobar.active {
    display: flex;
    
}
*/


.frontpage-products {
    margin: 80px auto 40px;
    max-width: 90%;
}
.frontpage-products > span {
    display: block;
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 400;
}
.frontpage-products > span:before {
    content:url("/images/skins/Bewise/images/icon-flames.svg");
    position: absolute;
    left: 50%;
    top: -55px;
    transform: translateX(-50%);
    width: 50px;
}
.getproductcategory {
    padding: 150px 0 80px;
    position: relative;
    margin-bottom: 50px;
    background-color: #eee;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}
.getproductcategory:before {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #ddd;
    z-index: 1;
    content: "";
}
.getproductcategory .product .image img[data-favorites] {
    display: none;
}
/*
.getproductcategory:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-color: #232c77;
    z-index: -1;
    content: "";
}
.getproductcategory:after {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 50%;
    background-color: #ee7d2a;
    z-index: -1;
    content: "";
}
*/
.getproductcategory > div {
    display: flex;
    justify-content: space-between;
    width: 1700px;
    max-width: 90%;
    margin: 0 auto;
    flex-wrap: wrap;
}
.getproductcategory .slick-arrow, .imagescontainer .slick-arrow {
    background-color: #604338;
    cursor: pointer;
}
.getproductcategory .slick-arrow.slick-prev, .imagescontainer .slick-arrow.slick-prev {
    background-image: url("/images/skins/Bewise/images/icon-left-white.svg");
}
.getproductcategory  .slick-arrow.slick-next, .imagescontainer  .slick-arrow.slick-next {
    background-image: url("/images/skins/Bewise/images/icon-right-white.svg");
}
.getproductcategory > div > div {
    width: 48%;
    flex: none;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.getproductcategory > div > div > img {
    position: absolute;
    top: -110px;
    left: 10px;
    height: 50px;
}
.getproductcategory .product .image {
    width: 100%;
}
.getproductcategory > div > div > *:not(.getproductcategorylogo) {
    flex: none;
    width: 48%;
}
.getproductcategory > div > div > a {
    position: relative;
    margin: 10px;
    box-shadow: 0 0 6px rgb(0 0 0 / 30%);
}
.getproductcategory > div > div > a > span {
   position: absolute;
    bottom: 20px;
    left: 5%;
    width: 90%;
    background-color: #FFF;
    border-radius: 2px;
    padding: 8px 10px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
    font-weight: bold;
}
.getproductcategory > div > div > a:hover > span {
    background-color: #6C7A00;
    color: #FFF;
}
.getproductcategory > div > div > a > img {
    display: block;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
}
.getproductcategory [class*="ProductList_Custom_UL"] > li, .getproductcategory [class*="ProductList_Custom_DIV"] > div {
    width: 100%;
    margin: 0;
    box-shadow: none;
    padding: 0;
    background-color: transparent;
}
.getproductcategory .slick-slide {
    margin: 10px;
    padding: 20px;
    box-shadow: 0 0 6px rgb(0 0 0 / 10%);
    background-color: #FFF;
}


.autopagerbutton {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    text-decoration: none;
    background-color: rgba(0,0,0,1.00);
    color: rgba(255,255,255,1.00);
    padding: 4px 25px;
    margin: 0 auto;
    width: fit-content;
}
.autopagerbutton:after {
    content: "+";
    font-size: 25px;
    margin: 0 0 0 15px;
}
.autopagerbutton.loading {
    cursor: progress;
    opacity: .4;
}
.pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 400px;
    max-width: 100%;
    margin: 30px auto;
}
.pager .prev, .pager .next {
    width: 48%;
    flex: none;
}
.pager .prev a, .pager .next a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pager img {
    width: 15px;
    transform-origin: 50% 50%;
}
.pager .prev a img {
    transform: rotate(90deg);
}
.pager .next a img {
    transform: rotate(-90deg);
}
.pager > div:empty {
    background-color: rgba(244,244,244,.50);
}
.pager .pages {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: baseline;
}
.pages a.ActivePageNumber_ProductList:link,
.pages a.ActivePageNumber_ProductList:visited,
.pages a.ActivePageNumber_ProductList:hover,
.pages a.ActivePageNumber_ProductList:active,
.pages a.InactivePageNumber_ProductList:link,
.pages a.InactivePageNumber_ProductList:visited,
.pages a.InactivePageNumber_ProductList:hover,
.pages a.InactivePageNumber_ProductList:active,
.pager .prev a,
.pager .next a {
    font-weight: normal;
    text-decoration: none;
    border: solid 1px rgba(237,237,237,1.00);
    padding: 6px 10px;
}
.pager .prev a,
.pager .next a {
    border: none;
    background-color: #6C7A00;
    color: rgba(255,255,255,1.00);
    padding-top: 7px;
    padding-bottom: 7px;
}
.pages a.ActivePageNumber_ProductList:link,
.pages a.ActivePageNumber_ProductList:visited,
.pages a.ActivePageNumber_ProductList:hover,
.pages a.ActivePageNumber_ProductList:active {
    background-color: rgba(237,237,237,1.00);
}
.pages > a:not(:last-of-type) {
    margin-right: 5px;
}
span.HiddenPagesIndicator_ProductList {
    padding: 0 3px;
}
.toppager .pager {
    /*width: 48%;*/
    flex-wrap: nowrap;
}
.toppager .pages {
    flex: auto;
    width: auto;
}
.toppager .pager .prev, .toppager .pager .next {
    width: 13%;
    min-width: 90px;
}
.toppager .pager .prev:empty, .toppager .pager .next:empty {
    visibility: hidden;
}
.HiddenPagesIndicator_ProductList + a + a + a:not(:last-of-type) {
    display: none;
}
.pages > a[rel="prev"] + a + a:not(:last-of-type) {
    display: none;
}

.closebutton {
    flex: none;
    align-self: flex-start;
    width: 45px;
    display: block;
    position: relative;
    background-color: rgba(237,237,237,1.00);
    cursor: pointer;
}
.closebutton img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 18px;
}
.closebutton:after {
    content: "";
    padding-bottom: 100%;
    display: block;
}



/* STICKY BUY */
.stickybuy {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: -300px;
    background: #fff;
    z-index: 1;
    box-shadow: 0 -2px 4px rgb(0 0 0 / 10%), 0 -2px 10px rgb(0 0 0 / 15%);
    transition: bottom .5s;
}
.stickybuy > div {
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}
.stickybuyshow {
    bottom: 0;
    z-index: 10;
}
.stickybuyinfo {
    display: flex;
    align-items: center;
}
.stickybuyinfo > a {
    width: 100px;
    margin-right: 20px;
}
.stickybuyinfo > a > img {
    max-width: 100%;
    height: auto;
    border: 1px solid #eee;
}
.stickybuyinfo > div {
    display: flex;
    flex-direction: column;
}
.stickybuyinfo > div > span {
    font-weight: 700;
    font-size: 15px;
}
.stickybuyinfo .Prices_Custom_DIV {
    font-weight: 700;
    color: #E03400;
}
.stickybuyinfo .Prices_Custom_DIV .currency {
    padding-left: 5px;
}
.stickybuyinfo .stock {
    margin: 10px 0 0 0;
}
.stickybuyinfo .stock img {
    border-radius: 50%;
    margin-right: 8px;
}


.supportbox {
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: flex-start;
    border-radius: 10px;
    box-shadow: 0 0 40px rgb(0 0 0 / 20%);
    margin: 20px 0 0;
}
.supportbox strong {
    display: block;
}
.supportbox > img {
    flex: none;
    width: 70px;
    margin: 0 20px 0 0;
    border-radius: 50%;
}

.loginpopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.50);
    z-index: 500;
    display: none;
}
.loginpopup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.loginpopup > section {
    background-color: rgba(255,255,255,1.00);
    padding: 40px 30px 30px;
    flex: none;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 40px rgba(0,0,0,.5);
    width: 600px;
    position: relative;
    max-width: 90%;
    max-height: 90%;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
}
.loginpopup:not(.favorites) .favoritesonly {
    display: none;
}
.loginpopup.favorites .largeheader:not(.favoritesonly),
.loginpopup.favorites .mediumheader:not(.favoritesonly){
    display: none;
}
.loginpopup ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.loginpopup ul > li {
    position: relative;
    padding: 0 0 0 21px;
    background-image: url("/images/skins/Bewise/images/icon-check-green.svg");
    background-repeat: no-repeat;
    background-size: 14px auto;
    background-position: 0 2px;
}
.loginpopup ul > li:not(:last-child) {
    margin-bottom: 5px;
}
.loginpopup form {
    padding: 0 0 15px;
    margin: 0 0 15px;
    display: none;
    flex-direction: column;
    border-bottom: solid 1px rgba(237,237,237,1.00);
}
.loginpopup form.active {
    display: flex;
}
.loginpopup input[type="email"], .loginpopup input[type="password"] {
    margin: 0 0 7px;
}
.loginpopup input[type="submit"] {
    display: flex;
    width: 100%;
    margin: 10px 0 15px;
}
.loginpopup a[href*="#back"] {
    padding: 0 0 10px;
}


.slick-arrow {
    font-size: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 50px;
    background-color: #FFF;
    border-radius: 3px;
    padding: 0;
    z-index: 10;
    background-size: 60% auto;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    cursor: pointer;
    border: none;
}
.slick-arrow.slick-prev {
    left: 20px;
    background-image: url("/images/skins/Bewise/images/icon-left-black.svg");
}
.slick-arrow.slick-next {
    right: 20px;
    background-image: url("/images/skins/Bewise/images/icon-right-black.svg");
}






.baskettotalinfo {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}
.ShowBasket_Custom_DIV > div {
    display: flex;
    padding: 15px;
    border: solid 1px rgba(237,237,237,1.00);
    position: relative;
    background-color: #FFF;
    box-shadow: 0 0 6px rgb(0 0 0 / 10%);
}
.ShowBasket_Custom_DIV > div {
        margin-bottom: 1%;
    }
.ShowBasket_Custom_DIV .image {
    flex: none;
    width: 70px;
    margin: 0 15px 0 0;
    display: flex;
    align-items: flex-start;
}
.ShowBasket_Custom_DIV .image a {
    position: relative;
}
.ShowBasket_Custom_DIV .image img {
    width: 100% !important;
    display: block;
    padding: 5px;
}
.ShowBasket_Custom_DIV .info {
    flex: auto;
}
.ShowBasket_Custom_DIV .info > a {
    text-decoration: none;
}
.ShowBasket_Custom_DIV .info table {
    margin: 10px 0 0;
    background-image: url("/images/skins/Bewise/images/icon-gift-black.svg");
    background-repeat: no-repeat;
    background-size: 14px auto;
    background-position: calc(100% - 10px) 50%;
    padding: 7px 35px 7px 10px;
    border: solid 1px rgba(237,237,237,1.00);
    border-radius: 2px;
    width: 10px;
}
.ShowBasket_Custom_DIV .info table td {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.ShowBasket_Custom_DIV .info table td input {
    margin-right: 7px;
}
.ShowBasket_ChildProduct_SPAN + div {
    float: right;
}
.ShowBasket_ChildProduct_SPAN + div .unit {
    display: none;
}
.ShowBasket_Custom_DIV .info .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 8px 0 0;
}
.ShowBasket_Custom_DIV .amount, .minibasket .incdec {
    display: flex;
}
.ShowBasket_Custom_DIV .amount a, .minibasket .incdec a {
    ursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    font-family: 'Arial';
    line-height: 1;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    text-decoration: none;
    border: solid 1px rgba(237,237,237,1.00);
}
.ShowBasket_Custom_DIV .amount span, .minibasket .incdec span {
    display: flex;
    padding: 0 10px;
    align-items: center;
}
.ShowBasket_Custom_DIV .amount a[href*="dec=1"]:before {
    content: "-";
}
.ShowBasket_Custom_DIV .amount a[href*="inc=1"]:before {
    content: "+";
}
.ShowBasket_Custom_DIV .amount img {
    display: none;
}
.ShowBasket_Custom_DIV .price {
    text-align: right;
}
.ShowBasket_Price_Before_Special_Offer {
    text-decoration: line-through;
}
.summarycontainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.summarycontainer > div {
    background-color: #FFF;
    padding: 20px;
    box-shadow: 0 0 6px rgb(0 0 0 / 10%);
}
.summarycontainer > div:first-child > div ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.summarycontainer > div:first-child > div ul li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}
.summarycontainer > div:first-child > div ul li img {
    margin-right: 8px;
}
.summarycontainer > div:first-child > div {
    display: flex;
    flex-wrap: wrap;
}
.summarycontainer > div:first-child > div > span {
    flex: none;
    width: 100%;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
}
.summarycontainer > div:first-child > div > div {
    display: flex;
    flex-wrap: wrap;
}
.summarycontainer > div:first-child > div > div > div {
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid #eee;
    padding: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
}

.showbasket .summary .row {
    display: flex;
    justify-content: space-between;
}
.showbasket .summary .row.total {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}
.showbasketnavigation {
    margin-left: -1%;
    margin-right: -1%;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}
.showbasketnavigation a:last-child {
    flex: none;
    width: 66%;
    margin: 0 1%;
    min-height: 55px;
    font-size: 16px;
}
.showbasketnavigation a:last-child:not(:hover) {
    animation: buttonColorChange 5s infinite;
}
.showbasketnavigation a:first-child {
    flex: none;
    width: 30%;
    margin: 0 1%;
    min-height: 55px;
    font-size: 16px;
}
.showbasket > .summary > .showbasketnavigation {
    flex: auto;
    align-items: flex-end;
    margin-top: 20px;
}
.discountcode {
    display: flex;
    justify-content: space-between;
    padding: 7px;
    align-items: center;
    border: dashed 1px rgba(209,209,209,1.00);
}
.discountcode > * {
    flex: auto;
}
.discountcode > input[type="text"] {
    border: none;
}
.discountcode > input[type="text"].active {
    padding-left: 27px;
    background-image: url('/images/skins/Bewise/images/icon-check-green.svg');
    background-repeat: no-repeat;
    background-size: 14px auto;
    background-position: 8px 50%;
}
.discountcode > button {
    margin-left: 10px;
    white-space: nowrap;
}
.minibasket .discountcode > button:before {
    content: attr(data-default);
}
.minibasket .discountcode > input.active + button:before {
    content: attr(data-remove);
}



.ShowBasket_SendBasketLink_Dialog_Link,
#ShowBasketSendBasketLink,
#ShowBasket_SendBasketLink_LinkPreview,
.ddsbr-subject,
.ddsbr-body {
    display: none;
}

.loyaltyinfo {
    padding: 10px;
    background-color: #f3f3f3;
}
.loyaltyinfo > div {
    display: none;
}
.loyaltyinfo > div.active {
    display: flex;
}
.loyaltyinfo > div > * {
    flex: auto;
}
.loyaltyinfo .totalPoints {
    display: inline;
}
.loyaltyinfo .button {
    width: 100%;
}

.showbasket #embedUsePointsContainer {
    padding-top: 10px;
    margin-top: 10px;
    border-top: solid 1px rgba(198,198,198,1.00);
}
.showbasket #embedUsePointsContainer h2 {
    font-size: inherit;
    margin: 0;
}
.showbasket .removePointsContainer p {
    margin: 0;
}
#embedUsePointsContainer [id*="embed_removePoints_"] {
    margin-top: 10px;
}
#column-order-summary .editbasket {
    width: 100%;
    margin: 0 0 20px;
    background-color: rgba(255,255,255,1.00);
    border: solid 1px rgba(239,239,239,1.00);
    color: rgba(115,115,115,1.00);
}
#column-order-summary #usePointsContainer {
    margin-top: 20px;
    padding: 10px;
    background-color: rgba(237,237,237,.30);
    display: none;
}
#usePointsContainer p {
    margin: 0;
}
#column-order-summary #usePointsContainer > p:first-of-type, #column-order-summary .removePointsContainer > p:first-of-type {
    display: none;
}
#usePointsContainer button, a#removePoints {
    margin-top: 10px;
}


body.webshop-checkout .topnav > div.container > a {
    width: 100%;
    justify-content: center;
}
body.webshop-checkout .interiorshopplus-top, body.webshop-checkout .interiorshopplus-top a, body.webshop-checkout .language {
    display: none;
}
body.webshop-checkout .usp {
    justify-content: center;
    padding: 5px 0;
}
body.webshop-checkout .minibasket .pointsinfo,
body.webshop-checkout .minibasket .bottom {
    display: none;
}
fieldset {
    border: none;
    padding: 0;
}

.checkout-order-confirm-headline {
	display: none;
}
.webshop-checkout header,
.webshop-checkout .infobar, #customer-login {
    display: none;
}
body.webshop-checkout {
    background-color: #FFF;
}
body.webshop-checkout > .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 350px;
}
#checkout-container .checkout-headline {
    display: none;
}
#checkout-container h2,
#checkout-container h3 {
    font-size: 20px;
    font-weight: 400;
    padding: 0;
    margin: 0 0 15px 0;
	white-space: normal;
}
#checkout-container h3 img {
    width: 250px;
    display: block !important;
    margin-bottom: 30px;
}
#customer-data {
    background-color: #f8fafc;
    padding: 20px;
    border: 1px solid #eee;
}
#checkout-container #column-data #customer-data input, #checkout-container #column-data #customer-data select {
    margin-bottom: 0;
}
#checkout-container #column-data #customer-data input:not(input[type="checkbox"]), #checkout-container #column-data #customer-data select {
	height: 36px;
	border-radius: 3px;
	padding: 0 10px;
}
#customer-alternative-delivery {
    background-color: #f9f9f9;
    padding: 20px;
}
label[for="checkout_altdelivery_customertype"] {
    width: 100%;
}
#checkout-container {
    display: flex;
    transition: opacity 1s ease;
    border-bottom: solid 1px #e1e1e1;
    flex-wrap: wrap;
}

#checkout-container > div.checkoutleft,
#checkout-container > div.checkoutright {
    padding: 3%;
}
#checkout-container > div.checkoutleft {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}
#checkout-container > div.checkoutright {
    width: 40%;
    background-color: #f8fafc;
    border-left: solid 1px #e1e1e1;
}
div#checkout-container #column-data,
div#checkout-container #column-shipping-payment,
#checkout-container #column-order-summary {
    float: none;
    width: 700px;
    max-width: 100%;
    padding: 0;
    border: none;
    min-height: none;
}
#checkout-container #column-order-summary {
    width: 400px;
}

#column-data .logo img {
    margin: 0 0 40px;
    display: block;
    width: 145px;
    height: auto;
}
#checkout-container fieldset,
#shipping-methods {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    border: none;
}
#customer-data fieldset {
    align-items: flex-start;
}
#checkout-container fieldset > label,
#checkout-container fieldset > div#subscription-maillist {
    flex: none;
    width: 48%;
    margin: 1%;
}
#shipping-methods > label {
	flex: none;
    width: 100%;
    margin: 1% 0;
}
#checkout-container .checkout-row {
    display:flex;
    float:none;
    margin: 1%;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
}
#checkout-container fieldset > label[for="checkout_note"] {
    width:98%;
}
#checkout-container fieldset > label[for="res2"] {
    display: flex;
    flex-wrap: wrap;
}
#checkout-container fieldset > label[for="res2"] > * {
    flex: none;
}
#checkout-container fieldset > label[for="res2"] .salesdiscountcode-label {
    width: 100%;
}
#checkout-container fieldset > label[for="res2"] .salesdiscountcode-container {
    flex: auto;
}
#checkout-container fieldset > label[for="res2"] .salesdiscountcode-button-container input[type="button"] {
    height: 35px;
    min-height: 35px;
    padding: 0 15px;
    margin-left: 6px;
}
#checkout-container fieldset > label[for="checkout_customertype"] {
    width: 98%;
    border-bottom: solid 1px #e1e1e1;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
#checkout-container fieldset > label[for="checkout_customertype"] > span {
    display: none;
}
#checkout-container fieldset > div#subscription-maillist {
    width: 98%;
    display: flex;
    padding: 10px;
    background-color: #f8fafc;
}
#checkout-container fieldset > div#subscription-maillist label {
    padding-left: 10px;
    cursor: pointer;
}
#checkout-container fieldset > label[for="checkout_customer_email"] {
    width: 98%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#checkout-container fieldset > label[for="checkout_customer_email"] > div {
    flex: none;
    width: 49%;
}

#column-shipping-payment {
    margin-top: 30px;
}
#shipping-methods {
    margin-bottom: 30px;
    background-color: #f8fafc;
    padding: 20px;
    border: 1px solid #eee;
}
#payment-methods {
    background-color: #f8fafc;
    padding: 20px;
    border: 1px solid #eee;
}
#payment-methods > fieldset > label,
#shipping-methods > label {
    border: solid 1px #ddd;
    padding: 10px;
    border-radius: 3px;
    cursor: pointer;
    background-color: #FFF;
}
#shipping-methods > div:empty {
    display: none !important;
}
#column-shipping-payment label.selected {
    background-color: #fbfcf7;
}
#column-shipping-payment td {
    vertical-align: top;
}
#column-shipping-payment input[type="radio"] {
    margin: 2px 10px 0 0;
}
.shipping-message,
.payment-message {
    color: rgba(113,113,113,1.00);
}

#checkout_customertype {
    position: absolute;
    left: -4000px;
    top: -4000px;
}
.typeselect {
    display: flex;
    margin: 0 -1%;
}
.typeselect > div {
    margin: 0 1%;
    flex: auto;
    max-width: 48%;
    padding: 10px 13px;
    border: solid 1px #ddd;
    background-color: #FFF;
    border-radius: 3px;
    cursor: pointer;
    align-items: center;
    justify-content: flex-start;
    display: flex;
    position: relative;
}
.typeselect > div:before {
    width: 20px;
    height: 20px;
    flex: none;
    margin: 0 10px 0 0;
    border-radius: 50%;
    background-color: #eee;
    border: 1px solid #ddd;
    content: "";
}
.typeselect > div.active:before {
    background-image: url("/images/skins/Bewise/images/icon-check-green.svg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 60%;
    background-color: #FFF;
}
.typeselect > div.active {
    cursor: default;
    background-color: #fbfcf7;
}
.checkout-shipping-method-image img, .checkout-payment-method-image img {
    height: 20px;
}
#payment-giftcertificateinfo {
    margin-bottom: 30px;
}
#payment-giftcertificateinfo fieldset {
    margin: 0;
}
#payment-giftcertificateinfo fieldset > label[for="checkout-giftcertificate-cardnumber"] {
    width: 100%;
    margin: 0;
}
#payment-giftcertificateinfo input[type="text"] {
    flex: auto;
    width: auto;
}
#payment-giftcertificateinfo input[type="text"] + div {
    flex: none;
}
#payment-giftcertificateinfo input[type="button"] {
    height: 35px;
    min-height: 35px;
    padding: 0 15px;
    margin-left: 6px;
}
#checkout-container #order-summary table {
    border-bottom: none;
}
#confirm-accepterms {
    width: 100%;
    display: flex;
    padding: 10px;
    background-color: rgba(255,255,255,1.00);
    border: solid 1px #e1e1e1;
    margin: 15px 0;
    align-items: flex-start;
    justify-content: flex-start;
}
#confirm-accepterms input[type="checkbox"] {
    margin: 2px 10px 0 0;
}
#confirm-accepterms span {
    cursor: pointer;
}

body #confirm-checkout input[type="button"],
#confirm-checkout input[type="button"]:hover {
    width: 100%;
    color: rgba(255,255,255,1.00);
    font-size: 16px !important;
    padding: 8px 20px !important;
}

#checkout-container fieldset > label[for="res1"],
#checkout-container fieldset > label[for="res3"],
#checkout-container fieldset > label[for="res4"],
#checkout-container fieldset > label[for="res5"] {
    display: none;
}

div#order-summary > table {
    width: 100%;
}
div#order-summary > table:nth-of-type(2) {
    margin: 10px 0;
    padding: 10px 0;
    border-top: solid 1px #e1e1e1;
    border-bottom: solid 1px #e1e1e1;
}
div#order-summary .bold {
    font-size: 17px;
    font-weight: bold;
}



.shippingcountdown {
    min-height: 38px;
}
.shippingcountdown .text {
    margin: 0 0 5px;
    padding: 0 65px 0 0;
    font-weight: bold;
    text-transform: uppercase;
}
.shippingcountdown .text i {
    font-style: normal;
    color: #A1B4BF;
}
.shippingcountdown .bar {
    height: 16px;
    padding: 1px;
    border: solid 1px #A1B4BF;
    background-color: rgba(255,255,255,1.00);
    display: flex;
    position: relative;
}
.shippingcountdown .bar span {
    flex: none;
    background-color: #A1B4BF;
    width: 0;
}
.shippingcountdown .bar small {
    border-radius: 3px;
    padding: 3px 5px;
    font-size: 11px;
    background-color: #A1B4BF;
    color: rgba(255,255,255,1.00);
    position: absolute;
    right: 0;
    bottom: calc(100% + 5px);
}
.shippingcountdown .bar small:after {
    content: "";
    width: 0; 
    height: 0; 
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #A1B4BF;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.shippingcountdown:empty {
    display: none;
}
.shippingcountdown.redeemed {
    background-color: #e9f4e9;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shippingcountdown.redeemed img {
    margin-right: 4px;
    width: 14px;
}

form[action="/shop/customer.html"] table.Login_Customer input, form[action="/shop/customer.html"] table.ForgotPassword_Customer input {
    display: block;
    width: 100% !important;
    margin: 0 0 10px;
}
body.webshop-customercenter td > b + br,
body.webshop-customercenter table + br {
    display: none;
}
table.Login_Customer > tbody > tr:nth-child(-n+2):not(:first-child) td,
table.ForgotPassword_Customer td {
    font-size: 0;
}
form[name="forgotpsw"] {
    margin-top: 20px;
}

.ErrorText_customerlogin {
	background-color: rgba(248,208,209,1.00);
	border: solid 1px rgba(214,160,161,1.00);
	color: rgba(165,67,69,1.00);
	padding: 6px 10px;
	margin: 0 0 10px;
	border-radius: 3px;
}

.signup_confirm_checkbox {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin: 15px 0 0;
}
.signup_confirm_checkbox input {
    margin: 0 7px 0 0;
    flex: none;
}

.loyalty_signup_table > tbody > tr > td:first-child > form:first-of-type {
    background-color: rgba(244,244,244,1.00);
    padding: 15px;
}
.loginText {
    display: none;
}
.BackgroundColor1_Customer:not(.loyalty_signup_table) {
    padding: 20px;
    clear: both;
    width: 900px;
	max-width: 100%;
    background-color: #FFF;
    margin: 0 auto;
    box-shadow: 0 0 6px rgb(0 0 0 / 10%);
}
body.loggedin .BackgroundColor1_Customer:not(.loyalty_signup_table) {
    width: 100%;
}
span[id*="tabB"] {
    margin: 0 10px 0 0;
    float: left;
}
span[id*="tabB"] > span {
    padding: 5px 15px;
    border: solid 1px rgba(216,216,216,1.00);
    border-bottom-width: 0;
    border-radius: 2px 2px 0 0;
    display: block;
}
span[id*="tabB"]:hover > span:not(.Tabactive_Customer) {
    background-color: rgba(183,183,183,.30);   
}
span[id*="tabB"] > span.Tabactive_Customer {
    background-color:rgba(0,0,0,1.00);
    border-color:rgba(0,0,0,1.00);
    color: rgba(255,255,255,1.00);
}
form[name="CustomerCenterForm"] > table {
    clear: both;
}
.Text1_Customer span.Heading_Customer + br,
.Text1_Customer span.Heading_Customer + br + br {
    display: none;
}
.BackgroundColor1_Customer > tbody > tr > td > table.Text1_Customer {
    table-layout: fixed;
}
#OrderDetailsHeading + br + table {
    display: none;
}
#OrderDetailsHeading + br + table + br + table {
    width: 100%;
}
.Text1_Customer tr[id*="Field"] > td {
    padding: 3px 0;
}

.extraProductsContainer {
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.extraProductsHeader {
    display: block;
    width: 100%;
    font-size: 18px;
    margin-bottom: 10px;
}
.extraProduct {
    flex: none;
    width: 49%;
    display: flex;
    align-items: center;
    margin: 0 0 10px;
    border: solid 1px rgba(237,237,237,1.00);
    background-color: #f9f9f9;
}
extraProductsContainer > .extraProduct:not(:last-child) {
    margin-bottom: 10px;
}
.extraProduct > * {
    flex: none;
    margin: 0 2%;
}
.extraProduct .check {
    align-self: center;
    position: relative;
    display: flex;
}
.extraProduct .check img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    transform: translate(-50%,-50%);
    z-index: 5;
    display: none;
    pointer-events: none;
}
.extraInfo {
    display: none;
}
.extraProduct .check input:checked + img {
    display: block;
}
.extraProduct input[type="number"] {
    width: 45px;
    flex: none;
    border-radius: 4px;
    padding: 0 3px 0 10px;
}
.extraProduct > .image {
    width: 60px;
    align-self: center;
    position: relative;
    background-color: #FFF;
    border: 1px solid #eee;
}
.extraProduct > .image img {
    display: block;
    width: 100%;
    padding: 5px;
}
.extraProduct > .name {
    flex: auto;
    padding: 8px 0;
}
.extraProduct > .name strong {
    display: block;
}
.extraProduct > .name select {
    margin: 8px 0 0;
    display: block;
    width: auto;
}
.extraProduct .price strike {
    padding-right: 6px;
}

a[href*="remove=1"], a[href*="RemProduct=1"] {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-40%,-40%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(0,0,0,1.00);
    background-image: url("/images/skins/Bewise/images/icon-delete-white.svg");
    background-repeat: no-repeat;
    background-size: 60% auto;
    background-position: 50% 50%;
    z-index: 10;
}
a[href*="remove=1"] img, a[href*="RemProduct=1"] img {
    display: none;
}


#ProductFilter-Container {
    position: relative;
}
#ProductFilter-Container.filterloading:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,.70);
    z-index: 100;
    position: absolute;
    background-image: url(/images/skins/Bewise/images/loader.gif);
    background-repeat: no-repeat;
    background-position: 50% 10%;
    background-size: 40px auto;
}
#ProductFilter-Container > * {
    flex: none;
}
.product-filter-headertext-container {
    display: none;
}
#ProductFilter-Container div[class*="product-filter-column-container"] {
    display: flex;
    flex: auto;
    flex-direction: column;
    -webkit-overflow-scrolling:touch;
    
}
.product-filter-row {
    margin-bottom: 20px;
    background-color: #FFF;
    box-shadow: 0 0 6px rgb(0 0 0 / 10%);
    padding: 20px;
}
div.product-filter-container {
    border: none;
}
div.product-filter-header-container {
    background-color: transparent;
    padding: 0;
    border: none;
    float: none;
}
div.product-filter-body-container, div.product-filter-body-container-price {
    padding: 10px 0 0;
}
div.product-filter-body-container-price {
    padding-top: 15px;
}
div.product-filter-header-text {
    text-transform: uppercase;
}
div.product-filter-checkbox-container {
    display: flex;
    align-items: center;
    border: solid 1px #ddd;
    padding: 8px 8px;
    border-radius: 3px;
    position: relative;
    transition: background 0.3s ease;
    background-color: #FFF;
}
.product-filter-checkbox-container img.flag {
    width: 18px;
    margin-right: 6px;
}
div.product-filter-advanced-variant-checkboxes, div.product-filter-tag-checkboxes, div.product-filter-manufactor-checkboxes {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}


.product-filter-advanced-variant-checkboxes div.product-filter-checkbox-container, div.product-filter-tag-checkboxes div.product-filter-checkbox-container, div#product-filter-manufactor-checkboxes .product-filter-checkbox-container {
    margin: 0 5px 5px;
    width: calc(50% - 10px) !important;
    background-color: #FFF;
}
div.product-filter-checkbox-container.active {
    border-color: #6C7A00 !important;
    background-color: #6C7A00 !important;
}
div.product-filter-checkbox-container.active * {
    color: rgba(255,255,255,1.00);
}
.product-filter-advanced-variant-checkboxes div.product-filter-checkbox-container.active, div.product-filter-tag-checkboxes div.product-filter-checkbox-container.active {
    background-color: #6C7A00;
    color: rgba(255,255,255,1.00);
}

div.product-filter-checkbox-container:not(.disabled):not(.active):hover, div.product-filter-clear-all a:hover {
    background-color: #6C7A00 !important;
    border-color: #6C7A00 !important;
    color: #FFF;
}

div.product-filter-checkbox-container.disabled {
    cursor: default;
    opacity: .3;
}
div.product-filter-checkbox-container.disabled:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
}
div.product-filter-checkbox-container > * {
    flex: none;
    float: none;
}
label.product-filter-checkbox-label {
    float: none;
    line-height: normal;
    flex: auto;
    cursor: pointer;
}

div.product-filter-clear {
    display: none;
}
.product-filter-row input[type="checkbox"] {
    display: none;
}
.checkbox {
    float: left;
    width: 19px;
    height: 19px;
    background-color: rgba(214,214,214,1.00);
    cursor: pointer;
    margin: 0 8px 0 0;
    border-radius: 50%;
}
input:checked + label .checkbox {
    background-color: rgba(249, 83, 134, 1);
}
div.product-filter-clear-all {
    margin: 0 0 10px;
}
div.product-filter-clear-all a {
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
    padding: 3px 10px;
    border-radius: 3px;
    border: solid 1px #575757;
    background-color: #575757;
    color: #FFF;
}
.btnFilterProductsFound {
    display: block;
    margin: 0 0 20px;
}
.btnFilterProductsFound:before {
    content: "×";
    font-family: 'Arial';
    position: absolute;
    right: 6px;
    top: 50%;
    font-weight: normal;
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
    background-color: rgba(0,0,0,1.00);
    color: rgba(255,255,255,1.00);
    padding: 3px 0;
    line-height: 1;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
}




/*! nouislider - 12.1.0 - 10/25/2018 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
  direction: ltr;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
/* Offset direction
 */
html:not([dir="rtl"]) .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  position: absolute;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 4px;
}
.noUi-horizontal .noUi-handle {
  width: 30px;
  height: 24px;
  left: -17px;
  top: -11px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px;
}
html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
  right: -29px;
  left: auto;
}
html:not([dir="rtl"]) .noUi-horizontal .noUi-handle.noUi-handle-upper {
	right: 0;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background:rgba(178,178,178,.30);
  border-radius: 0px;
	margin: 20px 0 15px;
  /*border: 1px solid #D3D3D3;
  /*box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;*/
}
.noUi-connect {
  background:rgba(0,0,0,1.00);
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 10px;
  width: 1px;
  background: #E8E7E6;
  left: 12px;
  top: 6px;
}
.noUi-handle:after {
  left: 15px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%, 0);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border-radius: 3px;
  background:#6C7A00;
  color:rgba(255,255,255,1.00);;
  padding: 2px 4px;
  text-align: center;
  white-space: nowrap;
	font-size: 60%;
}
.noUi-tooltip:after {
	content: "";
	width: 0px;
    height: 0px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #6C7A00;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}


.priceRangeInfo {
    display: flex;
}
.priceRangeInfo > span {
    flex: auto;
    font-size: 70%;
}
.priceRangeInfo > span:last-child {
    text-align: right;
}
.value-slider-wrapper-input {
    display: none;
}


@media (min-width: 900px) {
	
	.listheader {
		background-image: url('/images/skins/Bewise/images/fallbackimage.webp');
	}
	
	.dropdowncontainer {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        padding: 50px 0;
        background-color: #f3f3f3;
        box-shadow: 0 20px 40px rgba(0,0,0,.1);
        justify-content: center;
    }
    .dropdowncontainer > .dropdowninnercontainer {
        flex: none;
        width: 1700px;
        max-width: 90%;
        justify-content: flex-start;
        display: flex;
    }
    .dropdowncontainer > .dropdowninnercontainer > ul:empty {
        display: none;
    }
    .dropdowncontainer > .dropdowninnercontainer > div.title {
        flex: none;
        width: 100%;
        margin: 0 0 20px;
        font-weight: bold;
        font-size: 16px;
        display: none;
    }
    .dropdowncontainer > .dropdowninnercontainer > ul {
        flex: auto;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
    .dropdowncontainer > .dropdowninnercontainer > ul > li {
        flex: none;
        width: 15.6%;
    }
    .dropdowncontainer a {
        text-decoration: none;
        display: block;
        font-size: 13px;
    }
    .dropdowncontainer a:hover {
        text-decoration: underline;
    }
    ul.dropdown + ul.level3ul {
        
    }
    .level3ul {
        display: flex;
        flex-wrap: wrap;
    }
    .level3ul > li:not(:last-child) {
        margin-right: 1%;
        margin-bottom: 2%;
        padding-right: 30px;
        border-right: solid 1px rgba(231,231,231,1.00);
    }
    .level3ul > li > ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
    .level3ul > li > a {
        font-size: 14px;
        margin-bottom: 17px;
    }
    .level3ul > li > a,
	.level3ul > li > a > span.ProductMenu_MenuItemBold {
        font-weight: bold;
    }
    .level3ul > li > ul > li.hidden {
        display: none;
    }
    .level3ul > li > ul > li > ul {
        display: none;
    }
    .dropdowncontainer[class*="col"] > div > ul.dropdown {
        column-gap: 60px;
        column-rule: 1px solid rgba(231,231,231,1.00);
    }
    .dropdowncontainer.col2 > div > ul.dropdown {
        column-count: 2;
    }
    .dropdowncontainer.col3 > div > ul.dropdown {
        column-count: 3;
    }
    .dropdowncontainer.colalfabet > div > ul.dropdown {
        column-count: 5;
    }
    .level3ul > li > ul > li > a {
        background-image: url("/images/skins/Bewise/images/icon-arrow-right-black.svg");
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 8px;
        padding: 1px 0 1px 15px;
    }
    .level3ul > li > ul > li.viewall > a {
        background-image: none;
        text-decoration: underline;
    }
    
    
    .alfabetcolumns {
        display: flex;
        width: 100%;
    }
    .alfabetcolumns > div {
        flex: auto;
    }
    .alfabetcolumns > div div.letter {
        font-size: 14px;
        margin-bottom: 5px;
        text-transform: uppercase;
        font-weight: bold;
    }
    .alfabetcolumns > div > div.letter:not(:first-child) {
        margin-top: 15px;
    }
    .productmenubanner {
        flex: none;
        width: 20%;
        margin-right: 5%;
    }
    .productmenubanner img {
        display: block;
        width: 100%;
    }
	
	
    #ProductMenu_List > li.hover:hover > .dropdowncontainer {
        display: flex;
    }
	
	.checkoutsteps > div.done:before {
        background-size: 15% auto;
    }
    
    footer .columns {
        display: flex;
        justify-content: space-between;
    }
    footer .columns > *:not(:last-child) {
        padding-right: 3%;
    }
    footer .newsletter {
        max-width: 350px;
    }
    
    .asideul, .asideul ul {
        display: block;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    .asideul > li {
        padding: 20px;
        background-color: #FFF;
        box-shadow: 0 0 6px rgb(0 0 0 / 10%);
    }
    .asideul ul {
        display: none;   
    }
    .asideul a:not(#ActiveCategory_A) {
        display: block;
        text-decoration: none;
    }
    .asideul > li > ul > li.viewall ~ li {
        display: none;
    }
    .asideul > li > ul > li.viewall {
        text-decoration: underline;
        margin-top: 5px;
        cursor: pointer;
        color: #6C7A00;
    }
    .asideul > li > ul ul {
        margin: 5px 0;
        padding: 0 0 0 10px;
        border-left: solid 2px rgba(227,227,227,1.00);
    }
    .asideul > li > a {
        margin: 0 0 15px;
        font-size: 20px;
        font-weight: 400;
        position: relative;
    }
    .asideul > li > a:after {
        content: url("/images/skins/Bewise/images/icon-flames.svg");
        right: 0;
        width: 20px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .asideul > li > a > span.ProductMenu_MenuItemBold {
        font-weight: 300;
    }
    .asideul > li > ul a {
        padding: 2px 0;
    }
    .asideul > li > ul a.Activ_ProductMenu {
        color: #6C7A00;
        font-weight: bold;
    }
    .asideul + .productFilter {
        padding-top: 20px;
        margin-top: 20px;
        border-top: solid 1px rgba(217,217,217,1.00);
    }
	
}

@media (max-width: 899px) {
	#checkout-container #column-order-summary {
		width: 100%;
		padding: 20px;
	}
	#checkout-container h2, #checkout-container h3 {
		padding: 0 20px;
	}
	.stickybuybuysection .amount, .stickybuyinfo .stock {
        display: none;
    }
    .stickybuyinfo > a {
        width: 50px;
    }
    .stickybuyinfo > div {
        
    }
    .stickybuyinfo > div > span {
        font-size: 12px;
        
    }
    .buybutton {
        width: 100px;
    }
    .buybutton .button {
        font-size: 12px;
        padding: 8px 10px;
        min-height: auto;
    }
	
	
	.getproductcategory {
        padding: 20px 0;
    }
    .getproductcategory > div > div > img {
        width: 110px;
        top: auto;
        position: relative;
        height: auto;
        margin-bottom: 10px;
        left: auto;
    }
    .getproductcategory > div > div:first-child {
        margin-bottom: 20px;
    }
    .getproductcategory .slick-slide {
        margin: 0;
        box-shadow: none;
    }
    .getproductcategory > div > div > a {
        margin: 10px 0 0 0;
        box-shadow: none;
    }
    .getproductcategory > div > div > *:not(.getproductcategorylogo) {
        width: 100%;
    }
    .getproductcategory:before {
        display: none;
    }
    .getproductcategory > div > div {
        width: 100%;
        flex-wrap: wrap;
    }
    .descriptioncontainer .same-product-container {
        background-color: transparent;
    }
    .expanded-description {
        width: 100%;
        margin-bottom: 20px;
    }
    .extraProduct {
        width: 100%;
    }
	
	.mobilemenuusp {
        padding: 15px 20px;
    }
    .mobilemenuusp > div:not(:last-child) {
        margin-bottom: 10px;
    }
    .mobilemenuusp strong {
        display: block;
        color: #2A3D4C;
    }
    
    .mobilemenucontent {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        text-decoration: none;
        background-color: #6C7A00;
        color: rgba(255,255,255,1.00);
    }
    .mobilemenucontent img {
        height: 10px;
        width: auto;
        margin: 0 0 0 10px;
        display: block;
    }
	
	
    
    .pages a.ActivePageNumber_ProductList:link, .pages a.ActivePageNumber_ProductList:visited, .pages a.ActivePageNumber_ProductList:hover, .pages a.ActivePageNumber_ProductList:active, .pages a.InactivePageNumber_ProductList:link, .pages a.InactivePageNumber_ProductList:visited, .pages a.InactivePageNumber_ProductList:hover, .pages a.InactivePageNumber_ProductList:active, .pager .prev a, .pager .next a {
        padding: 6px 7px;
    }
    
    .pager .prev a, .pager .next a {
        padding-top: 7px;
        padding-bottom: 7px;
    }
    .pager .prev a {
        padding-left: 0;
    }
    .pager .next a {
        padding-right: 0;
    }
	
	
	
	
	.minibasket {
        width: 100%;
        max-width: 100%;
    }
    .minibasket > * {
        flex: none;
    }
    .minibasket > *:not(.linescontainer) {
        padding-left: 20px;
        padding-right: 20px;
    }
    .minibasket > .header {
        font-size: 20px;
        padding-top: 20px;
    }
    .minibasket .bottom {
        padding-bottom: 20px;
    }
    .minibasket .bottom > a {
        padding: 11px 15px;
    }
    .minibasket .bottom > a:first-child {
        margin-bottom: 10px;
    }
    .minibasket .linescontainer {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        flex: auto;
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
        overflow-y: auto;
        box-shadow: none;
    }
    .minibasket .lines {
        padding: 0 20px;
    }
    .minibasket .line {
        flex-direction: row;
        align-items: flex-start
    }
    .minibasket .line > .image {
        width: 20%;
        margin: 0;
    }
    .minibasket .line > .lineinfo {
        flex: auto;
        padding: 0 0 0 10px;
    }
    
    .minibasket .total {
        padding-top: 10px;
        padding-bottom: 20px;
    }
    .minibasket .basket-usp,
    .minibasket .trustpilot-widget,
    .minibasket .pointsinfo {
        display: none;
    }
    .minibasket .linesheader {
        flex-direction: row-reverse;
        justify-content: space-between;
        padding: 20px;
    }
    .basketclosebutton {
        position: relative;
        left: auto;
        top: auto;
    }
	
	#customer-login {
        flex-direction: column;
        padding: 10px;
        text-align: center;
    }
    #customer-login > p strong {
        display: block;
    }
    #customer-login .button {
        width: 100%;
        margin-top: 10px;
    }
    
    .loyaltyinfo > div {
        flex-direction: column;
        text-align: center;
    }
    /*
    .loyaltyinfo .info {
        text-align: center;
    }
    */
    .loyaltyinfo .info strong {
        display: block;
    }
    .loyaltyinfo .button {
        margin-top: 10px;
    }
    
    .loyalty_signup_table>tbody>tr>td:first-child > form:not(:first-of-type) {
        margin-top: 20px;
        padding: 0;
        border: none;
    }
}


.slick-list,.slick-slider,.slick-track{position:relative;display:block}.slick-loading .slick-slide,.slick-loading .slick-track{visibility:hidden}.slick-slider{-moz-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-html-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{top:0;left:0}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block;max-width:100%}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}