@charset "UTF-8";
:root {
    --primary: #264141;
    --ultralight: #faf7f2;
    --light: #f0ebe2;
    --lightblue: #f3fcff;
    --lightgreen: #edf4ec;
    --lightgrey: #747474;
    --dark: #264141;
    --highlight: #ffe2ae;
    --gradient: linear-gradient(128deg, #65c8c6 0%, #2a3f56 100%);
    --discount: #f5c344;
    --yellow: #ffe2ae;
    --lightorange: #fff3e0;
    --accent: #7a2e3a;
    --space: clamp(30px, 5vw, 40px);
    --smallfont: 13px;
    --warning: #c41718;
    --good: #1e9311;
    --mediumgood: #db8600;
    --fullheight: calc(100vh - 164px);
    --padding: 5vh;
    --mainpadding: 40px;
    --container: 1700px;
    --rounded: 10px;
    --boxshadow: 0 5px 5px rgba(0,0,0,.1);
    --buttonfont: 13px;
    --buttonminheight: 43px;
}

body {
	margin:0;
	overflow-x: hidden;
	background-color:rgba(255,255,255,1.00);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    line-height: normal;
}
body.noscroll {
	overflow: hidden;
}
body, input, select, textarea, button, td.VariantGroupLabel {
	font-family: 'Inter', Arial, sans-serif;
	color:rgba(0,0,0,1.00);
	font-size: 12px;
	font-weight: normal;
}
.small-text {
    font-size: 11px;
}
.container {
	width: var(--container);
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.container.large {
    width: 2000px;
}
.container.small {
    width: 1200px;
}
.container.mini {
    width: 700px;
}
.fullheight {
    height: var(--fullheight);
}
.fullwidth {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50vw);
}

.flex {
    display: flex;
    flex-direction: column;
}
.flex > * {
    flex: auto;
}
.flex > img {
    width: 50%;
    align-self: stretch;
    object-fit: cover;
    flex: none;
}
.flex > .padding:first-child {
    padding: var(--padding);
}
.flex > .padding:last-child {
    padding: var(--padding);
}
.flex.flex-row {
    flex-direction: row;
}
.button-row {
    display: flex;
    gap: clamp(9px, 2vw, 20px);
}
.gap {
    gap: 5vw;
}
.gap-down {
    display: flex;
    flex-direction: column;
    gap: 5vw;
}
.middle {
    align-items: center;
}
.spacebetween {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.spacebetween:has(.button) {
    align-items: flex-start;
}
.ultralightbackground {
    background-color: var(--ultralight);
}
.lightbackground {
    background-color: var(--light);
}
.darkbackground {
    background-color: var(--dark);
}
.highlightbackground {
    background-color: var(--highlight);
}
.spacetop {
    margin-top: var(--space);
}
.spacebottom {
    margin-bottom: var(--space);
}
.paddingtop {
    padding-top: var(--space);
}
.paddingbottom {
    padding-bottom: var(--space);
}
.mainpaddingtop {
    padding-top: var(--mainpadding);
}
.mainpaddingbottom {
    padding-bottom: var(--mainpadding);
}
.separator-top {
    margin-top: 5px;
}
.separator-bottom {
    margin-bottom: 5px;
}
.center {
    text-align: center;
    justify-content: center;
}
.justify {
    text-align: justify;
}
a {
	color:#000;
}
a:hover {
	color:rgba(121,121,121,1.00);
}
.text-highlight {
    color: var(--highlight);
}
.darkbackground, .darkbackground a, .darkbackground .button.button-simple {
    color: #fff;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
img {
	border: none;
    display: block;
    max-width: 100%;
    height: auto;
}
video {
	border: none;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}
svg {
    height: auto;
    display: block;
}
input, img, svg {
	outline: none;
}
input[type="checkbox"],
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    margin: 0;
    outline: none;
    cursor: pointer;
    border-radius: 4px;
    background-color: rgba(255,255,255,1.00);
    border: solid 1px rgba(198,198,198,1.00);
    display: block;
    flex: none;
}
input[type="radio"] {
    border-radius: 50%;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked {
    background-color: rgba(0,0,0,1.00);
    border-color: rgba(0,0,0,1.00);
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMi41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hlY2siPjxwb2x5bGluZSBwb2ludHM9IjIwIDYgOSAxNyA0IDEyIj48L3BvbHlsaW5lPjwvc3ZnPg==);
    background-repeat: no-repeat;
    background-size: 12px auto;
    background-position: 50% 50%;
}
input[type="submit"],
input[type="button"],
#confirm-complete-button,
.button,
input.checkout-salesdiscount-code-button {
	border:none;
	color:#fff;
	cursor:pointer;
	background:var(--primary);
	display:inline-flex;
	padding: 0 20px;
	font-size: var(--buttonfont);
	text-decoration:none;
	border-radius: 30px;
	text-align: center;
	justify-content: center;
	align-items: center;
	outline: none;
	min-height: var(--buttonminheight);
	font-weight: bold;
	position: relative;
	transition: ease .4s;
    /*white-space: nowrap;*/
    gap: 7px;
    -webkit-appearance: none;
    appearance: none;
    user-select: none;
}
.button.monitor {
    background-color: var(--warning);
}
.button.light {
    background-color: rgba(255,255,255,1.00);
    border: solid 1px var(--dark);
    color: var(--dark);
}
.button.highlight {
    background-color: var(--yellow);
    color: var(--primary);
}
.button.small {
    font-size: inherit;
    min-height: 30px;
}
.button > svg {
    width: auto;
    height: 22px;
    fill: #fff;
}
.button.small > svg {
    height: 16px;
}
.button.highlight > svg {
    fill: var(--primary);
}
.button:has(svg) {
    padding-left: 8px;
}
.button.small:has(svg) {
    padding-left: 16px;
}
.button-arrow {
    padding-right: 11px;
}
.button.button-arrow:has(svg) {
    gap: 12px;
}
.button.button-arrow:after, .darkbackground .button.button-simple.button-arrow:after {
    content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAyNCAyNCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZT0iI2ZmZiI+CiAgPHBhdGggc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBkPSJNMTMuNSA0LjUgMjEgMTJtMCAwLTcuNSA3LjVNMjEgMTJIMyIgLz4KPC9zdmc+");
    width: 15px;
    height: 15px;
}
.button.highlight.button-arrow:after, .button.button-simple.button-arrow:after, .button.light.button-arrow:after {
    content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAyNCAyNCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZT0iIzI2NDE0MSI+CiAgPHBhdGggc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBkPSJNMTMuNSA0LjUgMjEgMTJtMCAwLTcuNSA3LjVNMjEgMTJIMyIgLz4KPC9zdmc+");
}
.button.button-arrow-down:after {
    content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0iIzI2NDE0MSI+CiAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNNS4yMiA4LjIyYS43NS43NSAwIDAgMSAxLjA2IDBMMTAgMTEuOTRsMy43Mi0zLjcyYS43NS43NSAwIDEgMSAxLjA2IDEuMDZsLTQuMjUgNC4yNWEuNzUuNzUgMCAwIDEtMS4wNiAwTDUuMjIgOS4yOGEuNzUuNzUgMCAwIDEgMC0xLjA2WiIgY2xpcC1ydWxlPSJldmVub2RkIiAvPgo8L3N2Zz4=");
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
}
.button.button-arrow-down.active:after {
    transform: rotate(180deg);
}
.button:has(.button-badge) {
    padding-left: 8px;
}
.button .button-badge {
    border-radius: 25px;
    background-color: var(--accent);
    color: #fff;
    text-transform: uppercase;
    padding: 8px 15px;
    white-space: nowrap;
    display: inline-flex;
    line-height: 1;
    align-self: center;
}
.button.button-simple {
    padding: 0;
    background-color: transparent;
    font-size: inherit;
    min-height: auto;
    color: var(--dark);
}

.highlight-bottom {
    position: relative;
    display: block;
}
.highlight-bottom .button {
    position: absolute;
    bottom: 5vw;
    left: 5vw;
    right: 5vw;
    justify-content: space-between;
}
.highlight-review-row {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.highlight-review-row .badge {
    background-color: #5d7b7a;
}
.highlight-review-row .stars {
    color: var(--discount)
}


.blob-round {
    position: absolute;
    top: 5vw;
    left: 5vw;
    aspect-ratio: 1/1;
    transform: rotate(-5deg);
    background-color: var(--accent);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    box-shadow: -3px 1px 0 rgba(0,0,0,.3);
    border-radius: 50%;
    padding: 12px;
    font-weight: bold;
}
.blob-round small {
    font-size: 12px;
    font-weight: normal;
}

input[type="submit"].justadded {
	background-color: #f0f8ee;
    font-size: 0;
	cursor: default;
    background-image: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIwIiBmaWxsPSIjMzY5NzIwIiBpZD0iZmlfNTI5MTA0MyIgdmlld0JveD0iMCAwIDUyMCA1MjAiIHdpZHRoPSIyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBkYXRhLW5hbWU9IjctQ2hlY2siIGlkPSJfNy1DaGVjayI+PHBhdGggZD0ibTc5LjQyMyAyNDAuNzU1YTQ3LjUyOSA0Ny41MjkgMCAwIDAgLTM2LjczNyA3Ny41MjJsMTIwLjczIDE0Ny44OTRhNDMuMTM2IDQzLjEzNiAwIDAgMCAzNi4wNjYgMTYuMDA5YzE0LjY1NC0uNzg3IDI3Ljg4NC04LjYyNiAzNi4zMTktMjEuNTE1bDI1MC43ODctNDAzLjg5MmMuMDQxLS4wNjcuMDg0LS4xMzQuMTI4LS4yIDIuMzUzLTMuNjEzIDEuNTktMTAuNzczLTMuMjY3LTE1LjI3MWExMy4zMjEgMTMuMzIxIDAgMCAwIC0xOS4zNjIgMS4zNDNxLS4xMzUuMTY2LS4yNzguMzI3bC0yNTIuOTIyIDI4NS43NjRhMTAuOTYxIDEwLjk2MSAwIDAgMSAtMTUuNTg1Ljg0M2wtODMuOTQtNzYuMzg2YTQ3LjMxOSA0Ny4zMTkgMCAwIDAgLTMxLjkzOS0xMi40Mzh6Ij48L3BhdGg+PC9nPjwvc3ZnPg==");
    background-size: auto 40%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
input[type="submit"]:not(.justadded):disabled {
	opacity: .3;
	cursor: not-allowed;
}
input[type="submit"].loading,
input[type="submit"].loading:disabled{
	cursor: progress;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea,
select {
	display: block;
	width: 100%;
	border: 1px solid #ded9d0;
    background-color: var(--ultralight);
	border-radius: var(--rounded);
	height: var(--buttonminheight);
	padding: 0 18px;
	outline: none;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
textarea {
	height: 80px;
	padding: 18px;
}
select {
    padding-right: 30px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAyNCAyNCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZT0iY3VycmVudENvbG9yIiBjbGFzcz0idy02IGgtNiI+PHBhdGggc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBkPSJNMTkuNSA4LjI1bC03LjUgNy41LTcuNS03LjUiIC8+PC9zdmc+");
    background-repeat: no-repeat;
    background-size: 15px auto;
    background-position: calc(100% - 10px) 50%;
	cursor:pointer;
}
.rounded {
    border-radius: var(--rounded);
}
h1, .Heading_Terms, .Heading_Customer, .Heading_Favorites, .Heading_Profile_Wrapper, .h1, .Heading_Order4 {
	margin: 0 0 20px;
	font-size: clamp(21px, 3vw, 30px);
	font-weight: 700;
	display: block;
	flex: none;
	width: 100%;
    text-wrap: balance;
}
.Heading_Profile_Wrapper {
    text-align: left !important;
}
.Heading_Profile_Wrapper + br,
.Heading_Terms_Wrapper + br,
.Heading_Terms + br,
.Heading_B2BLogin_Wrapper + br {
    display: none;
}
h2, .SubCatsProcuctsHeading, .headline, .h2 {
    font-size: clamp(17px, 4.2vw, 22px);
	display: flex;
    font-weight: bold;
	margin: 20px 0 15px;
}
h2:first-child,
.h2:first-child,
.preheader + * {
    margin-top: 0;
}
.preheader {
    text-transform: uppercase;
    /*color: #6d6d6d;*/
    margin-bottom: 4px;
}
.smallheader {
    font-size: 16px;
    font-weight: bold;
}
.mediumheader {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    line-height: normal;
}
.largeheader {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
}
.SubCatsProcuctsHeading {
	margin-top: 40px;
}
.headline {
	font-weight: bold;
    text-align: center;
	display: flex;
	flex-direction: column;
    align-items: center;
	margin-bottom: 20px;
	position: relative;
}
.headline > small {
	font-weight: normal;
	color: #939393;
	font-size: 13px;
}
p:empty {
    display: none;
}
* + p {
    margin-top: 0;
}
p:only-child {
    margin-top: 0;
    margin-bottom: 0;
}
p:first-child {
    margin-top: 0;
}
p:not(:last-child) {
    margin-bottom: 0;
}
.Description_Productinfo p:not(:last-child) {
    margin-bottom: 15px;
}
.topbar {
    background: var(--primary);
	padding: 12px 0;
	display: flex;
	justify-content: center;
    line-height: 1;
    font-size: var(--smallfont);
    top: 0;
    z-index: 30;
    position: static;
    height: 48px;
}
.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar,
.topbar a {
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}
.topbar-trustpilot {
    width: 106px;
    max-width: 26%;
    flex: none;
}
.topbar etrusted-widget {
    flex: none;
    width: 150px;
}
.usp.swiper {
    margin: 0;
    flex: auto;
    min-width: 200px;
    width: 100%;
}
/* Vertikal swipe på mobil: Swiper tilføjer .swiper-vertical – fast højde til én linje */
.usp.swiper.swiper-vertical {
    height: 24px;
}
.usp.swiper .swiper-slide,
.usp.service > *,
.usp.swiper .swiper-slide > a {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-start;
}
.usp.swiper .swiper-slide svg,
.usp.service svg,
.usp.swiper img {
    width: auto;
    height: 18px;
    flex: none;
}
.usp.swiper .swiper-slide span {
    flex: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 15px;
}
.usp.swiper .swiper-slide.google > a {
    gap: 0;
}
.usp.swiper .swiper-slide.google svg {
    height: 15px;
    color: #fbc937;
}
.usp.swiper .swiper-slide.google svg:last-of-type {
    margin-right: 6px;
}
.usp.swiper:not(.swiper-initialized) .swiper-wrapper {
    gap: 0;
    justify-content: flex-start;
}
.usp.swiper:not(.swiper-initialized) .swiper-slide {
    flex: none;
    width: auto;
}

header {
	position: sticky;
    top: 0;
	z-index: 40;
    background-color: #fff;
}
header > div.container {
	display: flex;
	align-items: center;
	padding: 15px 0;
}

header .btn-menu {
    height: 40px;
    width: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border-radius: 3px;
}
header .btn-menu > svg {
    width: 70%;
    height: auto;
}

.breadcrumb-outer {
    padding: 10px 0;
}
[itemtype="https://schema.org/BreadcrumbList"] {
    margin: 0 0 30px;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 11px;
    white-space: nowrap;
    max-width: 100%;
    margin-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
}
[itemtype="https://schema.org/BreadcrumbList"] ~ br {
    display: none;
}
[itemtype="https://schema.org/BreadcrumbList"] a {
    text-decoration: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
[itemtype="https://schema.org/BreadcrumbList"] a.BreadCrumbLink_Active {
    color: var(--primary);
    font-weight: bold;
}

.Heading_ProductMenu {
    display: none;
}

div#CookiePolicy {
    background-color:rgba(0,0,0,.80);
    left: 0;
    top: 0;
    bottom: auto;
    width: 100vw;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
    position: fixed;
    margin: 0;
    border-radius: 0;
    right: auto;
}
.hidecookiedialog div#CookiePolicy {
    display: none;
}
div#CookiePolicy div.CookiePolicyCenterText {
    background-color: rgba(255,255,255,1.00);
    flex: none;
    width: 700px;
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 40px rgba(0,0,0,.7);
    border-radius: var(--rounded);
    color: rgba(0,0,0,1.00);
    margin: 0;
    -webkit-overflow-scrolling:touch;
    overflow-x:hidden;
	overflow-y:auto;
}
div#CookiePolicy h1, div#CookiePolicy h2, div#CookiePolicy h3, div#CookiePolicy h4, div#CookiePolicy h5 {
    color: rgba(0,0,0,1.00);
}
div.CookiePolicyText {
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    max-height: none;
    overflow: visible;
}
input.cookie-policy-button {
    background-color:rgba(0,0,0,1.00) !important;
    color: rgba(255,255,255,1.00);
}
#CookiePolicy label {
    color: #000 !important;
}
div.CookiePolicyText a {
    text-decoration: underline;
}
div.CookiePolicyText > h2, div.CookiePolicyText > p {
    background-color:#f6f6f6;
    font-weight: normal;
}
div.CookiePolicyText > img {
    width: 300px;
    max-width: 50%;
    margin: 20px 25px;
}
div.CookiePolicyText > h2 {
    margin: 0;
    font-weight: normal;
    padding: 25px 25px 15px;
    font-size: 18px;
}
div.CookiePolicyText > p {
    margin: 0;
    padding: 0 25px 25px;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
}
div.CookiePolicyText > * {
    order: 1;
}
div.cookie-policy-accept-buttons-container {
    order: 2;
    margin: 0;
    display: flex;
    justify-content: center;
    padding: 20px 25px 15px;
    flex-direction: column-reverse;
}
div.cookie-policy-accept-buttons-container > input[type="button"] {
    flex: auto;
    margin: 0;
    border-radius: 5px;
    font-weight: normal;
    box-shadow: inset 0px -4px 0px -2px rgba(0, 0, 0, 0);
    padding: 15px 10px;
}
div.cookie-policy-accept-buttons-container > input[type="button"].cookie-policy-accept {
    background-color: #f6f6f6 !important;
    border: none !important;
    color: rgba(0,0,0,1.00) !important;
}
div.cookie-policy-accept-buttons-container > input:not(:last-of-type) {
    margin-right: 0;
    margin-top: 10px;
}
div.cookie-policy-details-link-container {
    order: 3;
    display: flex;
    justify-content: center;
    padding: 0 0 20px;
}
div.cookie-policy-details-link-container > a {
    flex: none;
    color: rgba(0,0,0,1.00);
}
div.cookie-policy-details-container {
    order: 4;
    display: none;
}
div.cookie-policy-details-container div.rtable-cell {
    font-size: 65%;
}
div.cookie-policy-consents-container {
    order: 5;
    display: flex;
    border-top: solid 1px #d4d4d4;
    background-color:#f6f6f6;
    margin: 0;
    flex-wrap: wrap;
}
div.cookie-policy-consents-container > div {
    flex: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 15px 20px;
}
div.cookie-policy-consents-container > div input {
    display: none;
}
div.cookie-policy-consents-container > div:not(:last-child) {
    border-right: solid 1px #d4d4d4;
}
div.cookie-policy-consents-container label {
    font-weight: normal;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
div.cookie-policy-consents-container label div {
    border-radius: 25px;
    width: 53px;
    margin: 7px 0 0;
    background-color: #ababab;
    padding: 4px;
    display: flex;
    justify-content: flex-start;
    cursor: pointer;
}
div.cookie-policy-consents-container input:checked + label div {
    justify-content: flex-end;
    background-color:#455852;
}
div.cookie-policy-consents-container input:checked:disabled + label div {
    opacity: 0.7;
    cursor: default;
}
div.cookie-policy-consents-container label div > span {
    border-radius: 50%;
    background-color: rgba(255,255,255,1.00);
    width: 20px;
    height: 20px;
}
.rtable {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 0;
    padding: 0;
}
.rtable--4cols>.rtable-cell {
    width: 25%;
}
.rtable-header-cell {
    background-color: rgba(0,0,0,0.05);
    font-weight: bold;
}
.rtable-cell {
    box-sizing: border-box;
    flex-grow: 1;
    width: 100%;
    padding: 0.8em 1.2em;
    overflow: hidden;
    list-style: none;
    border-bottom: 1px solid #ececec;
    font-size: 0.85em;
}

.cookieSettingsButton {
    position: fixed;
    background-color:rgba(0,0,0,1.00);
    border-radius: 50%;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
}
.cookieSettingsButton img {
    flex: none;
    width: 57%;
    height: auto;
}
.cookieSettingsButton:hover {
    opacity: .7;
}
.GDPR_Terms:not(:empty),
.CookieConsent_Terms:not(:empty) {
    border-top: solid 1px rgba(214,214,214,1.00);
    padding-top: 40px;
    margin-top: 40px;
}

.payment-methods {
    gap: 4px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.payment-methods img {
    height: 32px;
    width: auto;
    background-color: #ffffff;
    border-radius: 3px;
    padding: 7px 8px;
    flex: none;
}
.payment-methods.paddingtop {
    border-top: solid 1px #f4f4f1;
}

.formmail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.highlight-box {
    padding: 5vw 0;
}

.highlight-box p {
    margin-bottom: 20px;
}
.highlight-right {
    position: relative;
}

[data-slideshow]:empty {
    max-width: 100%;
    aspect-ratio: 430/532;
}
[data-slideshow] .swiper:not(.swiper-initialized) .swiper-wrapper > :nth-child(n+2) {
    display: none;
}
[data-slideshow] img,
[data-slideshow] video {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
    display: block;
}
[data-slideshow].fullheight img,
[data-slideshow].fullheight video {
    height: var(--fullheight);
}
[data-slideshow].maxheight img,
[data-slideshow].maxheight video {
    height: calc(100vh - 400px);

}
[data-slideshow] video {
    pointer-events: none;
}
[data-slideshow].big img {
    animation: scale-image 20s infinite;
}
[data-slideshow] .swiper-slide {
    display: flex;
    overflow: hidden;
}
[data-slideshow] .swiper-slide:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
    content: "";
    opacity: 0.5;
}
[data-slideshow] a {
    text-decoration: none;
}
[data-slideshow] .slidecontent {
    position: absolute;
    left: 50%;
    transform: translate(-45%, 0);
    max-width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    z-index: 2;
    opacity: 0;
    transition: all 0.5s ease;
    bottom: 12vw;
}
[data-slideshow] .slideshowheader {
    font-size: clamp(35px, 4vw, 50px);
    font-weight: 700;
    color: rgba(255,255,255,1.00);
    transition: all 1s ease;
    max-width: 900px;
    text-transform: uppercase;
    line-height: 2.3rem;
}
[data-slideshow] .slideshowbody {
    font-size: clamp(14px, 1.5vw, 30px);
    font-weight: normal;
    color: rgba(255,255,255,1.00);
    transition: all 1s ease;
    max-width: 900px;
    /*text-shadow: 1px 1px 0 rgba(0,0,0,.3);*/
    line-height: 2.5rem;
    line-height: 1.4rem;
    font-size: inherit;
}
[data-slideshow] .slideshowfooter {
    font-size: clamp(15px, 1.5vw, 23px);
    font-weight: normal;
    padding: 10px 40px;
    min-height: 10px;
    background-color: rgba(255,255,255,1.00);
    display: flex;
    gap: 15px;
    align-items: center;
    color: rgba(0,0,0,1.00);
    text-transform: uppercase;
}
[data-slideshow] .slideshowfooter svg {
    height: 20px;
    width: auto;
}
[data-slideshow] .swiper-slide-active .slidecontent {
    opacity: 1;
    transform: translate(-50%, 0);
    transition-delay: 0.3s;
}

[data-slideshow].center .slidecontent {
    bottom: 50%;
    left: 50%;
    transform: translate(-50%,50%);
    align-items: center;
}


header > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
    flex-wrap: wrap;
}
header .shortcuts {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
header .shortcuts > * {
    display: flex;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}
header .shortcuts > * > i {
    height: 40px;
    width: auto;
    aspect-ratio: 1/1;
    background-color: var(--light);
    border-radius: 50%;
    padding: 11px;
    font-style: normal;
}
header .shortcuts > * > i svg {
    width: 100%;
    height: auto;
    display: block;
}
header .shortcuts > * > span {
    flex-direction: column;
    align-items: flex-start;
    display: none;
}
header .shortcuts small:empty[data-text]:not([data-text=""]):before {
    content: attr(data-text);
}
header .shortcuts small {
    color: var(--dark);
}
header .shortcuts .count {
    position: absolute;
    top: -5px;
    right: -1px;
    height: 17px;
    width: auto;
    aspect-ratio: 1/1;
    text-align: center;
    background-color: var(--accent);
    border-radius: 25px;
    color:rgb(255, 255, 255);
    line-height: 1;
    font-weight: bold;
    font-size: 10px;
    align-items: center;
    justify-content: center;
    display: flex;
}
header .shortcuts .count:empty {
    display: none;
}


header .basket {
    position: relative;
}
.shoplogo {
    width: 180px;
    max-width: 35%;
    display: block;
}
.shoplogo > * {
    width: 100%;
    height: auto;
}

header .container > .search-form {
    position: relative;
    order: 2;
    flex: none;
    width: 100%;
    max-width: 100%;
    margin: 15px 0 0;
}
header .search-form input[type="text"] {
    border-radius: 30px;
    transition: all 0.3s ease;
}
header .search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translate(0,-50%);
    z-index: 2;
    height: calc(100% - 8px);
    width: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--primary);
    color: #fff;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .search-form button svg {
    width: 56%;
    display: block;
}
header .search-form input[type="text"]:focus {
    background-color: rgba(255,255,255,1.00);
    background-position: -100px 50%;
    padding-left: 25px;
}

.minibasketcontainer {
    display: none;
}
.minibasketpayment .payment {
    display: flex;
    justify-content: center;
}
.minibasketpayment .payment img {
    border: 1px solid #eee;
}

.minibasketcontainer {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(200%);
    background-color: rgba(0, 0, 0, .0);
    transition: background .5s ease;
    z-index: 9999;
    color: rgba(0, 0, 0, 1.00);
}
.minibasketcontainer.active {
    transform: translateX(0);
    background-color: rgba(0, 0, 0, .5);
}
.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);
    transition: all .5s ease;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
    width: 600px;
    max-width: 100%;
}
.minibasket > * {
    flex: none;
}
.minibasket > .linescontainer {
    flex: auto;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
}
.minibasketpayment {
    padding: 0 0 30px;
    display: none;
}
.minibasketcontainer.active .minibasket {
    transform: translateX(0);
}
.minibasket > *:not(.linescontainer) {
    padding-left: 20px;
    padding-right: 20px;
}
.minibasket > .header {
    display: flex;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}
.minibasket .closeminibasket {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    /*
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00);
    font-family: 'Arial';
    font-size: 25px;
    cursor: pointer;
    line-height: 1;
    user-select: none;
    */
    position: static;
    right: auto;
    top: auto;
    width: 40px;
    height: 40px;
    transform: none;
    font-size: 18px;
}
.minibasket .linesheader {
    font-size: 15px;
    flex: none;
    display: none;
    align-items: flex-end;
    position: relative;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 20px;
}
.lineinfo small {
    display: none !important;
}
/*
.basketclosebutton {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Arial';
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    background-color: #000;
    color: #FFF;
    padding: 8px 10px;
}
*/
.minibasket .lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    padding: 0 20px 20px;
}
.minibasket .line {
    flex: none;
    width: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, 1.00);
    padding: 10px;
    position: relative;
    border: 1px solid #eee;
    border-radius: 4px;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.minibasket .line .lineinfo {
    flex: auto;
}
.minibasket .lineincdec {
    flex: none;
    display: flex;
    justify-content: flex-end;
    width: auto;
}
.minibasket .line .name {
    margin-bottom: 3px;
    text-decoration: none;
}
.minibasket .line .pricerow {
    display: flex;
    gap: 5px;
    line-height: normal;
}
.minibasket .line .price {
    font-weight: bold;
    display: flex;
    align-items: center;
}
.minibasket .line .price > span {
    display: none;
}
.minibasket .line .deletebutton {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 25;
    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;
    user-select: none;
    color: rgba(255, 255, 255, 1.00);
}
.minibasket .line .deletebutton svg {
    display: block;
    fill: #FFF;
    width: 12px;
    height: auto;
    margin: 0;
    cursor: pointer;
}
.minibasket .line > .image {
    position: relative;
    flex: none;
    width: 80px;
    max-width: 20%;
    margin: 0;
}
.minibasket .line > .image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.minibasket .line > a.name {
    text-decoration: none;
    color: rgba(0, 0, 0, 1.00);
    font-weight: bold;
}
.minibasket .line .variantinfo {
    font-size: 11px;
    color: rgba(128, 128, 128, 1.00);
    line-height: normal;
    padding-bottom: 5px;
}
.minibasket .line > .price {
    display: flex;
    flex-direction: column;
    line-height: normal;
    font-weight: bold;
}
.minibasket .line .price small, .minibasket .line > small {
    font-weight: normal;
    display: block;
}
.minibasket .line .incdec {
    gap: 4px;
}
.minibasket .line .giftwrap label {
    display: none;
    align-items: center;
    margin: 0 0 7px;
    cursor: pointer;
}
.minibasket .line .giftwrap label input {
    flex: none;
    margin: 0 7px 0 0;
}

.minibasket .line.configparent {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-bottom: 20px;
}
.minibasket .line.configchild {
    margin-top: -10px;
    border: none;
    background-color: rgba(244, 244, 244, 1.00);
    padding: 8px 15px 8px 26px;
    border-radius: 0;
    border-bottom: 1px solid #eee;
}
.minibasket .line.configchild .price {
    font-weight: normal;
}
.minibasket .line.configchild .lineinfo {
    padding: 0;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}
.minibasket .line.configparent + .configchild {
    padding-top: 20px;
}

.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;
    background-color: #f2f2f2;
    gap: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.minibasket .shippingline .shippingfee {
    white-space: nowrap
}
.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: #9e6a5a;
}
.minibasket .pointsinfo {
    border-left: none;
    border-right: none;
}
.minibasket .total {
    font-weight: bold;
    font-size: 20px;
    padding-top: 12px;
    padding-bottom: 13px;
}
.minibasket .sparxpress {
    margin-bottom: 20px;
}
.minibasket .bottom,
.minibasket [data-yesoffers] {
    padding-bottom: 30px;
}
.minibasket .bottom > a {
    padding: 15px 20px;
    width: 100%;
}
.minibasket .basketButtons {
    display: flex;
    margin-bottom: 20px;
    margin: 0;
    gap: 10px;
}
.minibasket .basketButtons > * {
    flex: auto;
    
}
.minibasket .bottom .payment-methods {
    justify-content: center;
}
.minibasketheader {
    font-weight: bold;
    margin: 0 0 8px;
    font-size: 15px;
}
.minibasket .incdec {
    display: flex;
}
.minibasket .incdec a {
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    font-family: 'Arial';
    line-height: 1;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: solid 1px rgba(237, 237, 237, 1.00);
    border-radius: 50%;
    background-color: #f9f9f9;
}
.minibasket .incdec span {
    display: flex;
    padding: 0 10px;
    align-items: center;
}

header .trustpilot-widget {
    width: 225px;
}

.Productmenu_Category_Icon_Container {
    display: none;
}

.siblings {
    display: flex;
    align-items: center;
    gap: 10px;
}
.siblings > a {
    display: flex;
    align-items: center;
    background-color: rgba(255,255,255,1.00);
    padding: 4px 10px;
    border-radius: 3px;
    text-decoration: none;
    border: solid 1px rgba(177,177,177,.30);
}
#ActiveCategory_A {
    display: none !important;
}

.categorydescription {
    background-color: #fff;
    box-shadow: var(--boxshadow);
    padding: var(--padding);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.categorydescription:empty {
    display: none;
}
.categorydescription.collapsed .categorydescription-inner {
    height: 150px;
    overflow: hidden;
}
.categorydescription > .button {
    align-self: flex-start;
}


.productlistheader {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--ultralight);
    padding: 4vw 0;
    border-bottom: solid 1px #ded9d0;
    margin-bottom: var(--space);
}
.productlistheader h1 {
    margin: 0;
}

.subcatsslider {
    display: flex;
}
.subcatsslider > * {
    text-decoration: none;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: solid 1px rgba(227,227,227,1.00);
    white-space: nowrap;
    scroll-snap-align: start;
    height: 40px;
    border-radius: var(--rounded);
}
.subcatsslider > *:has(img) {
    justify-content: flex-start;
    padding: 0;
    height: auto;
    border-radius: 100px;
    text-align: left;
    flex:none;
    background-color: var(--ultralight);
}
.subcatsslider span {
    flex: auto;
    padding-left: 13px;
    padding-right: 17px;
    font-size: 13px;
    font-weight: bold
}
.subcatsslider img {
    height: 55px;
    width: auto;
    aspect-ratio: 1/1;
    border-radius: 100px;
    flex: none;
    border: solid 3px rgba(255,255,255,1.00);
    outline: solid 1px rgba(227,227,227,1.00);
}

.labels {
    position: absolute;
    padding: clamp(10px, 2.2vw, 20px);
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    pointer-events: none;
}
.labels:empty {
    display: none;
}
.badges {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    gap: 10px;
    display: flex;
}
.offer,
.new,
.tag,
.badge {
    padding: 4px 10px;
    color: #FFF;
    z-index: 1;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: var(--accent);
    text-transform: uppercase;
    align-self: center;
    white-space: nowrap;
    border-radius: 3px;
    font-size: 11px;
}
.new {
    background-color: #2d6e4e; 
}
.offer {
    background-color: var(--accent);
}
.tag {
    background-color: rgba(0,0,0,1.00);
}
[data-favorite] {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: auto;
    aspect-ratio: 1/1;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0,0,0,.1);
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}
[data-favorite] svg {
    width: 54%;
}
[data-favorite].active {
    background-color: var(--accent);
    color: #fff;
}
.variants-buttons {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 7px 0;
}
.variants-colors {
    display: flex;
    align-items: center;
    gap: 4px;
}
.variants-colors .variant-color {
    width: 22px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    font-size: 0;
    outline: solid 1px #d4d4d4;
    border: solid 2px #fff;
}
.variants-colors[data-text]:after {
    content: attr(data-text);
    align-self: stretch;
    width: auto;
    aspect-ratio: 1/1;
    background-color: #f5f6f8;
    border: dashed 1px #8891a4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 9px;
}
.variants-miscs {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}
.variants-miscs .variant-misc {
    font-size: 11px;
    border: solid 1px #ccc;
    border-radius: 3px;
    padding: 2px 5px;
    font-size: 10px;
}


.ProductList_Custom_DIV,
div.bp_lsaFullScreen .bp_lsaProductsList {
    display: grid;
    /* --col-min = ønsket minimumsbredde pr. produkt (skru her for større/mindre kort) */
    --col-min: 240px;
    --col-gap: clamp(14px, 1.6vw, 25px);
    /* min() sikrer at kolonnen aldrig kræver mere end halvdelen af rækken => altid mindst 2 pr. række på mobil */
    grid-template-columns: repeat(auto-fill, minmax(min(calc(50% - var(--col-gap) / 2), var(--col-min)), 1fr));
    gap: var(--col-gap);
}
.ProductList_Custom_DIV.loading {
    opacity: 0.3;
    pointer-events: none;
}
.product {
    display: flex;
    flex-direction: column;
    position: relative;
    /*box-shadow: 0 1px 2px rgba(0,0,0,.1);*/
    overflow: hidden;
}
form .product {
    height: 100%;
}
.product > * {
    flex: none;
}
.product .image {
    overflow: hidden;
    display: flex;
    position: relative;
    border-radius: var(--rounded) var(--rounded) 0 0;
    background-color: rgba(255,255,255,1.00);
}
.product .image img {
    flex: none;
    aspect-ratio: 1/1;
    object-fit: contain;
    transition: all 0.2s ease;
    width: 100%;
}
.product .info {
    flex: auto;
    display: flex;
    flex-direction: column;
    padding: clamp(10px, 2.2vw, 20px);
    gap: 8px;
    border: solid 1px #e0d9cc;
    border-top: none;
    border-radius: 0 0 var(--rounded) var(--rounded);
    background-color: rgba(255,255,255,1.00);
}
.product .info > * {
    flex: none;
}
.product .info > .info-top {
    flex: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.product .info .manufacturer {
    text-decoration: none;
    color: var(--lightgrey);
    text-transform: uppercase;
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
}
.product .info .name {
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
}
.product .Prices_Custom_UL {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
    line-height: normal;
}
.product .Prices_Custom_UL > li {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 4px;
}
.product .Prices_Custom_UL > li:nth-child(n+2) {
    display: none;
}
.product .price .unitprice  {
    font-size: 14px;
    font-weight: bold;
}
.product .price del {
    color: var(--lightgrey);
}
.product .buy {
     display: flex;
}
.product .buy > * {
    flex: auto;
    min-height: 35px;
    font-size: inherit;
}
.product .buy input[type="number"] {
    display: none;
}

form[action*="/shop/basket.asp"] {
    height: 100%;
}


.stock {
    border-radius: 5px;
    background-color: var(--lightgreen);
    padding: 7px 9px;
    color: var(--good);
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    justify-content: flex-start;
}
.stock.lowstock {
    background-color: var(--lightorange);
    color: var(--mediumgood);
}
.stock.notinstock {
    background-color: var(--warning);
    color: #fff;
}
.stock:before {
    content: "";
    width: 8px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--good);
    flex: none;
}
.stock.lowstock:before {
    background-color: var(--mediumgood);
}
.stock.notinstock:before {
    background-color: var(--warning);
}

.product-bundle {
    border-radius: var(--rounded);
    border: solid 2px var(--light);
    padding: clamp(15px, 2.2vw, 25px) clamp(10px, 2.2vw, 20px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.product-bundle:before {
    content: attr(data-badge);
    border-radius: 30px;
    background-color: var(--accent);
    color: #fff;
    padding: 3px 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    text-transform: uppercase;
    font-size: 11px;
}
.product-bundle .images {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 15px;
}
.product-bundle .images > * {
    flex: none;
    width: 29%;
    max-width: 80px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: solid 3px #fff;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.product-bundle .images > :nth-child(n+2) {
     margin-left: -15px;
}
.product-bundle .images > :nth-child(n+5) {
    display: none;
}
.product-bundle .images img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.product-bundle .name {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    font-weight: bold;
    gap: 5px;
    font-size: 14px;
    margin-bottom: 20px;
}
.product-bundle .name .small-text {
    color: var(--lightgrey);
    font-weight: normal;
}
.product-bundle .price {
    margin-bottom: 20px;
}
.product-bundle .price del {
    color: var(--lightgrey);
}
.product-bundle .price .unitprice {
    color: var(--dark);
    font-size: 15px;
    font-weight: bold;
}
.product-bundle .button {
    min-width: 150px;
}
.product-bundle .badge {
    
    margin-top: 7px;
}

.swiper:has(.product-bundle) .swiper-wrapper {
    padding-top: 7px;
}


#Content_Productlist {
    flex: auto;
    min-width: 10px;
}



[data-favorites] {
    display: flex;
    align-items: center;
    cursor: pointer;
}
[data-favorites] svg {
    width: 20px;
    height: auto;
    margin: 0 5px 0 0;
}
[data-favorites].added svg {
    color: var(--highlight);
}

.label {
    position: absolute;
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--primary);
    color: rgba(255,255,255,1.00);
    
    line-height: 1;
    white-space: nowrap;
    margin-top: -16px;
    margin: 0;
    top: 0;
    padding: 6px 12px;
}
.label svg {
    width: 15px;
    height: auto;
}
.product .label {
    top: 10px;
    margin: 0;
    font-size: 12px;
    padding: 6px 8px;
    gap: 4px;
}
.product .label svg {
    width: 10px;
}
.productcard .labels > * {
    font-size: 17px;
    padding: 5px 10px;
}
.productcard > .cardleft {
    position: relative;
}
.productcard > .cardright {
    padding: 5vw;
}
.productcard .swiper.images {
    position: relative;
}
.productcard .swiper.images img {
    width: 100%;
    object-fit: contain;
    aspect-ratio: 1/1;
    max-height: calc(100vh - 165px);
    background-color: #fff;
    user-select: none;
    border-radius: var(--rounded);
}
.productcard .swiper.images .swiper-pagination {
    justify-content: flex-end;
    display: flex;
    position: absolute;
    bottom: 0;
    padding: 0 6vw 6vw;
}
.productcard .swiper.images .swiper-page, .zoom-button {
    position: absolute;
    bottom: var(--space);
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 1px 1px 1px rgba(0,0,0,.1);
    padding: 7px 15px;
    z-index: 3;
    pointer-events: none;
    align-items: center;
    gap: 5px;
    display: flex;
}
.productcard .swiper.images .swiper-page {
    right: var(--space);
}
.productcard .swiper.images .zoom-button {
    left: var(--space);
}
.productcard .swiper.images .zoom-button svg {
    height: 12px;
    width: auto;
    flex: none;
}

.productcard .swiper.images .swiper-slide {
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.productcard .swiper.images .swiper-slide .swiperslideinner {
    position: relative
}
.productcard .swiper.images .swiper-slide svg {
    position: absolute;
    z-index: 2;
    width: 10%;
    min-width: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: auto;
    aspect-ratio: 1/1;
    background-color: var(--primary);
    color: rgba(255,255,255,1.00);
    border-radius: 50%;
    padding: 2%;
    box-shadow: 0 0 80px rgba(0,0,0,.8);
}
.productcard .images-navigator {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    padding-top: 4vw;
}
.productcard .images-navigator > * {
    flex: none;
    overflow: hidden;
    border-radius: 7px;
    position: relative;
    cursor: pointer;
}
.productcard .images-navigator img {
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
}
.productcard .swiper.images img[src*="youtu"] {
    object-fit: cover;
}
.cardleft [href*="youtu"]:before,
.cardleft [data-href*="youtu"]:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-repeat: no-repeat;
    background-size: clamp(20px, 30%, 90px) auto;
    background-position: 50% 50%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iI2ZmZiI+CiAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNNC41IDUuNjUzYzAtMS40MjcgMS41MjktMi4zMyAyLjc3OS0xLjY0M2wxMS41NCA2LjM0N2MxLjI5NS43MTIgMS4yOTUgMi41NzMgMCAzLjI4Nkw3LjI4IDE5Ljk5Yy0xLjI1LjY4Ny0yLjc3OS0uMjE3LTIuNzc5LTEuNjQzVjUuNjUzWiIgY2xpcC1ydWxlPSJldmVub2RkIiAvPgo8L3N2Zz4=");
}
.productcard .cardrighttop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0 0 15px;
}
.productcard .manufacturer {
    font-weight: bold;
    color: var(--dark);
    text-decoration: none;
    margin: 0 0 10px;
}
.productcard .cardrighttop .productnumber {
    font-size: 13px;
    color: rgba(119,119,119,1.00);
    white-space: nowrap;
}
.webshop-productinfo [itemtype="https://schema.org/BreadcrumbList"] {
    justify-content: flex-start;
    margin: 0;
}
.cardright .shippingCountdown {
    margin-bottom: 20px;
}
.cardright .trustpilot-widget {
    padding: 15px;
    background-color: rgba(247,247,247,1.00);
    border-radius: 3px;
    /*border: solid 1px rgba(238,238,238,1.00);*/
}
.productcard .backordermessage {
    padding: 20px;
    background-color: rgba(244,244,226,1.00);
    border: dashed 1px rgba(237,235,199,1.00);
}
.productcard .pointDetails {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin: -15px 0 30px;
}
.productcard .pointDetails svg {
    width: 15px;
    height: auto;
    margin: 0 4px 0 0;
}
.productcard .pointDetails .productPoints {
    font-weight: bold;
    color: var(--discount);
}
.productcard h1 small {
    display: block;
    font-weight: normal;
    font-size: 14px;
}
.productcard .description {
    margin-bottom: 40px;
}
.productcard .description:empty {
    display: none;
}
.Description_Productinfo {
    line-height: 1.4rem;
}
.Description_Productinfo > br:first-child,
.Description_Productinfo > br:last-child {
    display: none;
}
.Description_Productinfo p:first-child {
    margin-top: 0;
}
.Description_Productinfo p:only-of-type {
    margin: 0;
}

.Variants {
    display: none;
}


.productcard h1 {
    margin: 0 0 5px;
}
.productcard .pricerow {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0 20px;
}
.productcard .Prices_Custom_UL {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.productcard .Prices_Custom_UL .free-shipping-badge {
    transform: translateY(3px);
}
.productcard .Prices_Custom_UL > li {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}
.productcard .Prices_Custom_UL > li:first-child .unitpricerow {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.productcard .Prices_Custom_UL > li:first-child .unitprice {
    font-weight: bold;
    font-size: 18px;
}
.productcard .Prices_Custom_UL > li:first-child del {
    color: rgba(115,115,115,1.00);
}
.productcard .Prices_Custom_UL > li:first-child del span {
    text-decoration: line-through;
}
.productcard .Prices_Custom_UL > li:nth-child(n+2) {
    padding: 10px 20px;
    border-radius: 3px;
    border: solid 1px rgba(240,240,240,1.00);
    cursor: pointer;
    user-select: none;
}
.productcard .Prices_Custom_UL > li:nth-child(n+2):hover {
    background-color: rgba(244,244,244,1.00);
}

.productcard [id*="bp_countdown_"] {
    position: absolute;
    bottom: calc(100% + 0px);
    z-index: 5;
    left: 50%;
    height: auto;
    border-radius: 25px;
    background-color: var(--primary);
    padding: 5px 13px;
    transform: translateX(-50%);
    white-space: nowrap;
}
.productcard [id*="bp_countdown_"]:empty {
    display: none;
}
.productcard [id*="bp_countdown_"]:after {
    width: 8px;
    height: 8px;
    background-color: inherit;
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}
.productcard [id*="bp_countdown_"] .bp_countdown_message_banner {
    margin: 0;
}
.productcard [id*="bp_countdown_"] .bp_countdown_message_banner .bp_countdown_product_dispatch_shared_unit_span {
    margin: 0;
}
.productcard [id*="bp_countdown_"] .bp_countdown_message_banner .bp_countdown_product_shared_span {
    padding: 0 3px;
}
.productcard [id*="bp_countdown_"] .bp_countdown_message_banner .bp_countdown_product_shared_div {
    margin: 0;
}
.productcard[id*="bp_countdown_"] .bp_countdown_message_banner .bp_countdown_product_seconds_span {
    font-feature-settings: 'tnum';
}
.productcard [id*="bp_countdown_"] .bp_countdown_message_banner * {
    font-size: 13px;
    color: rgba(0,0,0,1.00);
    display: flex;
}

#BUYSECTION {
    display: flex;
    gap: 15px;
    flex-direction: column;
    position: relative;
    margin-bottom: 20px;
}
.submitcontainer {
    flex: auto;
    position: relative;
    display: flex;
}

.submitcontainer [type="submit"] {
    flex: auto;
    display: flex;
    gap: 10px;
}
.submitcontainer [type="submit"]:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}
.submitcontainer [type="submit"].adding svg {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.amountcontainer {
    display: flex;
    border: 1px solid var(--light);
    border-radius: 50px;
    background-color: #fff;
    overflow: hidden;
}
.amountcontainer input[type="number"] {
    border: none;
    height: 100%;
    padding: 0;
    text-align: center;
    line-height: 1;
    flex: auto;
    background-color: transparent;
    border: none;
    border-left: solid 1px var(--light);
    border-right: solid 1px var(--light);
    border-radius: 0;
}
.amountcontainer input[type="number"]::-webkit-inner-spin-button,
.amountcontainer input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.amountcontainer span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    aspect-ratio: 90/70;
    cursor: pointer;
    user-select: none;
    flex: none;
    
}
.amountcontainer span:hover {
    background-color:#f5f5f5;
}
#BUYSECTION .amountcontainer input[type="number"], #BUYSECTION .amountcontainer span {
    font-size: 16px;
    font-weight: bold;
}

.add-on-products-header-container {
    display: flex;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 13px;
}
.add-on-products-sub-header:empty {
    display: none;
}
.add-on-products-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    gap: 10px;
}
.add-on-product-row {
    position: relative;
    display: flex;
    background-color: #fff;
    border-radius: var(--rounded);
    border: solid 1px var(--light);
    padding: 5px 0;
}
.add-on-product-row.selected {
    border-color: var(--dark);
}
/*
.add-on-product-row.selected:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--rounded);
    pointer-events: none;
    border: solid 1px var(--light)
}
    */

.add-on-products-container:not(.showall) .add-on-product-row:nth-of-type(n+6) {
    display: none;
}
.add-on-product-column.add-on-product-checkbox {
    order: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    position: relative;
}
.add-on-product-column.add-on-product-checkbox input[type="checkbox"] {
    
}
.add-on-product-image {
    order: 1;
    flex: none;
    width: 70px;
    max-width: 12vw;
    margin: 0 clamp(10px, 3vw, 20px) 0 0;
    display: flex;
    align-items: center;
}
.add-on-product-image a {
    display: block;
    position: relative;
}
.add-on-product-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    background-color: rgba(255,255,255,1.00);
}
.add-on-product-name {
    flex: auto;
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.add-on-product-price {
    font-weight: 700;
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
    justify-content: flex-end;
}
.add-on-product-price strike {
    font-weight: normal;
    color: rgba(115,115,115,1.00);
}
.add-on-product-amount {
    order: 3;
    align-self: center;
    padding: 0 15px;
}
.add-on-product-amount input[type="number"] {
    width: 40px;
    height: 36px;
    padding: 0;
    text-align: center;
}
.add-on-product-amount input[type="number"]::-webkit-inner-spin-button,
.add-on-product-amount input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.moreinfo {
    background-color: var(--lightblue);
}
.moreinfo img {
    object-fit: contain;
    max-height: 50dvh;
    -webkit-mix-blend-mode: multiply;
    mix-blend-mode: multiply;
}
.productinfo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.productinfo .productdetails:empty {
    display: none;
}
.productinfo .doclink {
    display: flex;
    align-items: center;
    gap: 10px;
}
.productinfo .doclink svg {
    width: 18px;
    height: auto;
    display: block;
}
#productdescription > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.card-payment-usp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}
.card-payment-usp svg {
    height: 17px;
    width: auto;
    color: var(--dark);
}

.productcard .payment-methods {
    justify-content: center;
    margin-bottom: 20px;
}

.card-usp-boxes {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.card-usp-boxes > * {
    border: solid 1px var(--light);
    border-radius: 40px;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: #f9f7f2;
}
.card-usp-boxes svg {
    height: 20px;
}
.card-usp-boxes .social-proof-bought:not(.active) {
    display: none;
}
.card-usp-boxes .social-proof-bought svg, .card-usp-boxes strong {
    color: var(--dark);
}
.card-usp-boxes .card-usp-pickup svg {
    color: var(--accent)
}

.product-description {
    border-radius: var(--rounded);
    border: solid 1px #a49c8f;
    padding: 5vw;
    background-color: #f5f2ec;
    width: 1060px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.product-description .h2 {
    color: var(--dark);
}



.custom-variants {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.custom-variants .loading-variants {
    aspect-ratio: 494 / 261;
}
.custom-variants:empty {
    display: none;
}
.variantgroup-container {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}
.custom-variants-group-title {
    padding: 0 0 10px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: baseline;
}
.custom-variants-group-title .title-value {
    font-weight: bold;
    color: var(--dark);
}
.custom-variants-group-title .sizeguide-button {
    color: var(--dark);
    text-decoration: underline;
    cursor: pointer;
}
.colors .variant-button {
    background-color: #fff;
    border-radius: 6px;
    padding: 1px;
    position: relative;
    width: 80px;
    flex: none;
    border: solid 2px var(--light);
    max-width: 14vw;
    cursor: pointer;
    user-select: none;
}
.sizes .variant-button {
    background-color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    position: relative;
    flex: none;
    border: solid 1px var(--light);
    cursor: pointer;
    user-select: none;
    min-width: 60px;
    text-align: center;
}
.variant-button.selected {
    border-color: var(--dark);
}
.sizes .variant-button.selected {
    background-color: var(--dark);
    color: #fff;
}
.variant-button.unavailable:before {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,-50%);
    background-color: var(--accent);
    color: #fff;
    font-size: 7px;
    text-transform: uppercase;
    padding: 2px 4px;
    font-weight: bold;
    border-radius: 20px;
}
.variant-button.unavailable:after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 100'%3E%3Cline x1='0' y1='100' x2='100' y2='0' stroke='%23b0b0b0' stroke-width='1.5' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
    background-size: calc(100% - 15px) calc(100% - 15px);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    pointer-events: none;
}

.variant-button img,
.variant-button .variant-color {
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1/1;
    display: block;
}
.variant-label {
    display: none;
}
.faq:not(.active) {
    display: none;
}
.faq .container {
    display: flex;
    max-width: 100%;
    flex-direction: column;
}
.faq .container > * {
    flex: none;
    width: 50%;
}
.faq .container > img {
    align-self: stretch;
    object-fit: cover;
    min-height: 450px;
    object-position: 100% 50%;
}
.faq .container > div {
    padding-left: 7vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq .bp-faq-wrapper {
    gap: 0;
}
.faq .bp-faq-entry.bp-faq-question-arrow .bp-faq-question {
    background-color: transparent;
    padding: 1.5rem 0;
    border-top: solid 1px #eeeeee;
    font-weight: 500;
    justify-content: space-between;
    border-radius: 0;
}
.faq .bp-faq-entry.bp-faq-question-arrow .bp-faq-question svg {
    display: none;
}
.faq .bp-faq-entry .bp-faq-question:after {
    content: "";
    width: 15px;
    height: auto;
    aspect-ratio: 1/1;
    margin-left: 20px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAyNCAyNCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZT0iIzAwMCI+CiAgPHBhdGggc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBkPSJtMTkuNSA4LjI1LTcuNSA3LjUtNy41LTcuNSIgLz4KPC9zdmc+");
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}
.faq .bp-faq-entry[open] .bp-faq-question:after {
    transform: rotate(-180deg);
}
.faq .bp-faq-entry.bp-faq-question-arrow[open] .bp-faq-answer-wrapper {
    padding: 0 0 1.5rem 0;
    /*border-top: solid 1px rgba(84,84,84,1.00);*/
}



.free-shipping-badge {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3px;
}
.free-shipping-badge svg {
    height: 18px;
    flex: none;
    color: var(--dark);
}
.savings-blob {
    border-radius: 30px;
    padding: 5px 10px;
    font-weight: bold;
    color: #b8362e;
    border: solid 1px #b8362e;
    background-color: #fbeae7;
}

.imageoverlay {
    position: relative;
}
.imageoverlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 4;
    background-color: rgba(191,191,191,1.00);
    opacity: 0.15;
    pointer-events: none;
}

div.bp_swiper-button {
    left: 0;
    transform: translate(calc(-100% - 1vw),-50%);
    width: 50px;
    max-width: 10vw;
    aspect-ratio: 1/1;
    border: solid 1px #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,1.00);
    transition: all 0.3s ease;
}
div.bp_swiper-button.bp_swiper-button-prev {
    right: auto;
    left: 0;
    transform: translate(-10px,-50%);
}
div.bp_swiper-button.bp_swiper-button-next {
    right: 0;
    left: auto;
    transform: translate(10px,-50%) rotate(180deg);
}
div.bp_swiper-button svg {
    width: 45%;
    transition: all 0.3s ease;
}

.minibasket div.bp_swiper-button.bp_swiper-button-prev {
    transform: translate(10px,-50%) scale(0.9);
}
.minibasket div.bp_swiper-button.bp_swiper-button-next {
    transform: translate(-10px,-50%) rotate(180deg) scale(0.9);
}
.minibasket .lastviewed-container .smallheader {
    padding: 0 0 10px;
}
.minibasket .lastviewed-container .product .info {
    padding: 10px;
}
.minibasket .lastviewed-container .product .info .name {
    font-size: 12px;
    font-weight: normal;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    white-space: nowrap;
    
}

div.bp_swiper-button:hover {
    background-color: rgba(0,0,0,1.00);
    border-color: rgba(0,0,0,1.00);
}
div.bp_swiper-button:hover svg {
    color: rgba(255,255,255,1.00);
}

.newsletterbox {
    background-image: var(--gradient);
    color: rgba(255,255,255,1.00);
    position: relative;
    overflow: hidden;
}
.newsletterbox picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter:grayscale(1);
    opacity: 0.3;
    object-fit: cover;
    animation: move-image 20s infinite;
}
/*
.newsletterbox:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url('https://images.unsplash.com/photo-1579547621113-e4bb2a19bdd6?q=80&w=1800&h=400&auto=format&fit=crop');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    filter:grayscale(1);
    opacity: 0.3;
}
*/
.newsletterbox .container {
    position: relative;
    z-index: 2;
    align-items: center;
}
.newsletterbox a {
    color: rgba(255,255,255,1.00);
}
.newsletterbox p {
    margin: 0;
}
.newsletterbox form {
    flex: none;
    width: 50%;
    padding: 0;
}
.newsletterbox .formrow {
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.newsletterbox .formrow * {
    min-height: 40px;
    border: none;
}
.newsletterbox .mediumheader {
    font-weight: 400;
    font-size: 50px;
    flex-direction: column;
    margin: 0;
}
.newsletterterms {
    display: flex;
    gap: 8px;
    padding: 20px 0 0;
    align-items: flex-start;
    justify-content: flex-start;
}
.newsletterterms input {
    flex: none;
    border: none;
    margin-top: 2px;
}
.newsletterterms label {
    cursor: pointer;
    line-height: 1.5em;
}
.newsletterterms label a {
    text-decoration: underline;
}

.headerbox {
    width: 100%;
    display: block;
    min-height: 10vh;
}
img.headerbox {
    object-fit: cover;
    height: 13vh;
}

footer,
footer a {
    color: rgba(255,255,255,1.00);
}
footer {
    /*background-color: var(--light);*/
    background-color: var(--primary);
    /*font-size: 21px;*/
    color: rgba(255,255,255,1.00);
    padding: 50px 0;
}
footer .shoplogo {
    margin-bottom: 20px;
}
footer .footertext {
    margin-bottom: 25px;
}
footer a {
    text-decoration: none;
}

footer .companyinfo ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
footer .companyinfo ul > li {
    display: flex;
    align-items: center;
    gap: 8px;
}
footer .companyinfo ul svg {
    width: 20px;
}
footer .payment-methods {
    padding-top: 30px;
}



.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}
.footersocials {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
}
.footertrust {
    display: flex;
    align-items: flex-end;
    gap: 30px;
}
.footertrust img {
    height: 40px;
    width: auto;
    max-width: none;
}

footer a.social svg {
    fill: rgba(255,255,255,1.00);
}
.footertitle {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .credits {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    padding-top: 0;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 15px;
    padding-top: 30px;
}
footer .shippingmethods {
    display: flex;
    align-items: center;
    gap: 20px;
}
a.social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
a.social svg {
    width: 35px;
    height: auto;
}
footer .TopMenu_MenuItems {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

table.CmsPageStyle_Table,
.BackgroundColor1_Terms,
.BackgroundColor1_Terms table {
    height: auto;
    table-layout: fixed;
}
/*
table[style*="width"] {
    table-layout: auto;
    width: 100% !important;
}
table[style*="width"] td {
    width: auto !important;
}
*/
.tableoverflow {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
}

span.swiper-pagination-bullet {
    transition: all 0.3s ease;
    height: 7px;
    width: 7px;
    margin: 0 3px !important;
}
span[class*="swiper-pagination-bullet-active"] {
    background-color: rgba(0,0,0,1.00);
    border-radius: 25px;
    width: 12px;
}
.wideoverflow {
    width: 100vw;
    overflow: hidden;
}

main.container {
    padding: 5vw 0;
}

.webshop-frontpage main.container {
    padding-top: 0;
    padding-bottom: 0;
}
.webshop-productinfo main.container,
.webshop-cmspage main.container {
    padding: 0;
    width: 100%;
    max-width: 2500px;
}


/*
.webshop-frontpage main.container,
.webshop-productlist:not(.bloglist) main.container:not(.noitems),
.webshop-productinfo main.container {
    width: 100%;
    max-width: 2500px;
    
}
*/
.productlistheader + main.container {
    padding-top: 0;
}
/*
body.webshop-productlist {
    background-color: var(--light);
}
*/
/*
#Content_Productlist .ProductList_Custom_DIV {
    background-color: var(--light);
    padding: 2rem;
}
*/
.bloglist #Content_Productlist .ProductList_Custom_DIV {
    background-color: transparent;
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
}
.blogitem {
    display: flex;
    flex-direction: column;
}
.blogitem .image {
    margin-bottom: 20px;
}
.blogitem .image img,
.bp_relatedproductsProduct.blogitem .bp_relatedproductsProductImage img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
}
.blogitem .name,
.bp_relatedproductsProduct.blogitem .bp_relatedproductsProductName[class*="design_"] {
    font-size: 22px;
    padding: 15px 0;
    text-decoration: none;
    text-align: left;
    color: inherit;
    line-height: normal;
}
.blogitem .description:empty,
.blogitem .bp_relatedproductsShortDescription:empty {
    display: none;
}
.blogitem .description,
.blogitem .bp_relatedproductsShortDescription[class*="design_"] {
    margin-bottom: 15px;
    font-size: inherit;
    color: inherit;
}
.blogitem .button {
    align-self: flex-start;
}

[class*="bp_relatedproductsCustomField"] {
    display: none;
}

.itemscount {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: auto;
    aspect-ratio: 1/1;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    border-radius: 50%;
    z-index: 5;
    transform: translate(30%,-30%);
    background-color: var(--good);
    color: rgba(255,255,255,1.00);
}

.SubCats_Categories_UL {
    display: none;
}
/*
.SubCats_Categories_UL {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
    list-style-type: none;
    justify-content: center;
    gap: 14px;
    padding: 0 5vw;
}
.SubCats_Categories_UL > li {
    max-width: 230px;
    flex: none;
    width: calc(50% - 7px) !important;
    
}
.SubCats_Categories_UL > li:empty {
    display: none;
}
.productgroup {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}
.productgroup .image {
    flex: none;
}
.productgroup .image:not(:has(img)) {
    display: none;
}
.productgroup .image a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rounded);
    position: relative;
    border: solid 2px #f4f4f4;
    transition: all .2s ease;
    padding: 10px;
}
*/

/*
.productgroup .image a:after {
    background-color: rgba(204, 204, 204, .10);
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    z-index: 5;
    border-radius: inherit;
}
*/
.productgroup:hover .image a {
    border-color:rgba(0,0,0,1.00);
    transform: scale(1.05);
}
.subcatscontainer .productgroup:hover .image a {
    transform: none
}

.productgroup .image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    display: block;
    object-fit: contain;
    border-radius: 5px;
    object-position: 50% 50%;
}
.productgroup .name {
    flex: auto;
}
.productgroup .name a {
    display: block;
    text-decoration: none;
    line-height: 1.3em;
    text-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-weight: bold;
}


 

.closebutton,
.ui-dialog-titlebar-close {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    width: 45px;
    height: auto;
    aspect-ratio: 1/1;
    border: none;
    background-color: rgba(0,0,0,1.00);
    font-size: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0iI2ZmZiI+CiAgPHBhdGggZD0iTTYuMjggNS4yMmEuNzUuNzUgMCAwIDAtMS4wNiAxLjA2TDguOTQgMTBsLTMuNzIgMy43MmEuNzUuNzUgMCAxIDAgMS4wNiAxLjA2TDEwIDExLjA2bDMuNzIgMy43MmEuNzUuNzUgMCAxIDAgMS4wNi0xLjA2TDExLjA2IDEwbDMuNzItMy43MmEuNzUuNzUgMCAwIDAtMS4wNi0xLjA2TDEwIDguOTQgNi4yOCA1LjIyWiIgLz4KPC9zdmc+");
    background-size: 70% auto;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    transform: translate(50%,-50%);
    cursor: pointer;
}

div.swiper-button-next:after,
div.swiper-button-prev:after {
    color: rgba(0,0,0,1.00);
    font-size: 30px;
}


.shipping-countdownbar {
    background-color: var(--light);
    border-bottom: solid 1px #ded9d0;
}
.shipping-countdown {
    display: flex;
    justify-content: space-between;
    gap: 13px;
    align-items: center;
    padding: 11px 0;
    color: var(--primary);
}
.shipping-countdown.redeemed {
    justify-content: center;
}
.shipping-countdown:empty {
    height: 42px;
}
.shipping-countdown svg {
    height: 20px;
    fill: var(--primary);
}
.shipping-countdown .text {
    margin-right: auto;
}
.shipping-countdown .bar {
    border-radius: 15px;
    background-color: #fff;
    border: solid 1px #ded9d0;
    height: 12px;
    flex: auto;
    display: none;
    max-width: 250px;
    margin-left: auto;
    padding: 1px;
}
.shipping-countdown .bar.active {
    display: flex;
}
.shipping-countdown .bar > span {
    background-color: var(--primary);
    border-radius: var(--rounded);
}



.minibasket .shippingCountdown {
    padding-top: 20px;
}
.minibasket .shippingCountdown.redeemed {
    padding-top: 20px;
    padding-bottom: 20px;
}


.tabs .tabshead {
    display: flex;
    justify-content: center;
    border-bottom: solid 1px rgba(230,230,230,1.00);
    
}
.tabs .tabshead > div {
    cursor: pointer;
    padding: 0 30px 15px;
    position: relative;
    text-transform: uppercase;
    color: rgba(109,109,109,1.00);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 13px;
}
.tabs .tabshead > div img {
    height: 15px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    display: none;
}
.tabs .tabshead > div.active {
    color:rgba(0,0,0,1.00);
}
.tabs .tabshead > div.active:after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,1.00);
    content: "";
}
.tabs [data-tab]:not(.active) {
    display: none;
}

/* SHOWBASKET */
body.webshop-showbasket h1 {
    flex: none;
    width: 100%;
}
.showbasket {
    display: flex;
    align-items: flex-start;
    width: 100%;
    flex-direction: column;
}
.showbasket > * {
    flex: auto;
}
.showbasket > .summary {
    flex: none;
    width: 40%;
    margin-left: 30px;
}
.showbasket > .summary .deliveryinfo {
    margin: 0 0 15px;
    border-radius: 4px;
    padding: 10px;
    background-color: rgba(240, 240, 240, 1.00);
    display: none;
}
.showbasketbuttons {
    margin-top: 30px;
    gap: 15px;
    display: flex;
    justify-content: flex-start;
}
.showbasketbuttons > * {
    flex: none;
}
.ShowBasket_Custom_DIV > div:not(:first-child) {
    margin-top: 15px;
}
.ShowBasket_Custom_DIV > div {
    display: flex;
    padding: 10px 15px 10px 10px;
    border: solid 1px rgba(237, 237, 237, 1.00);
    background-color: rgba(255, 255, 255, 1.00);
    align-items: center;
    position: relative;
}
.ShowBasket_Custom_DIV > div.childproduct {
    margin: 0;
    border-top: none;
    background-color: rgba(244,244,244,1.00);
    padding-left: 25px;
}
.ShowBasket_Custom_DIV > div:has(.configchoices) {
    padding-bottom: 20px;
}
.ShowBasket_Custom_DIV > div:has(.configchoices) + div {
    padding-top: 20px;
}
.configchoices {
    position: absolute;
    top: 100%;
    left: 10px;
    background-color: var(--dark);
    color: rgba(255,255,255,1.00);
    border-radius: 2px;
    padding: 4px 15px;
    font-size: 12px;
    transform: translate(0,-50%);
    z-index: 2;
}
.configchoices:after {
    width: 6px;
    height: 6px;
    background-color: inherit;
    content: "";
    position: absolute;
    top: 100%;
    left: 15px;
    transform: translateY(-50%) rotate(45deg);
}

.infoline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}
.ShowBasket_Custom_DIV .image {
    flex: none;
    width: 110px;
    margin: 0 15px 0 0;
    display: flex;
    align-items: flex-start;
    align-self: flex-start;
}
.ShowBasket_Custom_DIV .image a {
    position: relative;
}
.ShowBasket_Custom_DIV .image img {
    width: 100% !important;
    display: block;
}
.ShowBasket_Custom_DIV .productnumber {
    color: #7F7F7F;
}
.ShowBasket_Custom_DIV .info {
    flex: auto;
    padding: 0;
}
.ShowBasket_Custom_DIV .info > a {
    text-decoration: none;
}
.ShowBasket_Custom_DIV .info table {
    margin: 10px 0 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAyNCAyNCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZT0iIzAwMCI+CiAgPHBhdGggc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBkPSJNMjEgMTEuMjV2OC4yNWExLjUgMS41IDAgMDEtMS41IDEuNUg1LjI1YTEuNSAxLjUgMCAwMS0xLjUtMS41di04LjI1TTEyIDQuODc1QTIuNjI1IDIuNjI1IDAgMTA5LjM3NSA3LjVIMTJtMC0yLjYyNVY3LjVtMC0yLjYyNUEyLjYyNSAyLjYyNSAwIDExMTQuNjI1IDcuNUgxMm0wIDBWMjFtLTguNjI1LTkuNzVoMThjLjYyMSAwIDEuMTI1LS41MDQgMS4xMjUtMS4xMjV2LTEuNWMwLS42MjEtLjUwNC0xLjEyNS0xLjEyNS0xLjEyNWgtMThjLS42MjEgMC0xLjEyNS41MDQtMS4xMjUgMS4xMjV2MS41YzAgLjYyMS41MDQgMS4xMjUgMS4xMjUgMS4xMjV6IiAvPgo8L3N2Zz4=");
    background-repeat: no-repeat;
    background-size: 16px auto;
    background-position: calc(100% - 15px) 50%;
    padding: 7px 39px 7px 10px;
    background-color: #f9f9f9;
    border: solid 1px rgba(0, 0, 0, .04);
    border-radius: 25px;
    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 .stockinfo {
    margin-top: 7px;
}
.ShowBasket_Custom_DIV .amountinput input {
    height: 30px;
    width: 40px;
    text-align: center;
}
.ShowBasket_Custom_DIV .amountinput input::-webkit-outer-spin-button, .ShowBasket_Custom_DIV .amountinput input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.ShowBasket_Custom_DIV .amountinput input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}
.ShowBasket_Custom_DIV .amount {
    display: flex;
    margin-top: 8px;
}
.ShowBasket_Custom_DIV .amount a:not([href*="remove=1"]) {
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    font-family: 'Arial';
    line-height: 1;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    user-select: none;
    border: solid 1px rgba(237, 237, 237, 1.00);
    border-radius: 50%;
}
.ShowBasket_Custom_DIV .amount 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 a[href*="remove=1"], .delbutton {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%,-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #000;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 1;
}
.ShowBasket_Custom_DIV a[href*="remove=1"] svg, .delbutton svg {
    fill: #FFF;
    width: 12px;
    height: auto;
}
.ShowBasket_Custom_DIV .price {
    display: flex;
    justify-content: flex-end;
    margin-left: 15px;
    align-items: center;
}
.ShowBasket_Custom_DIV .price .amount {
    margin-right: 20px;
}
.ShowBasket_Custom_DIV .price .priceholder {
    line-height: normal;
    text-align: right;
}
.ShowBasket_Custom_DIV .price .priceholder small {
    display: block;
}
.ShowBasket_Custom_DIV .price .totalbefore {
    text-decoration: line-through;
    color: rgba(147, 147, 147, 1.00);
}
.showbasket .summary {
    display: flex;
    flex-direction: column;
}
.showbasket .summarycontent {
    padding: 30px;
    background-color: var(--light);
    display: flex;
    flex-direction: column;
} 
.showbasket .summarycontent [data-yesoffers] {
    padding: 30px 0 0;
}
.showbasket .summary .row {
    display: flex;
    justify-content: space-between;
    flex: none;
    padding: 6px 0;
}
.showbasket .summary .row > div:last-of-type {
    text-align: right;
}
.showbasket .summary .row .totalprice {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.showbasket .summary .row .totalprice del {
    color: rgb(107 114 128);
    font-weight: 400;
}
body.webshop-showbasket .CustomersAlsoBought_Custom_DIV {
    margin-bottom: 30px;
}
.showbasket .shippingCountdown {
    margin-top: 20px;
}
.showbasket .summary .row.total {
    font-size: 28px;
    line-height: normal;
}
.showbasket .summary .row.total small {
    font-size: 14px;
}
body:not(.dmactive) .showbasket .summary .row.totaldiscount {
    display: none;
}
.showbasket .summary .buttons {
    flex: auto;
    display: flex;
    flex-direction: column;
    padding: 30px 0 0;
    gap: 15px;
}
.showbasket .summary .buttons a.button {
    display: flex;
    width: 100%;
    flex: none;
    font-size: 16px;
    padding: 14px;
}
.showbasket .summary .buttons a.button svg {
    height: 20px;
    margin-right: 8px;
    width: auto;
    fill: #FFF;
}
.showbasket .summary .buttons a.button.grey {
    background-color: #6B6B6B;
}
.showbasket .payment {
    justify-content: center;
    padding: 30px 0 0;
}

.welcome {
    line-height: 1.6em;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.welcome > div {
    display: flex;
    flex-direction: column;
}
.welcome > div > * {
    flex: auto;
}
.welcome img {
    object-fit: cover;
}
.welcome > div > div {
    padding: 40px;
    flex: none;
    width: 50%;
    align-self: center;
}
.welcome > div > div p:first-of-type {
    margin-top: 0;
}
.welcome > div > div p:last-child {
    margin-bottom: 0;
}

.focusofferelement,
.focusofferelement a {
    color: rgba(255,255,255,1.00);
}
.focusofferelement {
   
    position: relative;
    background-color: var(--primary);
    overflow: hidden;
    /*clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);*/
}
.focusofferelement .container {
     display: flex;
}
.focusofferelementbackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(10px) grayscale(1);
    object-fit: cover;
    object-position: 100% 50%;
    transform: rotate(5deg);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}
.focusofferleft,
.focusoffercontent {
    padding: 40px;
}
.focusofferleft {
    display: flex;
    align-items: center;
    flex: none;
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 53%;
    padding-left: 0;
}
.focusofferproduct {
    flex: auto;
    display: flex;
    position: relative;
    z-index: 2;
    text-decoration: none;
}
.focusoffercontent {
    flex: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
}
.focusoffertitle {
    font-size: 48px;
    font-weight: 700;
}
.focusofferproduct .focusofferimage {
    position: relative;
    flex: none;
    max-width: 40%;
}
.focusofferproduct .focusofferimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.focusoffermaintitle {
    font-size: 65px;
    font-weight: 700;
}
.focusoffermaintitle small {
    font-weight: 400;
    font-size: 50%;
    display: block;
}

.focusoffercountdown {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: flex-start;
}
.focusoffercountdown > div {
    border-radius: 3px;
    background-color:rgba(241,241,241,1.00);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(0,0,0,1.00);
    height: 120px;
    aspect-ratio: 10/12;
    position: relative;
}
.focusoffercountdown > div:before,
.focusoffercountdown > div:after {
    content: "";
    position: absolute;
    top: 43%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,1.00);
    opacity: 0.6;
}
.focusoffercountdown > div:after {
    background-color: rgba(213,213,213,1.00);
    margin-top: 1px;
}
.focusoffercountdown > div > strong {
    font-weight: 700;
    font-size: 40px;
}
.focusoffercountdown > div > span {
    font-size: 12px;
}


.sticky {
    position: sticky;
    top: 38px;
    z-index: 40;
    background-color: rgba(255,255,255,1);
    /*backdrop-filter: blur(10px);*/
    top: 0;
}




.webshop-customercenter main > table[width=""]:first-of-type + br {
    display: none;
}
.webshop-customercenter main > form {
    margin-bottom: var(--space);
}
table.loyalty_signup_table > tbody > tr > td:first-child {
    margin: 0;
    flex-wrap: nowrap;
    align-items: flex-start;
    flex-direction: column;
}
table.loyalty_signup_table > tbody > tr > td:first-child > * {
    margin: 0;
    padding: 20px;
    
}
table.loyalty_signup_table > tbody > tr > td:first-child > form[action*="customer.html"] {
    flex: none;
    background-color: var(--light);
    position: relative;
    width: 100%;
}
table.loyalty_signup_table > tbody > tr > td:first-child > form[action*="customer.html"]:after {
    height: auto;
    aspect-ratio: 1/1;
    position: absolute;
    background-color: inherit;
    content: "";
    border: 1px solid #eee;
    border-left: none;
    border-bottom: none;
    left: 30px;
    top: 100%;
    transform: translate(0,-50%) rotate(135deg);
    width: 17px;
}
table.loyalty_signup_table > tbody > tr > td:first-child > form.loyalty_signup_form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

form.loyalty_signup_form .header p {
    margin: 0 0 10px;
    padding: 0;
}
form.loyalty_signup_form .input_section {
    flex: none;
    padding: 0;
    vertical-align: top;
    margin: 0;
    width: 100%;
}
form.loyalty_signup_form .input_section label {
    display: none;
}
form.loyalty_signup_form .description p {
    margin: 0;
    padding: 0;
}
form.loyalty_signup_form .description p:not(:empty) {
    margin-bottom: 10px;
}
form.loyalty_signup_form ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
form.loyalty_signup_form ul li {
    position: relative;
    padding: 4px 0 4px 20px;
}
.signup_confirm_checkbox {
    display: flex;
    align-items: flex-start;
    margin: 0;
    flex: none;
    width: 100%;
}
.signup_confirm_checkbox > * {
    flex: auto;
}
.signup_confirm_checkbox > input {
    flex: none;
    margin: 0 10px 0 0;
}
.signup_confirm_checkbox > p {
    margin: 0;
    padding: 0;
}

.webshop-customercenter input[type="text"]#xprofileid.TextInputField_Customer,
.webshop-customercenter input[type="password"]#xprofileid1.TextInputField_Customer {
    width: 100% !important;
    margin-bottom: 20px;
}
.webshop-customercenter input.SubmitButton_Customer,
.ForgotPassword_Customer .SubmitButton_Customer {
    float: left;
    margin: 0 0 20px;
}

.b2bpopup .fancybox__content {
    width: 600px;
    max-width: 90vw;
}
.b2bpopup .fancybox__content > .f-button.is-close-btn, .b2bpopup.is-compact .fancybox__content > .f-button.is-close-btn {
    top: -40px;
    right: 0;
    min-height: 0;
    width: 50px;
    height: 50px;
    color: rgba(36, 36, 36, 1.00);
    opacity: 1;
    background-color: transparent;
    border-radius: 0;
}
.b2bpopup table {
    width: 100%;
}
.b2bpopup input[type="password"] {
    margin: 15px 0;
}
/*
.b2bpopup form {
    padding: 2rem;
}
*/
.b2bpopup a[href="/shop/customer.html?showForgotPswForm=1"],
.b2bpopup a[href="#customersignup"],
.customersignup a[href="/shop/customer.html"] {
	background-color: #f9f9f9;
	padding: 10px 20px;
	border-radius: 20px;
	display: inline-flex;
	text-decoration: none;
	margin-bottom: 5px;
	border-bottom: 1px solid #eee;
	width: 100%;
	justify-content: center;
}
a[href="/shop/customer.html?showForgotPswForm=1"] svg, a[href="#customersignup"] svg, .customersignup a[href="/shop/customer.html"] svg {
	height: 18px;
	width: auto;
	margin-right: 8px;
}
div.fancybox__backdrop {
    background-color: rgba(0,0,0,0.70);
}
button.is-close-btn {
    right: 0;
    left: 100%;
    color: #FFF !important;
    opacity: 1 !important;
}
.b2bpopup .fancybox__content > .f-button.is-close-btn,
.b2bpopup.is-compact .fancybox__content > .f-button.is-close-btn {
    top: -40px;
    right: 0;
    min-height: 0;
    width: 50px;
    height: 50px;
    color: rgba(36, 36, 36, 1.00);
    opacity: 1;
    background-color: transparent;
    border-radius: 0;
}

.ErrorText_customerlogin {
    margin: 0 0 20px;
    padding: 15px;
    background-color: rgba(246,223,223,1.00);
    border: solid 1px rgba(231,181,182,1.00);
    color: rgba(160,82,83,1.00);
}

.FormTB_SubjectLabelTD,
.FormTB_SubjectInputTD,
.subjectHeader + tr,
.FormTB_EmailLabelTD {
    display: none;
}
.subjectHeader {
    display: flex;
    gap: 15px;
    align-items: center;
}
.FormTB_EmailInputTD {
    flex: auto;
}

table.BackgroundColor1_Profile {
    width: 100%;
    table-layout: fixed;
}

.bp_lsaFullScreen .bp_lsaCategoriesList > .bp_lsaCategory:nth-child(n+10),
.bp_lsaFullScreen .bp_lsaBrands > .bp_lsaBrand:nth-child(n+10) {
    display: none;
}

form[action="/shop/b2blogin.html"] .TextInputField_B2Blogin,
input[name="forgotEmail"] {
    width: 100% !important;
    margin: 0 0 12px;
}
form[action="/shop/b2blogin.html"] .SubmitButton_B2Blogin {
    display: block;
    margin: 0 0 20px;
}

/*
table.TableLines_ProductInfo {
    display: none;
}
    */

.pager {
    display: none;
    justify-content: center;
    padding-top: 30px;
}
.pager:has(.loadmore-button) {
    display: flex;
}
.loadmore-button {
    border-radius: 40px;
    border: solid 1px var(--dark);
    padding: 8px 30px;
    cursor: pointer;
    margin: 0 auto;
    display: flex;
    flex: none;
}
.loadmore-button.loading {
    opacity: 0.3;
    cursor: progress;
}
.SubCats_Categories_Container > h1 {
    display: none;
}

.subcatBoxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    display: none;
}
.subcatBoxes > a {
    flex: none;
    width: 20%;
}

.CategoryFooterContent {
    padding: 2rem 0 0;
}

form[name="CustomerCenterForm"] .BackgroundColor1_Customer {
    padding: 20px;
    border: solid 1px rgba(238, 238, 238, 1);
    width: 100%;
}
form[name="CustomerCenterForm"] .Text1_Customer > tbody > tr:first-child > td > br:first-child {
    display: none;
}
[id*="tabB"] {
    float: left;
    margin-right: 6px;
}
[id*="tabB"] > span {
    background-color: rgba(238, 238, 238, 1);
    padding: 10px 15px;
    display: block;
    border-radius: 3px 3px 0 0;
}
[id*="tabB"] > span.Tabactive_Customer, [id*="tabB"] > span.Tabhover_Customer {
    background-color: rgba(0, 0, 0, 1.00);
    color: rgba(255, 255, 255, 1.00);
}
[id*="tabB4"] {
    float: right;
    margin: 0;
}
[id="tabB4"] > span.Tabdeactive_Customer {
    color: rgba(255, 255, 255, 1.00);
    background-color: var(--primary);
}
.Text1_Customer tr[id*="Field"] > td {
    padding: 5px 0;
}
.Text1_Customer tr[id*="Field"] > td:nth-child(3) {
    font-size: 0;
}
span.FieldReq_Customer {
    position: absolute;
    font-size: 12px;
    line-height: 1;
    margin: -7px 0 0 -21px;
}
#OrderDetailsHeading + br + table, #OrderDetailsHeading + br + table + br + table + table {
    display: none;
}
#OrderDetailsHeading + br + table + br + table > tbody > tr > td {
    border-bottom: solid 1px rgba(238, 238, 238, 1);
    padding: 7px 0;
}


[id*="bp_ProductCarousel_"]:empty {
    aspect-ratio: 375 / 379;
}
[id*="bp_ProductCarousel_"].bp_noResult {
    display: none;
}

.topcats {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.topcats [data-slideshow] {
    flex: none;
    width: 100%;
}
.topcats [data-slideshow] .slidecontent {
    bottom: 0;
    max-width: 100%;
    width: 100%;
    padding: 7vw;
}
.topcats [data-slideshow] .slideshowheader {
    font-size: 20px;
    line-height: normal;
}
.topcats [data-slideshow] .slideshowfooter {
    padding: 0;
    margin: 0;
    background-color: transparent;
    border-radius: 0;
    border-bottom: solid 2px rgba(255,255,255,1.00);
}
.topcats [data-slideshow] img,
.topcats [data-slideshow] video {
    aspect-ratio: 319/384;
}




.productconfig {
    margin-bottom: 30px;
}
.productconfig:empty {
    height: 450px;
    background-image: url("/images/skins/2026/images/loader.gif");
    background-repeat: no-repeat;
    background-size: 35px auto;
    background-position: 50% 50%;
}
.configgroups {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.groupheader {
    border: solid 1px rgba(238,238,238,1.00);
    border-radius: 5px;
    padding: 10px 20px 10px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    user-select: none;
}
.configgroup:not(.open) .groupheader:hover {
    background-color: rgba(240,240,240,.50);
}
.configgroup.open .groupheader {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}
.groupheaderimage {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    border: solid 1px rgba(240,240,240,1.00);
    flex: none;
    overflow: hidden;
}
.groupimage {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
}
.groupimage[src*=".gif"] {
    padding: 15px;
}
.configgroupcolor .groupimage:not([src*=".gif"]) {
    transform: scale(2);
}
.groupheaderinfo {
    flex: auto;
}
.groupheadertitle {
    font-weight: bold;
}
.groupheaderprice {
    flex: none;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    text-align: right;
}
.groupheadertoggler:before {
    content: "+";
    flex: none;
    display: block;
    font-size: 17px;
    font-family: 'Arial';
    line-height: 1;
    width: 14px;
    text-align: center;
}
.configgroup.open .groupheadertoggler:before {
    content: "-";
}
.groupproducts {
    display: none;
}
.configgroup.open .groupproducts {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 10px;
    border: solid 1px rgba(238,238,238,1.00);
    border-top: none;
    border-radius: 0 0 5px 5px;
}
.groupproduct {
    user-select: none;
    flex: none;
    width: calc(33.33% - 10px);
    border-radius: 3px;
    padding: 10px;
    background-color: #d1d1d11a;
    border: solid 1px rgba(209, 209, 209, .4);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.groupproduct.selected {
    background-color:rgba(244,252,242,1.00);
    border-color: rgba(175,237,178,1.00);
}
.groupproductimage {
    mix-blend-mode: multiply;
    margin: 0 0 10px;
}
.groupproductprice {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 5px 0 0;
}
.groupproductprice del {
    display: block;
    color: rgba(99,99,99,1.00);
}
.groupproductprice del:empty {
    display: none;
}

hr {
    margin: 20px 0;
    height: 1px;
    border: none;
    background-color: rgba(234,234,234,1.00);
}

.centerelement {
    display: flex;
    justify-content: center
}

.nobutton {
    margin: 30px 0 0;
    text-align: center;
    text-decoration: underline;
    cursor: pointer
}



[itemtype="https://schema.org/FAQPage"].bp-faq-wrapper {
    gap: 8px;
}
.bp-faq-question[class*="bp-faq-question-"] {
    background-color: #fff;
    border: solid 1px var(--light);
}
.bp-faq-entry.bp-faq-question-arrow .bp-faq-question[class*="bp-faq-question-"] {
    padding: 12px 10px 12px 15px;
    font-weight: normal;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
    gap: 15px;
}
.bp-faq-entry.bp-faq-question-arrow .bp-faq-question[class*="bp-faq-question-"]:after {
    content: "+";
    
    font-weight: bold;
    font-size: 14px;
}
.bp-faq-entry.bp-faq-question-arrow[open] .bp-faq-question[class*="bp-faq-question-"]:after {
    content: "-";
}
.bp-faq-entry.bp-faq-question-arrow .bp-faq-question[class*="bp-faq-question-"] svg {
    display: none;
}
.bp-faq-entry.bp-faq-question-arrow[open] .bp-faq-answer-wrapper[itemprop="acceptedAnswer"] {
    padding: 15px;
}

main.container.customerservicemenu .servicemenu {
    display: none;
}

.Order_printIcon * {
    display: none;
}
.Heading_Order4 ~ br,
.Heading_Order4 ~ a:not(.confirmationbanner),
.BackGroundColor1_OrderStep4 > tbody > tr:first-child td > br:first-child,
.BackGroundColor1_OrderStep4 > tbody > tr:nth-child(1),
.BackGroundColor1_OrderStep4 > tbody > tr:nth-child(3) {
    display: none;
}
.TableLines_OrderStep4 {
    width: 100%;
    padding: clamp(8px, 2vw, 30px);
    border: solid 1px var(--light);
    margin-top: var(--space);
    margin-bottom: var(--space);
    table-layout: fixed;
}
.BasketLine_OrderStep4 img {
    width: 100px;
    margin: 0 15px 10px 0;
}


.language img {
    width: 20px;
}


@keyframes scale-image {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(1deg);
    }
}
@keyframes move-image {
    0%, 100% {
        transform: scale(1.2) translateX(0);
    }
    50% {
        transform: scale(1.2) translateX(-5%);
    }
}

.productsoutercontainer {
    position: relative;
}
div.bp_swiper,
div.bp_swiper-slide {
    display: flex;
}
div.bp_swiper-wrapper {
    height: auto;
}
.productcard .swiper-button-next,
.productcard .swiper-button-prev {
    width: 10%;
    height: 100%;
    top: 0;
}

[itemprop="aggregateRating"] {
    border-radius: var(--rounded);
    box-shadow: var(--boxshadow);
    background-color: #fff;
    padding: 5vw;
}
[itemprop="aggregateRating"] [itemprop="ratingValue"] {
    font-size: clamp(30px,12vw,70px);
    font-weight: bold;
    letter-spacing: -4px;
}
.stars .star {
    color: #ccc;
}
.stars .star.active {
    color: var(--discount);
}
[itemprop="aggregateRating"] .stars {
    font-size: 18px;
    margin: 5px 0 10px;
}

.faq-container .h1 {
    color: var(--dark);
}

.collapsed {
    height: 180px;
    max-height: 30vh;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 80%, transparent 100%);
}
.morelink {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 20px;
}
.morelink svg {
    width: 20px;
}
.tabs .morelink {
    display: flex;
    justify-content: center;
}
div.bp_lsaFullScreen .bp_lsaProductsList>.bp_lsaProduct .bp_lsaProductExpectedDeliveryTime,
div.bp_lsaProductButtons,
div.bp_lsaFullScreen .bp_lsaProductsList>.bp_lsaProduct .bp_lsaProductStockMessage,
div[class*="bp_lsaFullScreenCustomField"] {
    display: none;
}

div.bp_swiper-button.swiper-button-lock {
    display: none;
}

.fancybox__slide.has-ajax .fancybox__content {
    width: 1200px;
    max-width: 100%;
}
.fancybox__slide.has-ajax {
    padding: 5vw;
}
div.is-compact .fancybox__content>.f-button.is-close-btn {
    left: auto;
    background-color: rgba(0,0,0,1.00);
}

.hasactivefilters [id*="bp_ProductCarousel_"],
.hasactivefilters.webshop-subcat .SubCats_Categories_Container {
    display: none;
}
.SubCats_Categories_Container #ProdGrpBeskrivelseTop {
    display: none;
}

.discountmodecontainer {
    display: flex;
    padding: 14px 16px;
    background-color: #000;
    color:rgba(255,255,255,1.00);
    border-radius: 4px;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
    line-height: normal;
    transition: all 0.2s ease;
}
.discountmodecontainer .dminfo {
    flex: auto;
}
.discountmodecontainer .dminfo > strong {
    font-size: 15px;
}
.discountmodecontainer .dminfo > p {
    margin: 0;
}
.discountmodecontainer .dminfo a {
    color: rgba(255,255,255,1.00);
}
.dmtoggler {
    position: relative;
    width: 60px;
    height: 30px;
    border-radius: 25px;
    background-color:rgba(167,167,167,1.00);
    transition: all 0.2s ease;
    cursor: pointer;
    flex: none;
}
.discountmodecontainer.active .dmtoggler {
    background-color:rgb(76, 187, 22);
}
.dmtoggler:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    height: 26px;
    width: auto;
    aspect-ratio: 1/1;
    background-color:rgba(255,255,255,1.00);
    border-radius: 50%;
    box-shadow: 2px 2px 2px rgba(0,0,0,.2);
    transition: all 0.2s ease;
}
.discountmodecontainer.active .dmtoggler:before {
    left: calc(100% - 28px);
}
.dminfocontainer {
    font-size: 12px;
    padding: 3px 5px;
    background-color: rgba(0,0,0,1.00);
    color: rgba(255,255,255,1.00);
    line-height: normal;
    font-weight: normal;
    width: fit-content;
    white-space: nowrap;
}
.dminfocontainer + del {
    display: none;
}

#Content_Productlist .discountmodecontainer {
    display: none;
}
.productcard .discountmodecontainer {
    margin-bottom: 20px;
}
.showbasket .discountmodecontainer {
    margin-bottom: 30px;
}


.Text1_Terms.fancybox-content {
    width: 800px;
}

.mobilemenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#fff;
    z-index: 100;
    display: none;
    flex-direction: column;
    line-height: normal;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
}
.mobilemenu.open {
    display: flex;
}
.mobilemenu .mobilemenuheader {
    position: sticky;
    top: 0;
    z-index: 15;
    background-color: var(--dark);
    color: rgba(255,255,255,1.00);
    /*border-bottom: solid 1px rgba(232,232,232,1.00);*/
    display: flex;
    align-items: center;
}
.mobilemenu .mobilemenuheader > span {
    flex: auto;
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}
.mobilemenu .mobilemenuheader .mobilemenuclosebutton {
    font-size: 18px;
    align-self: stretch;
    width: 60px;
   
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}
.mobilemenu ul.menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    flex: none;
    /*
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
    */
    
}
.mobilemenu ul.menu ul.dropdown {
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: absolute;
    
    left: 0;
    height: calc(100vh - 58px);
    top: 0;
    background-color: rgba(255,255,255,1);
    width: 500px;
    max-width: 100vw;
    z-index: 5;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform: translateX(100%);
    box-shadow: 50px 0 0 0 white;
}

.mobilemenu ul.menu ul.dropdown.show {
    transform: translateX(0%);
}
.mobilemenu ul.menu ul.dropdown li.back {
    position: sticky;
    padding: 15px 55px;
    cursor: pointer;
    text-align: center;
    top: 0;
    text-transform: uppercase;
    background-color: rgba(255,255,255,1.00);
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0iY3VycmVudENvbG9yIj4KICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNyAxMGEuNzUuNzUgMCAwIDEtLjc1Ljc1SDUuNjEybDQuMTU4IDMuOTZhLjc1Ljc1IDAgMSAxLTEuMDQgMS4wOGwtNS41LTUuMjVhLjc1Ljc1IDAgMCAxIDAtMS4wOGw1LjUtNS4yNWEuNzUuNzUgMCAxIDEgMS4wNCAxLjA4TDUuNjEyIDkuMjVIMTYuMjVBLjc1Ljc1IDAgMCAxIDE3IDEwWiIgY2xpcC1ydWxlPSJldmVub2RkIiAvPgo8L3N2Zz4=");
    background-position: 20px 50%;
    background-repeat: no-repeat;
    background-size: 22px auto;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
    font-size: 15px
}
.mobilemenu .ProductMenu_MenuItemBold {
    font-weight: normal;
}
.mobilemenu ul.menu a {
    display: block;
    padding: 15px 55px 15px 20px;
    text-decoration: none;
    font-size: 15px;
    border-bottom: solid 1px rgba(232,232,232,1.00);
    background-color: var(--ultralight)
}
.mobilemenu ul.menu a.Activ_ProductMenu {
    background-color: var(--light);
    color: var(--dark);
}
.mobilemenu ul.menu li.has-dropdown > a {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0iY3VycmVudENvbG9yIj4KICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zIDEwYS43NS43NSAwIDAgMSAuNzUtLjc1aDEwLjYzOEwxMC4yMyA1LjI5YS43NS43NSAwIDEgMSAxLjA0LTEuMDhsNS41IDUuMjVhLjc1Ljc1IDAgMCAxIDAgMS4wOGwtNS41IDUuMjVhLjc1Ljc1IDAgMSAxLTEuMDQtMS4wOGw0LjE1OC0zLjk2SDMuNzVBLjc1Ljc1IDAgMCAxIDMgMTBaIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIC8+Cjwvc3ZnPg==");
    background-position: calc(100% - 20px) 50%;
    background-repeat: no-repeat;
    background-size: 22px auto;
    
}
.mobilemenu ul.menu li.showall > a {
    
    justify-content: flex-start;
    background-color: var(--dark);
    color: rgba(255,255,255,1.00);
    gap: 0;
}
/*
.mobilemenu ul.menu ul.dropdown {
    height: calc(100vh - 58px);
    top: 58px;
}
*/
.mobilemenu.overflowhidden {
    overflow: hidden;
}

.mobilemenu ul.menu > li:has(.button) {
    padding: 10px 20px;
}
.mobilemenu ul.menu > li > a.button:has(svg) {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
}
.mobilemenu ul.menu > li > a.button {
    padding: 10px 20px 8px;
    border-radius: 25px;
    min-height: 10px;
    background-color: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
}
.mobilemenu ul.menu > li > a.button > svg {
    height: 33px;
    width: auto;
    aspect-ratio: 1 / 1;
    flex: none;
    background-color: rgba(0, 0, 0, .10);
    border-radius: 50%;
    padding: 5px;
}
.mobileekstramenu {
    margin: auto 0 0 0;
    padding: 0;
    list-style-type: none;
    border-top: solid 1px rgba(232,232,232,1.00);
    background-color:var(--light);
}
.mobileekstramenu a {
    display: block;
    padding: 15px 55px 15px 20px;
    text-decoration: none;
}
.mobileekstramenu li:not(:last-child) > a {
    border-bottom: solid 1px rgba(232,232,232,1.00);
}

.bp_popupMinized_content .bp_countdown_banner .bp_countdown_hide_button {
    display: none;
}
.bp_popupMinized_content:has([id*="bp_countdown_"]) {
    flex-direction: column;
}
.bp_popupMinized .bp_countdown_wrapper {
    display: flex !important;
    align-items: baseline;
    line-height: normal;
}
.bp_popupMinized .bp_countdown_shared_span {
    padding: 0 4px !important;
}
.bp_popupMinized .bp_countdown_wrapper .bp_countdown_shared_span,
.bp_popupMinized .bp_countdown_wrapper .bp_countdown_banner_shared_unit_span {
    font-size: 14px;
    font-weight: bold;
}

#payment-methods-holder {
    display: none;
}

.usp-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.usp-list > * {
    width: calc(50% - 7px);
    display: flex;
    align-items: center;
    gap: 10px;
}
.usp-list i {
    width: 35px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    background-color: var(--light);
    padding: 0 10px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.usp-list svg {
    width: 100%;
    
    fill: var(--primary);
}
.usp-list svg[stroke-width] {
    color: var(--primary);
    fill: none
}
.usp-list > * > span {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.usp-list em {
    font-style: normal;
    color: #555555;
}

.link-boxes {
    display: flex;
    flex-direction: column;
    gap: var(--space);
}
.link-box {
    border-radius: var(--rounded);
    background-color: #fff;
    box-shadow: var(--boxshadow);
    position: relative;
    overflow: hidden;
}
.link-box > img,
.link-box > picture {
    width: 100%;
}
.linkbox-content {
    padding: clamp(20px, 5vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.linkbox-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}
.linkbox-header h2 {
    margin: 0 0 3px;
    color: var(--primary);
}
.linkbox-header p {
    margin: 0;
    color: var(--lightgrey);
}
.link-box-links > *:not(:last-child) {
    border-bottom: solid 1px #d5d5d5;
}
.link-box-links a {
    display: flex;
    gap: 15px;
    font-weight: bold;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 10px 0;
}
.link-box-links a:after {
    content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0iIzAwMCI+CiAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMyAxMGEuNzUuNzUgMCAwIDEgLjc1LS43NWgxMC42MzhMMTAuMjMgNS4yOWEuNzUuNzUgMCAxIDEgMS4wNC0xLjA4bDUuNSA1LjI1YS43NS43NSAwIDAgMSAwIDEuMDhsLTUuNSA1LjI1YS43NS43NSAwIDEgMS0xLjA0LTEuMDhsNC4xNTgtMy45NkgzLjc1QS43NS43NSAwIDAgMSAzIDEwWiIgY2xpcC1ydWxlPSJldmVub2RkIiAvPgo8L3N2Zz4=");
    width: 15px;
    height: 15px;
}

.brands-slider img {
    box-shadow: 0 0 5px rgba(0,0,0,.1);
    border-radius: var(--rounded);
    aspect-ratio: 16/8;
    padding: 5px 0;
    background-color: #fff;
    object-fit: contain;
}

.quote {
    border-radius: var(--rounded);
    background-color: var(--highlight);
    color: var(--primary);
    padding: 8vw 11vw;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px
}
.quote p {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-weight: bold;
    margin: 0;
}
.quote:before,
.quote:after {
    content: "\201C";
    position: absolute;
    top: 3vw;
    left: 3vw;
    font-size: 46px;
    line-height: 1;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}
.quote:after {
    left: auto;
    top: auto;
    right: 3vw;
    bottom: calc(3vw - 22px);
}
.quote-credits {
    display: flex;
    align-items: center;
    gap: 20px;
}
.quote-credits img {
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
}
.quote-credits > div {
    display: flex;
    flex-direction: column;
}

.clickcollect-box {
    padding: 4vw;
    padding-right: 11vw;
}
.clickcollect-box .flex > img {
    width: 31%;
    flex: none;
}
.clickcollect-box .flex > div {
    flex: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.skeleton {
  position: relative;
  overflow: hidden;
  background-color: #e2e5e9 !important;      /* grundfarve mens data hentes */
  border-radius: 6px;
}
 
/* Shimmer-strejf der glider hen over feltet */
.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 100%
  );
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}
 
@keyframes skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.newsletter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 7vw;
    text-align: center;
}
.newsletter-box-title {
    font-weight: bold;
    font-size: clamp(25px, 5vw, 70px);
    margin-bottom: 15px;
}
.newsletter-box p {
    margin: 0;
}
.newsletter-box form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.submit-group {
    display: flex;
    border-radius: 50px;
    background-color: #fff;
    padding: 3px;
    width: 400px;
    max-width: 70vw;
}
.submit-group button.button {
    width: auto;
    height: 40px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 0;
    padding: 0;
    flex: none;
    gap: 0;
}
.submit-group input[type] {
    border: none;
    border-radius: 50px;
    min-height: auto;
    height: auto;
    background-color: transparent;
}


.marketing-switch {
    display: flex;
    background-color: #3b5554;
    border-radius: 40px;
    padding: 3px;
}
.marketing-switch input {
    display: none;
}
.marketing-switch > * {
    display: flex;
    align-items: center;
    gap:7px;
    border-radius: 40px;
    color: #fff;
    white-space: nowrap;
    padding: 8px 20px;
    font-weight: bold;
    cursor: pointer;
}
.marketing-switch > * > svg {
    flex: none;
    width: auto;
    height: 20px;
}
.marketing-switch > *:has(input:checked) {
    background-color: #fff;
    color: var(--primary);
}

.stock-warning {
    display: none;
    gap: 10px;
    color: var(--accent);
    margin-bottom: 15px;
    align-items: center;
}
.stock-warning.active {
    display: flex;
}
.stock-warning svg {
    height: 20px;
    width: auto;
    flex: none;
}
.stock-message {
    display: flex;
    border-radius: 50px;
    background-color: var(--lightgreen);
    padding: 12px 17px;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    background-color: var(--lightgreen);
    border: solid 1px #c5e0cb;
    margin: 0 0 20px;
    visibility: hidden;
}
.stock-message:not(.active):after {
    content: "Loading";
}
.stock-message.active {
    visibility: visible;
}
.stock-message.lowstock {
    background-color: #f5c344;
    color: #000;
    border-color: #f5c344;
}
.stock-message.notinstock {
    color: #b8362e;
    border: solid 1px #b8362e;
    background-color: #fbeae7;
}
.stock-message:before {
    content: "";
    width: 10px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--good);
    outline: 3px solid #d0e0d6;
    flex: none;
}
.stock-message.lowstock:before {
    background-color: var(--mediumgood);
    outline-color: #fff;
}
.stock-message.notinstock:before {
    background-color: var(--warning);
    outline-color: red;
}
.stock-message .nextdeliverytime {
    text-transform: lowercase;
}

#order-summary .stock-message {
    margin: 5px 0 7px;
    padding: 4px 9px;
    font-size: 12px;
}
#order-summary .stock-message:before {
    width: 7px;
}

.qa-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.qa-ask-container {
    border-radius: var(--rounded);
    background-color: var(--dark);
    color: #fff;
    padding: 20px;
}
.qa-ask-container .headline {
    align-items: flex-start;
    margin: 0 0 5px;
}
.qa-ask-container .qa-popup-button.button {
    color: var(--dark);
    background-color: #fff;
    margin-top: 10px;
}

.qapopup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.qapopup-form label {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.qa-container [itemtype*="FAQPage"] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.qa-container [itemtype*="FAQPage"]:not(.open) > :nth-child(n+3) {
    display: none;
}
.qa-container [itemtype*="Question"] {
    background-color: var(--ultralight);
    padding: 7px 17px;
    border-radius: var(--rounded);
}
.qa-container [itemtype*="Question"] > * {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
}
.qa-container [itemtype*="Question"] > :not(:last-child) {
    border-bottom: solid 1px var(--light);
}
.qa-container > .button {
    align-self: flex-start;
}
.qa-header .headline {
    margin: 0 0 15px;
    color: var(--dark);
    align-items: flex-start;
}
.qa-header-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.qa-header-info strong {
    color: var(--dark);
}
.faq-avatar {
    flex: none;
    width: 40px;
    height: auto;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    background-color: #953d6a;
    border-radius: 50%;
    overflow: hidden;
    color: #fff;
}
.faq-avatar img {
    aspect-ratio: 1/1;
}
.faq-question [itemprop="name"] {
    font-weight: bold;
}
.faq-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: auto;
}
.faq-info-row {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 11px;
    justify-content: flex-start;
}
.faq-info-name {
    font-weight: bold;
    color: var(--dark);
}
.faq-info-name:before {
    padding-right: 4px;
    color: #000;
    font-weight: normal;
}

.fancybox__content.sizeguide-dialog {
    width: 700px;
    max-width: 90vw;
}
.sizeguide-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sizeguide-title {
    font-size: 25px;
    font-weight: bold;
}
.sizeguide-section-title {
    font-size: 18px;
    font-weight: bold;
    color: #484848;
}
.sizeguide-textimage {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sizeguide-textimage > .col {
    flex: auto;
    max-width: 50%;
}
.sizeguide-table table {
    border-collapse: collapse;
    max-width: 100%;
}
.sizeguide-table table tr > * {
    padding: 5px 10px;
    text-align: left;
    border: solid 1px #ccc;
}
.sizeguide-table table thead tr > * {
    font-weight: bold;
}
.sizeguide-video iframe {
    aspect-ratio: 16/9;
    width: 100%;
}


.bundle-products-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 0 20px;
    width: 500px;
    max-width: 100%;
}
.bundle-product-row {
    display: flex;
    border-radius: var(--rounded);
    border: solid 2px var(--dark);
    padding: 15px;
    position: relative;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    position: relative;
}
.bundle-product-row .bundle-soldout {
    position: absolute;
    top: 0;
    left: 15px;
    transform: translateY(-50%);
    border-radius: 30px;
    background-color: #b8362e;
    padding: 4px 10px;
    color: #fff;
}
.bundle-product-row:not(:last-child):after {
    content: "+";
    position: absolute;
    top: calc(100% + 3px);
    left: 50%;
    transform: translate(-50%,0);
    font-size: 25px;
    line-height: 1;
    color: var(--dark);
}
.bundle-product-quantity {
    position: absolute;
    top: 0;
    right: 30px;
    transform: translateY(-50%);
    border-radius: 30px;
    background-color: var(--dark);
    padding: 4px 10px;
    color: #fff;
    text-transform: lowercase;
}
.bundle-product-quantity-symbol {
    padding-left: 3px;
}
.bundle-product-image {
    flex: none;
    width: 25%;
    max-width: 80px;
}
.bundle-product-image img {
    border-radius: 8px;
    border: solid 1px var(--dark);
    padding: 1px;
}
.bundle-product-details {
    flex: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.bundle-product-name a {
    text-decoration: none;
    font-weight: bold;
}
.bundle-product-short-description:empty {
    display: none;
}

.floating-buy {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--light);
    border-top: solid 1px #ded9d0;
    padding: 5vw 0;
    z-index: 999;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.2s ease;
}
.floating-buy .container {
    display: flex;
    gap: 15px;
}



/* === Flyttet fra @media (max-width:1000px) – mobile-first base === */


[data-slideshow].maxheight:empty,
[data-slideshow].maxheight,
[data-slideshow].maxheight img,
[data-slideshow].maxheight video {
    aspect-ratio: 377 / 444;
}
[data-slideshow].maxheight img,
[data-slideshow].maxheight video {
    height: auto;
}

header .shoplogo {
    margin-right: auto;
}

.webshop-productlist [id*="bp_ProductCarousel_"]:empty {
    aspect-ratio: 358 / 374;
}
.topcats > * {
    width: 100%;
    flex: none;
}
.topcats > :nth-child(1) {
    aspect-ratio: auto;
}
.topcats [data-slideshow] img,
.topcats [data-slideshow] video {
    aspect-ratio: 100 / 60;
}
.flex > img {
    width: 100%;
}



.highlights .headline {
    margin: 20px 0 10px;
}

.webshop-productlist main.container {
    padding-top: 0;
    padding-bottom: 0;
}
.webshop-productlist .list-content {
    padding-bottom: 5vw;
}
.webshop-productinfo main.container {
    max-width: 100%;
}


[data-slideshow].fullheight img,
[data-slideshow].fullheight video {
    height: var(--fullheight);    
}
table.loyalty_signup_table > tbody > tr > td:first-child > form.loyalty_signup_form div.submit {
    width: 100%;
}
table.loyalty_signup_table > tbody > tr > td:first-child > form.loyalty_signup_form .button {
    display: flex;
}
.nice.boxes > img {
    order: 1
}
.nice > br:first-child {
    display: none
}
.nice.space, .nice.boxes.space > * {
    margin: 0 0 20px
}
.nice.boxes > div {
    padding-right: 0;
    padding-left: 0
}
.nice.boxes > img + br + div {
    padding-left: 0
}
.welcome > div > div {
    width: 100%;
    padding: 15px 0 0;
}

.newsletterbox .container > * {
    width: 100%;
}
.usp.swiper:not(.swiper-initialized) .swiper-wrapper > :nth-child(n+2) {
    display: none;
}

header .container > * {
    order: 1;
}
header .shortcuts > * > span > span {
    display: none;
}






.showbasket > *,
.showbasket > .summary {
    flex: none;
    width: 100%;
    margin: 0;
}
div.cookie-policy-consents-container > div {
    flex: none;
    width: 50%;
}
div.cookie-policy-consents-container > div:nth-child(-n+2) {
    border-bottom: solid 1px #d4d4d4;
}
div.cookie-policy-accept-buttons-container > input {
    padding: 10px 15px;
}




/*
.webshop-productlist:not(.webshop-subcat):not(.bloglist) main.container {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
}
*/
.list-content {
    border-top: solid 1px #e0d9cc
}
/*
.btn-filter {
    display: flex;
    color:rgba(255,255,255,1.00);
    background-color:rgba(0,0,0,1.00);
    flex: auto;
    gap: 8px;
    border-radius: var(--rounded);
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 15px;
    white-space: nowrap;
}
.btn-filter svg {
    width: 15px;
    height: auto;
}
    */
.bloglist .listtools {
    display: none;
}
.listtools {
    padding-top: var(--space);
    padding-bottom: var(--space);
    display: flex;
    gap: 10px;
    
    align-items: center;
    
    position: relative;
    z-index: 5;
}
.listtools .products-found {
    margin-left: auto;
}

.active-filters {
    margin-top: calc((var(--space) * -1) / 2);
    margin-bottom: var(--space);
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}
.active-filters > * {
    border-radius: 30px;
    padding: 4px 10px;
    background-color: var(--accent);
    color: #fff;
    display: flex;
    gap: 4px;
    position: relative;
    cursor: pointer;
    user-select: none;
}
.active-filters > *:after {
    content: "✕";
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #000;
    color: #fff;
    height: 14px;
    width: auto;
    aspect-ratio: 1/1;
    line-height: 1;
    font-size: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.productcard > * {
    width: 100%;
    max-width: 100%;
    min-width: 10px;
}

#BUYSECTION > * {
    height: 50px;
}
#BUYSECTION [type="submit"] > svg {
    width: 20px;
}




.minibasket .shippingCountdown, .minibasket .shippingCountdown.redeemed {
    padding-top: 10px;
}
.minibasket > * {
    flex: none;
}
.minibasket .bottom {
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.minibasket .linescontainer {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: none;
}
.minibasket .line .price {
    display: block;
}
.minibasket .line > .lineinfo {
    flex: auto;
}
.minibasket .basket-usp, .minibasket .trustpilot-widget, .minibasket .pointsinfo {
    display: none;
}
.basketclosebutton {
    position: relative;
    left: auto;
    top: auto;
}
.minibasket [data-yesoffers] {
    padding-bottom: 20px;
}
.minibasket [data-yesoffers] .yesofferproducts > .yesitem:nth-child(n+2) {
    display: none;
}

.action-sheet {
    transition: all 0.2s ease;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 120%);
    width: 600px;
    max-width: 100%;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 0 10px rgba(0,0,0,0);
    display: flex;
    flex-direction: column;
    background-color: #fff;
    z-index: 40;
    min-height: 500px;
    max-height: calc(100vh - 100px);
}
.action-sheet.active {
    box-shadow: 0 0 250px rgba(0,0,0,.4);
    transform: translate(-50%, 0);
}
.action-sheet-header {
    display: flex;
    flex: none;
    border-bottom: solid 1px var(--light);
}
.action-sheet-title {
    flex: auto;
    text-align: center;
    padding: 20px 0 20px 80px;
    font-weight: bold;
    font-size: 15px;
}
.action-sheet-close {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 80px;
}
.action-sheet-close:before {
    content: "✕";
    line-height: 1;
    font-size: 18px;
    color: #000;
    cursor: pointer;
}
.action-sheet-content {
    flex: auto;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    overflow-x: hidden;
}
.action-sheet-footer {
    flex: none;
    display: flex;
    padding: 20px;
    border-top: solid 1px var(--light);
    gap: 20px;
}
.action-sheet-footer > * {
    flex: auto;
}
.action-sheet-footer .button.reset {
    border: solid 1px var(--dark);
    background-color: #f5f5f5;
    color: #000;
}
.action-sheet-footer .button.reset:not(.active) {
    opacity: 0.2;
    pointer-events: none;
    filter: grayscale();
}
.action-sheet.sorting .action-sheet-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.action-sheet.sorting .action-sheet-content .button:not(.active) {
    color: #000;
    border: solid 1px #000;
    background-color: #fff;
}

.btn-filter .count,
.btn-sort .count {
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    line-height: 1;
    font-weight: normal;
    transform: translate(-30%, -30%);
}
.btn-filter .count:empty,
.btn-sort .count:empty  {
    display: none;
}

.SubCats_Categories_DIV {
    display: none;
}
.brands-container {
    display: flex;
    flex-direction: column;
    gap: 25px
}


.favorites-container {
    background-color: var(--light);
    border-bottom: solid 1px #ded9d0;
}
.favorites-container:not(.active) {
    display: none;
}
.favorites-container .container {
    padding-top: var(--space);
    padding-bottom: var(--space);
}
.favorites-container .smallheader {
    margin-bottom: 15px;
}
.favorites-container .overflowscroll-mobile {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    
}
.favorites-container .favorite-item {
    width: calc(150px - 7px);
    max-width: 30vw;
    flex: none;
    border: solid 1px #e0d9cc;
    border-radius: var(--rounded);
    overflow: hidden;
    background-color: rgba(255, 255, 255, 1.00);
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.favorites-container .favorite-item .delete-button {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 25;
    display: flex;
    width: 25px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 1.00);
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    cursor: pointer;
    user-select: none;
}
.favorites-container .favorite-item .delete-button svg {
    display: block;
    fill: #FFF;
    width: 12px;
    height: auto;
    margin: 0;
    cursor: pointer;
}
.favorites-container .favorite-item .image {
    flex: none;
}
.favorites-container .favorite-item .image img {
    width: 100%;
    aspect-ratio: 1/1;
}
.favorites-container .favorite-item .name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 10px;
    flex: auto;
}

.lastviewed-container:not(.active) {
    display: none;
}
.minibasket .lastviewed-container {
    padding-top: 20px;
    padding-bottom: 20px;
}

.bp_lsaDropdown .bp_lsaCategoriesList > .bp_lsaCategory:nth-child(n+11),
.bp_lsaDropdown .bp_lsaBrandsList > .bp_lsaBrand:nth-child(n+11) {
    display: none;
}

div[id*="trustbadge-container-"] {
    z-index: 30 !important;
}

/* === Slut på flyttede mobil-regler === */
@media (min-width: 1001px) {

    :root {
        --buttonfont: 16px;
        --buttonminheight: 45px;
    }
    body, input, select, textarea, button {
        font-size: 14px;
    }
    

    body *.hideondesktop {
		display: none;
	}
    .centerdesktop {
        text-align: center;
        justify-content: center;
    }
    
    .fullwidth-mobile div.bp_swiper-button:not(.swiper-button-lock) {
        display: flex;
    }
    
    header .container > .search-form {
        order: 1;
        width: auto;
        margin: 0;
        flex: auto;
    }

    
    .custom-variants .loading-variants {
        aspect-ratio: 704 / 185;
    }

    .shipping-countdown .bar {
        display: flex;
        max-width: none;
        margin: 0 35px;
    }
    .sizeguide-textimage {
        flex-direction: row;
        gap: 30px;
    }
    
    .highlight-box:has(.brands-slider) 

    #Content_Productlist .bp_relatedproductsHeader {
        text-align: center;
        justify-content: center;
    }

    .menudesktop {
        display: flex;
        align-items: center;
        flex: auto;
        background-color: var(--ultralight);
    }
    
    
	#ProductMenu_List a {
		text-decoration: none;
	}
	#ProductMenu_List {
		align-items: center;
		display: flex;
		padding: 0;
		margin: 0;
		list-style-type: none;
        justify-content: space-between;
        flex: auto;
        position: relative;
	}
    #ProductMenu_List > li {
        flex: none;
        
    }
    #ProductMenu_List > li:not(:has(.SubCategory1_Productmenu.has-dropdown)) {
        position: relative;
    }

	#ProductMenu_List > li > a {
		position: relative;
		display: flex;
		height: 100%;
		justify-content: center;
		padding: 13px 0;
		
		transition: ease .3s;
        white-space: nowrap;
        text-transform: uppercase;
        
	}
    #ProductMenu_List > li.has-dropdown > a:not([href*="-50s1.html"]) {
        background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0iIzI2NDE0MSI+CiAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNNS4yMiA4LjIyYS43NS43NSAwIDAgMSAxLjA2IDBMMTAgMTEuOTRsMy43Mi0zLjcyYS43NS43NSAwIDEgMSAxLjA2IDEuMDZsLTQuMjUgNC4yNWEuNzUuNzUgMCAwIDEtMS4wNiAwTDUuMjIgOS4yOGEuNzUuNzUgMCAwIDEgMC0xLjA2WiIgY2xpcC1ydWxlPSJldmVub2RkIiAvPgo8L3N2Zz4=");
        background-position: 100% 50%;
        background-size: 17px auto;
        background-repeat: no-repeat;
        padding-right: 19px;
    }
    #ProductMenu_List > li > a,
    #ProductMenu_List > li > a > .ProductMenu_MenuItemBold {
        font-weight: bold;
    }
	#ProductMenu_List > li:hover > a {
		color: #455852;
	}
    
    #ProductMenu_List > li > a[href*="-ALL-1.html"],
    #ProductMenu_List > li > a[href*="-50s1.html"] {
        padding: 6px 17px;
        background-color: #000;
        border-radius: 30px;
        color: rgba(255,255,255,1.00);
    }
    #ProductMenu_List > li > a[href*="-50s1.html"] {
        background-color: var(--discount);
        color: #000;
    }
    #ProductMenu_List > li > a[href*="news-ALL-1.html"] {
        background-color: var(--dark);
    }
    #ProductMenu_List > li > a[href*="specialoffer-ALL-1.html"] {
        background-color: var(--accent);
    }
    
   
    #ProductMenu_List > li > ul {
        opacity: 0;
        transition: all .3s ease;
        margin: 0;
        list-style-type: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-radius: var(--rounded);
        background-color: rgba(255,255,255,1.00);
        padding: 20px 30px;
        min-width: 200px;
        box-shadow: 0 10px 30px rgba(0,0,0,.1);
        pointer-events: none;
        display: flex;
        flex-direction: column;

        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: calc(100vh - 200px);
        border: solid 1px #d1d1d1;
        background: linear-gradient(180deg,rgba(255, 255, 255, 1) 47%, rgba(239, 241, 241, 1) 100%);
    }
    #ProductMenu_List > li > ul:has(.has-dropdown) {
        width: var(--container);
        max-width: 94vw;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(max(190px, 250px), 1fr));
        gap: 30px;
        padding: 30px;
    }
    #ProductMenu_List > li > ul:has(.has-dropdown) > li.brands-li {
        /* Fylder 2 rækker i højden i stedet for 1 */
        grid-row: span 2;
        grid-column: span 2;
    }

    
    #ProductMenu_List > li > ul > li > a {
        text-decoration: none;
        display: block;
        white-space: nowrap;
    }
    
    #ProductMenu_List > li > ul:not(:has(.has-dropdown)) > li > a {
        padding: 7px 0;
    }
    #ProductMenu_List > li > ul:not(:has(.has-dropdown)) > li:not(:last-child) > a {
        border-bottom: solid 1px rgba(236,236,236,1.00);
        
    }


    #ProductMenu_List > li > ul:has(.has-dropdown) > li > a > .ProductMenu_MenuItemBold {
        color: var(--dark);
        font-size: 17px;
    }
    #ProductMenu_List > li > ul > li > ul .ProductMenu_MenuItemBold {
        font-weight: normal;
    }
    
    #ProductMenu_List > li > ul > li > ul {
        margin: 0;
        padding: 10px 0 0;
        list-style-type: none;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    #ProductMenu_List > li > ul:has(.has-dropdown) > li.brands-li > ul {
        display: block;
        column-count: 2;
        column-gap: 30px;
    }

    #ProductMenu_List > li > ul > li > ul ul {
        display: none;
    }
    
    #ProductMenu_List > li:hover > ul {
		opacity: 1;
        pointer-events: auto;
	}
    
    .flex {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }
    .flex.gap {
        gap: 4vw;
    }
    .highlight-box > .flex {
        align-items: center;
    }
    .link-boxes {
        display: grid;
        /* Altid 3 lige brede kolonner på én række */
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(14px, 1.6vw, 25px);
    }
    .link-box {
        height: 100%;
    }
    

    .usp-list {
        justify-content: center;
        gap: clamp(20px, 3vw, 60px);
    }
    .usp-list > * {
        width: auto;
    }
    .usp-list i {
        width: 55px;
    }
    .usp-list svg {
        width: 70%;
    }
    .usp-list strong {
        white-space: nowrap;
    }

    .quote {
        padding: 7vw 8vw;
    }
    .quote p {
        font-size: 27px;
    }
    
    
    .subcatsslider {
        flex-wrap: wrap;
        gap: 15px;
        padding-bottom: var(--space);
    }

    [id*="bp_ProductCarousel_"]:empty,
    .webshop-productlist [id*="bp_ProductCarousel_"]:empty {
        aspect-ratio: 1700/556;
    }
    
    .productcard.flex {
        justify-content: center;
        padding: 0 2.5vw 5vw;
    }
    .productcard > .cardleft {
        max-width: 710px;
    }
    .productcard > .cardright {
        padding: 2vw;
        max-width: 740px;
        position: relative;
        border-radius: var(--rounded);
        border: solid 1px #ded9d0;
        background-color: #fefcf9;
        align-self: flex-start;
    }
    .productcard > .cardright:before {
        width: 13px;
        height: auto;
        aspect-ratio: 80/100;
        background-color: #ded9d0;
        content: "";
        position: absolute;
        left: 0;
        top: 3.8vw;
        transform: translateX(-100%);
        clip-path: polygon(100% 0, 0 50%, 100% 100%);
    }
    .productcard .images-navigator {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(max(50px, 80px), 1fr));
        gap: clamp(14px, 1.6vw, 25px);
        padding-top: clamp(14px, 1.6vw, 15px);
    }
    
    .stock-message {
        display: inline-flex;
    }
    
    #BUYSECTION {
        flex-direction: row;
    }
    .amountcontainer {
        width: 230px;
    }
    .productcard .swiper.images .swiper-page, .zoom-button {
        bottom: 30px;
    }
    .productcard .swiper.images .zoom-button {
        left: 30px;
    }
    .productcard .swiper.images .swiper-page {
        right: 30px;
    }

    .qa-container-outer .container.faq-container {
        padding: 0;
    }

    .blob-round {
        font-size: 40px;
    }
    .blob-round small {
        font-size: 17px;
    }
    
    .clickcollect-box .flex {
        align-items: center;
    }
    .clickcollect-box .smallheader {
        font-size: clamp(25px, 5vw, 70px);
    }
    .clickcollect-box .smallheader .text-highlight {
        display: block;
    }

    
    
    .product:hover .image:has(img:nth-child(2)) img {
        transform: translateX(-100%);
    }
    .product .buy .button:hover,
    div.bp_lsaFullScreen .bp_lsaProductsList >.bp_lsaProduct .bp_lsaProductButton:hover {
        background-color: rgba(0,0,0,1.00);
        color: rgba(255,255,255,1.00);
    }
    #BUYSECTION [id*="bp_countdown_"] .bp_countdown_message_banner * {
        font-size: 12px;
    }
    #BUYSECTION > *,
    #BUYSECTION [type="submit"],
    #BUYSECTION .button {
        height: 60px;
    }
    #BUYSECTION [type="submit"] {
        font-size: 17px;
    }
    .amountcontainer > * {
        font-size: 17px;
    }

    .qa-container-outer {
        display: grid;
        /* Alle børn bliver til lige brede kolonner på én række,
           uanset hvor mange der er. minmax(0,1fr) frem for bare 1fr,
           så bredt indhold ikke kan presse sin egen kolonne større. */
        grid-auto-flow: column;
        grid-auto-columns: minmax(0, 1fr);
        gap: 20px;
    }
    
    
    .welcome > div:nth-child(2n+1) {
        flex-direction: row-reverse;
    }
    .welcome > div:nth-child(2n+1) > div {
        padding-left: 0;
    }
    .welcome > div:nth-child(2n) > div {
        padding-right: 0;
    }
    
    .productfilter.container {
        width: 100vw;
        max-width: 100vw;
        margin-left: 50%;
        margin-bottom: 30px;
        transform: translateX(-50vw);
        padding: 30px;
        background-color: var(--light);
        position: relative;
        z-index: 5;
    }
    .productfilter.container #ProductFilter-Container {
        margin: 0;
    }

    

    .footerrow {
        display: flex;
        gap: clamp(40px, 5vw, 70px);
        align-items: flex-start;
    }
    .footerrow > * {
        flex: none;
        max-width: 500px;
    }
    .footer-links {
        margin-left: auto;
    }
    .footertitle {
        margin-bottom: 19px;
    }
    
}


@media (max-width: 1000px) {
    
    body *.hideonmobile {
        display: none;
    }

    .cookieSettingsButton {
        left: auto;
        right: 10px;
    }
   
    .fullwidth-mobile {
        width: 100vw;
        max-width: 100vw;
        margin-left: 50% !important;
        transform: translateX(-50vw);
    }
    .fullwidth-mobile .offset-sides-mobile {
        padding-left: 5vw;
        padding-right: 5vw;
    }
    .fullwidth-mobile div.bp_swiper-button {
        display: none;
    }
    .overflowscroll-mobile {
        width: 100vw;
        margin-left: 50%;
        transform: translateX(-50%);
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        overflow-y: hidden;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .favorites-container .overflowscroll-mobile {
        flex-wrap: nowrap;
    }

    .floating-buy.active {
        opacity: 1;
        transform: translateY(0);
    }

    .product .price .badge {
        display: none;
    }

    .subcatsslider {
        padding-left: 5vw;
        padding-right: 5vw;
        padding-bottom: 5vw;
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 5vw;
        justify-content: flex-start;
        gap: 10px;
        -webkit-mask-image: linear-gradient(to right, black 0%, black 90%, transparent 100%);
        mask-image: linear-gradient(to right, black 0%, black 90%, transparent 100%);
    }
    

     
    #ProductmenuContainer_DIV {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 999999;
        background-color: rgba(255,255,255,1.00);
        flex-direction: column;
    }
    #ProductmenuContainer_DIV.active {
        display: flex;
    }

    #ProductMenu_List {
        margin: 0;
        padding: 0;
        list-style-type: none;
        max-width: 100%;
        flex: auto;
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
        overflow-y: auto;
    }
    #ProductMenu_List ul {
        display: none;
    }
    #ProductMenu_List ul.open {
        display: block;
    }
    #ProductMenu_List ul.dropdown {
        list-style-type: none;
        margin: 0;
        padding: 0;
        border-left: solid 4px rgba(0,0,0,1.00);
    }

    #ProductMenu_List > li > a,
    #ProductMenu_List > li > a.button,
    #ProductMenu_List > li > a[href*="news-ALL-1.html"] {
        font-size: 16px;
    }

    #ProductMenu_List li > a,
    #ProductMenu_List > li > a[href*="news-ALL-1.html"] {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        text-decoration: none;
    }
    #ProductMenu_List ul li > a.Activ_ProductMenu, #ProductMenu_List ul li > a.Link_Active_Topmenu {
        color: var(--primary);
    }
    #ProductMenu_List li > a > * {
        flex: auto;
    }
    #ProductMenu_List li:not(:last-child) > a {
        border-bottom: solid 1px rgba(237, 237, 237, 1.00);
    }
    #ProductMenu_List > li > a, #ProductMenu_List > li > a span.ProductMenu_MenuItemBold {
        font-weight: normal;
    }
    #ProductMenu_List li.has-dropdown > a {
        padding: 0;
    }
    #ProductMenu_List li.has-dropdown > a span {
        padding: 15px 20px;
        flex: auto;
        font-weight: normal;
    }
    #ProductMenu_List li.has-dropdown > a > i {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1;
        font-weight: normal;
        font-size: 17px;
        width: 51px;
        padding: 10px;
        height: auto;
        font-style: normal;
        flex: none;
        align-self: stretch;
        color:rgba(0,0,0,1.00);
    }
    #ProductMenu_List li.has-dropdown > a > i:after {
        content: "+";
    }
    #ProductMenu_List li.has-dropdown.active > a > i {
        content: "-";
        background-color:rgba(0,0,0,1.00);
        color: rgba(255, 255, 255, 1.00);
    }
    #ProductMenu_List li.has-dropdown.active > a > i:after {
        content: "-";
    }
    #ProductMenu_List > li > a.button {
        border-radius: 25px;
        margin: 15px 20px;
        min-height: 10px;
        padding: 10px 15px;
        font-weight: bold;
        background-color: var(--good);
        gap: 8px;
    }


    #ProductMenu_List > li > a.button:has(svg) {
        padding-top: 3px;
        padding-bottom: 3px;
        padding-left: 0;
    }
    #ProductMenu_List > li > a.button > svg {
        height: 33px;
        width: auto;
        flex: none;
        padding: 5px 0;;
    }


    .productcard .images-navigator > * {
        width: 90px;
        max-width: 17vw;
    }

    .footerrow {
        display: flex;
        flex-direction: column;
    }
    .footerrow > * {
        flex: none;
    }
    .footerrow > :not(:last-child) {
        padding: 20px 0;
        border-bottom: solid 1px #6a8787;
    }
    .footerrow > :first-child {
        padding-top: 0;
    }
    
    footer .expandable:not(.open) .footertitle + * {
        display: none;
    }
    footer .expandable.open .footertitle + * {
        padding-top: 20px;
        padding-bottom: 30px;
    }
    .footertitle:after {
        content: "+";
        font-size: 30px;
        line-height: 1;
    }
    footer .expandable.open .footertitle:after {
        content: "-";
    }
    footer .expandable:not(.open) > .footertitle {
        margin-bottom: 0;
    }
    .footerrow > * {
        width: 100%;
        max-width: 100%;
    }

    .minibasket .line {
        gap: 13px;
    }
    .minibasket .incdec {
        flex-direction: column;
    }
    
}
@media (max-width: 500px) {
    .shipping-countdown svg {
        display: none;
    }
}
@media (max-width: 400px) {
    .minibasket .bottom .payment-methods img {
        height: 29px;
    }
    .minibasket .lastviewed-container .product .info {
        display: none;
    }
    .minibasket .lastviewed-container .product .image {
        border-radius: var(--rounded);
    }
    .BackGroundColor1_OrderStep4 {
        font-size: 10px;
    }

    /*
    .topbar etrusted-widget {
        display: none;
    }
    */
}