@charset "UTF-8";
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadescalein {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadescaleout {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes fadescale-in-out-delayed {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    transform: scale(1);
    opacity: 0;
  }
  75% {
    transform: scale(0);
    opacity: 0;
  }
}
/* #region  HTML */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: 13px;
}

body, input, textarea, button, select {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

/* #endregion */
/* #region  STRUCTURE */
#site-wrapper > #site-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  transition: right ease 0.25s;
  z-index: 999;
}

#site-wrapper > #site-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  z-index: 999;
  pointer-events: none;
  transition: right ease 0.25s, opacity ease 0.25s;
}

#toggleSidebar:checked + #site-wrapper > #site-sidebar {
  right: 0;
}

#toggleSidebar:checked + #site-wrapper > #site-overlay {
  opacity: 1;
  pointer-events: auto;
  right: 320px;
}

/* #endregion */
/* #region  CONTAINER */
.container {
  width: 1600px !important;
  max-width: 90%;
  display: block;
  margin: 0 auto;
  padding: 0 !important;
}

/* #endregion */
/* #region  SIDEBAR */
#site-sidebar {
  display: flex;
  flex-direction: column;
}

#site-sidebar > .sidebar-close {
  position: absolute;
  top: 16px;
  right: 18px;
  cursor: pointer;
}

#site-sidebar > .sidebar-close > svg {
  width: 20px;
  height: 20px;
}

#site-sidebar > .title {
  padding: 15px 20px;
  border-bottom: 1px solid;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}

#site-sidebar > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#site-sidebar > ul > li {
  border-bottom: 1px dashed;
  margin: 0;
}

#site-sidebar > ul li {
  position: relative;
}

#site-sidebar > ul:last-child > li:last-child {
  border-bottom: none;
}

#site-sidebar > ul > li > a {
  text-decoration: none;
  font-size: 14px;
  color: inherit;
  padding: 15px 20px;
  display: block;
  position: relative;
}

#site-sidebar > ul > li a {
  outline: none;
}

#site-sidebar > ul > li.has-dropdown > a {
  display: flex;
  align-items: center;
}

#site-sidebar > ul li.has-dropdown > a > .item-arrow {
  position: absolute;
  width: 50px;
  height: 47px;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#site-sidebar > ul li.has-dropdown > ul li > a > .item-arrow {
  height: 27px;
}

#site-sidebar > ul li.has-dropdown > a > .item-arrow > svg {
  width: 14px;
  height: 14px;
}

#site-sidebar > ul > li > ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 20px;
  border-left: 3px solid;
  border-color: inherit;
}

#site-sidebar > ul > li ul {
  display: none;
}

#site-sidebar > ul > li > ul > li > a {
  padding: 5px 0 5px 20px;
  display: block;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
}

#site-sidebar > ul > li > ul > li > ul {
  list-style: none;
  margin: 0 0 0 20px;
  border-left: 3px solid;
  border-color: inherit;
}

#site-sidebar > ul > li > ul > li > ul > li > a {
  padding: 5px 0 5px 20px;
  display: block;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
}

#site-sidebar > ul > li > ul > li > ul > li > ul {
  display: none;
}

#site-sidebar > .sidebar-widgets {
  width: 100%;
  display: flex;
  position: relative;
  margin-top: auto;
  padding: 20px;
}

#site-sidebar > .sidebar-widgets > div:first-child {
  margin-right: 10px;
}

#site-sidebar > .sidebar-widgets .dropdown {
  position: static;
}

#site-sidebar > .sidebar-widgets .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  z-index: 1;
  background-color: #fff;
}

#site-sidebar > ul > li > ul > li .item-arrow {
  display: none !important;
}

#site-sidebar > ul > li > ul > li > ul > li .menu {
  display: none;
}

/* #endregion */
/* #region  MENU */
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu > li {
  margin: 0;
}

.menu.menu-inline {
  display: flex;
  align-items: center;
  margin: 0 -0.8em;
}

.menu.menu-inline > li {
  margin: 0 0.8em;
}

/* #endregion */
/* #region  GENERAL STYLING */
a {
  text-decoration: none;
}

.comment-form {
  padding-bottom: 1em;
}

.m-calendar-list .t-border-bottom > li,
.m-calendar-list .t-striped > li,
.m-cart .t-border-bottom > li,
.m-cart .t-striped > li,
.m-my-orders .t-border-bottom > li,
.m-my-orders .t-striped > li,
.m-options .t-border-bottom > li,
.m-options .t-striped > li,
.m-order .t-border-bottom > li,
.m-order .t-striped > li,
.m-order-form .t-border-bottom > li,
.m-order-form .t-striped > li,
.m-product-additionals .t-border-bottom > li,
.m-product-additionals .t-striped > li,
.m-product-package .t-border-bottom > li,
.m-product-package .t-striped > li,
.m-product-packet .t-border-bottom > li,
.m-product-packet .t-striped > li,
.m-top-products .t-border-bottom > li,
.m-top-products .t-striped > li,
.m-user-orders .t-border-bottom > li,
.m-user-orders .t-striped > li,
.m-wishlist .t-border-bottom > li,
.m-wishlist .t-striped > li {
  padding: 1em;
}

/* #endregion */
/****************/
/***| XSMALL |***/
/****************/
/* #region  NAVBAR */
.navbar {
  width: 100%;
  z-index: 99;
  position: sticky;
  top: 0;
}

/* Productmenu (desktop megamenu bar) — hidden on tablet/mobile, shown from 1281px */
.productmenu-container {
  display: none;
}

.navbar .navbar-content {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
}

.navbar .navbar-content > .navbar-left,
.navbar .navbar-content > .navbar-center,
.navbar .navbar-content > .navbar-right {
  flex: 2;
  display: flex;
}

.navbar .navbar-content > .navbar-center {
  justify-content: flex-start;
  display: none;
}

.navbar .navbar-content > .navbar-right {
  justify-content: flex-end;
}

.navbar .navbar-icons > li {
  position: relative;
}

.navbar .navbar-icons > li.mobile-menu > label {
  cursor: pointer;
}

.navbar .navbar-icons > li > * {
  display: flex;
  align-items: center;
  color: inherit;
}

.navbar .navbar-icons > li > style {
  display: none;
}

.navbar .navbar-icons > li > i,
.navbar .navbar-icons > li i.count-bubble {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  font-size: 0.75em;
  font-style: normal;
  position: absolute;
  top: -1em;
  right: -1em;
  justify-content: center;
  display: flex;
  align-items: center;
}

.navbar .navbar-icons svg {
  width: 20px;
  height: 20px;
}

/* Moms-skifter i headeren - tilpasser select-bredden til indholdet */
.navbar .navbar-icons > li.w-vat-item select.form-select.form-input.xsmall {
  width: auto;
  background-position: top 50% right 6px;
  padding-right: 24px !important;
}

/* #endregion */
/* #region  TOOLBAR */
.toolbar {
  margin-top: 15px;
}

.toolbar .m-print svg {
  width: 16px;
  height: 16px;
}

/* #endregion */
/* #region  SITE CONTENT */
.page-content {
  margin-top: 15px;
  margin-bottom: 40px;
}

.section {
  padding: 15px 0;
}

/* #endregion */
/* #region  PAGE TITLE */
.page-title {
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 770px) {
  .page-title {
    margin-bottom: 15px;
  }
}

.page-title > * {
  margin: 0;
}

/* #endregion */
.m-text-frontpage {
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* #region  FOOTER */
.footer {
  font-size: 14px;
}

.footer .footer-content > div {
  padding: 15px 0;
  max-width: 600px;
}

.footer .footer-content > div > strong {
  display: block;
  margin-bottom: 1em;
  font-size: 18px;
}

.footer .footer-content .form-group {
  margin-bottom: 0.75em;
}

.footer .footer-content .socials svg {
  width: 20px;
  height: 20px;
}

.footer .menu > li.has-dropdown .item-arrow,
.footer .menu > li.has-dropdown > a {
  display: none;
}

.footer .w-newsletter-signup .input-group a {
  color: inherit !important;
}

.footer .footer-bottom {
  padding: 0 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 770px) {
  .footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

.footer .footer-bottom > span {
  display: block;
  text-align: center;
}

.footer .footer-bottom > span img {
  margin: 0;
}

.footer .payment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}

.footer .payment-icons img {
  margin: 0;
}

.footer-credits,
.footer-credits-details {
  display: flex;
  gap: 15px;
}
@media (max-width: 770px) {
  .footer-credits,
  .footer-credits-details {
    flex-direction: column;
  }
}

/* CONTACTS */
.footer .contacts {
  list-style: none;
  padding: 0;
}

.footer .contacts > li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer .contacts > li > svg {
  width: 20px;
}

.footer .contacts > li > div {
  padding-left: 15px;
}

.footer .contacts > li > div strong {
  display: block;
  margin-bottom: 5px;
}

/* #endregion */
/***| WIDGETS |***/
/* #region  LOGO */
.w-logo {
  text-decoration: none;
  line-height: 100%;
  display: block;
  max-width: 40vw;
}

.w-logo .w-logo-text {
  font-size: 18px;
  font-weight: bold;
  display: block;
  line-height: 120%;
}

.w-logo .w-logo-img {
  display: block;
  max-height: 60px;
  max-width: 100%;
  margin: 0;
}

/* #endregion */
/* #region  SEARCH */
.w-search {
  width: 430px;
  max-width: 27vw;
}

.w-search .w-search-form {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
  position: relative;
}

.w-search .w-search-form .w-search-input {
  width: 100%;
  border: solid 1px rgba(0, 0, 0, 0.06);
  height: 44px;
  border-radius: 40px;
  background: transparent;
  outline: none;
  color: inherit;
  padding: 0 60px 0 22px;
}

.w-search .w-search-form .w-search-submit {
  display: flex;
  align-self: stretch;
  align-items: center;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  height: 100%;
  width: 55px;
  justify-content: center;
}

.w-search .w-search-form .w-search-submit svg {
  display: block;
  width: auto;
  height: 55%;
  max-height: 20px;
}

/* #endregion */
/* #region  SLICK */
.w-slick {
  width: 100%;
  position: relative;
}

.w-slick .w-slick-figure {
  position: relative;
}

.w-slick .w-slick-figure .w-slick-figure-placeholder {
  position: relative;
}

.w-slick .w-slick-figure .w-slick-figure-placeholder .w-slick-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.w-slick .w-slick-next,
.w-slick .w-slick-prev {
  display: flex !important;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}

.w-slick .w-slick-next {
  right: 0;
}

.w-slick .w-slick-prev {
  left: 0;
}

.w-slick .w-slick-next svg,
.w-slick .w-slick-prev svg {
  width: 16px;
}

.w-slick .w-slick-caption > div {
  padding: 15px 0;
}

.w-slick .w-slick-caption > div > * {
  margin: 0;
}

.w-slick.hero .w-slick-item-hero {
  display: block;
}

.w-slick.hero .w-slick-item-hero > figure {
  display: flex;
}

.w-slick.hero .w-slick-item-hero > figure > figcaption {
  flex: none;
  gap: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  max-width: 800px;
  margin-left: auto;
  padding: 5vw;
}

.w-slick.hero .w-slick-item-hero > figure > figcaption .w-slick-caption-text {
  text-transform: uppercase;
  font-size: 18px;
  text-wrap: balance;
  hyphens: auto;
}

.w-slick.hero .w-slick-item-hero > figure > figcaption .w-slick-caption-title {
  font-size: clamp(25px, 5vw, 80px);
  font-weight: bold;
  text-transform: uppercase;
}

.w-slick.hero .w-slick-item-hero > figure > picture {
  flex: none;
  width: 50%;
}

.w-slick.hero .w-slick-item-hero > figure > picture img {
  margin: 0;
  width: 100%;
  max-height: calc(100vh - 300px);
  object-fit: cover;
}

/* #endregion */
/* #region  USP */
.w-usp {
  display: block;
  background-color: #f6f6f6;
}

.w-usp-items {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.w-usp-items .w-usp-item {
  color: inherit;
  padding: 10px 0;
  display: flex;
  gap: 5px;
  align-items: center;
  flex: none;
}

/* Responsive visibility — base/small: 2 (icons only), medium+: 3, large+: 4 */
.w-usp-items .w-usp-item:nth-child(n+3) {
  display: none;
}

.w-usp-items .w-usp-item svg {
  width: 17px;
  height: auto;
  display: block;
}

.w-usp-items .w-usp-item .w-usp-content {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 7px;
}

.w-usp-items .w-usp-item .w-usp-content strong {
  display: block;
}

.w-usp-items .w-usp-item .w-usp-content small {
  color: inherit;
  font-size: inherit;
  display: none;
}

/* #endregion */
/* #region  NOTIFICATIONS */
.w-notification {
  margin: 0 0 1em 0;
}

/* #endregion */
/* #region  LOGIN */
.w-login {
  margin-bottom: 0;
}

/* #endregion */
/* #region  CURRENCY / LANGUAGE */
.w-currency .dropdown-container,
.w-language .dropdown-container {
  padding: 0.5em;
  border: none;
}

.w-language .button > span {
  margin-right: 0.5em;
}

.dropdown-container {
  background-color: #fff !important;
}

.dropdown-container li > a {
  color: #000 !important;
}

/* #endregion */
/* #region  BASKET */
.basket .miniBasket {
  display: none;
}

.basket .miniBasket > .m-cart-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* #endregion */
/* #region  PAGINATION */
.w-pagination {
  padding: 15px 0 30px;
}

/* #endregion */
/* #region  OVERLAY */
.w-overlay.container {
  padding: 30px !important;
}

/* #endregion */
/* #region  COOKIE */
.w-cookie {
  padding: 20px 0;
}

.w-cookie .w-cookie-modal {
  max-height: 100%;
  overflow: auto;
}

.w-cookie .w-cookie-consent {
  padding: 20px;
  margin: 0;
}

.w-cookie .w-cookie-actions {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0 20px;
}

.w-cookie .w-cookie-actions button {
  margin: 10px 0;
}

/* #endregion */
/***| MODULES |***/
/* #region  TEXT */
.m-text a {
  text-decoration: underline;
}

/* #endregion */
/***| USER |***/
/* #region  WISHLIST */
.m-wishlist .m-wishlist-headline {
  text-align: left;
}

.m-wishlist .m-wishlist-headline::after {
  left: 0;
  transform: none;
}

/* #endregion */
/* #region  LOGIN */
.m-userlogin {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* #endregion */
/***| PRODUCT |***/
/* #region  PRODUCTLIST */
.m-productlist-wrapper .m-productlist-categories {
  margin: 2em 0 4em;
}

.m-productlist-wrapper aside {
  display: none !important;
}

/* Override Dandomain's float-based grid for productlist rows — use flex-wrap
   so uneven card heights don't make later items hang on the right side. */
.row:has(> .productItem) {
  display: flex;
  flex-wrap: wrap;
}

.row:has(> .productItem) > .productItem {
  float: none;
}

.m-productlist-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Category description block above the product list */
.category-description {
  position: relative;
  background-color: #f7f7f5;
  padding: 32px 36px 32px 44px;
  border-radius: 8px;
  margin: 0;
}
@media (max-width: 770px) {
  .category-description {
    padding: 25px;
  }
}

/*
.category-description::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 20px;
    width: 3px;
    background-color: #d76717;
    border-radius: 2px;
}
.category-description br:first-child {
    display: none;
}
.category-description .Description_Productlist {
    display: inline-block;
    color: #d76717;
    font-weight: 700;
    font-size: 16px;
    margin: 0 10px 0 0;
    line-height: 1;
    transform: translateY(-1px);
}
*/
/* #endregion */
.stepBox .conditions .termsAndConditionsContainer {
  margin: 20px 0;
}

/* #region  PRODUCTLIST ITEM */
/* Reset Dandomain default borders/backgrounds */
.productItem .type-col,
.productItem .type-row,
.productItem .type-col .product-transaction,
.productItem .type-row .product-transaction,
.productItem .type-col .product-action {
  border-color: transparent !important;
  background-color: transparent !important;
}

.productItem .type-col .product-transaction {
  border: 0 !important;
}

.productItem .type-col {
  height: 100%;
}

/* Spacing between cards in the grid */
.productItem.m-productlist-list-item {
  margin-bottom: 40px;
}

/* CARD container (article) — minimal, airy, fashion-style */
.type-col .m-productlist-item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: transparent;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.3s ease;
}

.type-col .m-productlist-item:hover {
  transform: translateY(-2px);
}

.type-col .m-productlist-item > form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* IMAGE area — simple aspect-ratio 1/1, no positioning tricks */
.type-col .m-productlist-item .m-productlist-figure {
  position: relative;
  margin: 0 0 18px;
  background-color: #f7f7f5;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

/* Generic image overlay utility — adds a very subtle dark wash on top */
.imageoverlay {
  position: relative;
}

.imageoverlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.02);
  pointer-events: none;
  z-index: 1;
}

.type-col .m-productlist-item:hover .m-productlist-figure {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.type-col .m-productlist-item .m-productlist-figure .m-productlist-link {
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
}

.type-col .m-productlist-item .m-productlist-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #fff;
  object-fit: scale-down;
  margin: 0;
  padding: 0;
  transition: transform 0.5s ease;
}

.type-col .m-productlist-item:hover .m-productlist-image {
  transform: scale(1.03);
}

/* BADGES on image (NEW / SALE / SOLD OUT) — fashion-style minimal */
.type-col .m-productlist-item .m-productlist-splash {
  margin: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  pointer-events: none;
}

.type-col .m-productlist-item .m-productlist-splash .badge {
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  line-height: 1.4;
  border: 0;
}

/* CONTENT block (title, description, stars) — clean, airy */
.type-col .m-productlist-item .product-description {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.type-col .m-productlist-item .m-productlist-heading {
  margin: 0;
}

.type-col .m-productlist-item .m-productlist-heading > a {
  text-decoration: none;
}

.type-col .m-productlist-item .m-productlist-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.2px;
  color: #262613;
  transition: color 0.15s ease;
}

/*
.type-col .m-productlist-item:hover .m-productlist-title {
    color: #59592d;
}
*/
.type-col .m-productlist-item .m-productlist-itemNumber {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.type-col .m-productlist-item .m-productlist-brand {
  opacity: 0.6;
}

.type-col .m-productlist-item .m-productlist-description {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 4px 0 0;
}

.type-col .m-productlist-item .m-reviews-stars {
  margin: 6px 0 0;
  font-size: 12px;
}

/* PRICE section — prominent but not loud */
.type-col .m-productlist-item .m-productlist-transactions {
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  background: transparent;
}

.type-col .m-productlist-item .m-productlist-transactions .variants {
  margin-bottom: auto;
  padding-bottom: 10px;
  width: 100%;
}

.type-col .m-productlist-item .m-productlist-discount {
  margin: 0 0 2px;
}

.type-col .m-productlist-item .m-productlist-price-before-discount {
  font-size: 13px;
  color: #999;
  font-weight: 400;
}

.type-col .m-productlist-item .m-productlist-price {
  font-size: 17px;
  font-weight: 600;
  color: #262613;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.type-col .m-productlist-item .product-various-price-info {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}

.type-col .m-productlist-item .m-productlist-vat {
  font-size: 11px;
  color: #999;
}

.type-col .m-productlist-item .m-productlist-variants {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

/* ACTION (amount + buy button) — flex chain so input & button match height */
.type-col .m-productlist-item .product-action {
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  align-items: stretch;
  gap: 8px;
  background: transparent;
  border: none;
}

.type-col .m-productlist-item .product-action .m-productlist-tractions-amount {
  width: 60px;
  flex: none;
  display: flex;
}

.type-col .m-productlist-item .product-action .m-productlist-tractions-button {
  flex: auto;
  display: flex;
}

.type-col .m-productlist-item .product-action .form-group {
  margin: 0;
  padding: 0;
  border: 0;
  flex: 1;
  display: flex;
}

.type-col .m-productlist-item .product-action .m-productlist-input,
.type-col .m-productlist-item .product-action .button-primary {
  flex: 1;
  width: 100%;
  height: 35px;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  box-sizing: border-box;
  line-height: 1.2;
}

.type-col .m-productlist-item .product-action .m-productlist-input {
  text-align: center;
}

/* Row-type (list view) — keep existing minimal styling */
.type-row .m-productlist-item .m-productlist-transactions {
  display: flex;
}

.type-row .m-productlist-item .m-productlist-transactions .transactions-amount {
  width: 50px;
  flex: none;
}

.type-row .m-productlist-item .m-productlist-transactions .m-productlist-transactions-button {
  width: 100%;
  flex: auto;
}

/* #endregion */
/* #region  PRODUCTCARD */
.m-product .m-product-nav .m-product-nav-share a,
.m-product .m-product-nav-cycle a {
  padding: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.m-product .m-product-nav .m-product-nav-share a > svg,
.m-product .m-product-nav-cycle a > svg {
  width: 12px;
  height: 12px;
}

.m-product .m-product-image .thumbelina {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Product image slider arrows (Owl Carousel) — round white buttons with chevron */
.m-product-image .owl-controls .owl-buttons {
  display: block;
}

.m-product-image .owl-controls .owl-buttons .owl-prev,
.m-product-image .owl-controls .owl-buttons .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  z-index: 10;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.m-product-image .owl-controls .owl-buttons .owl-prev:hover,
.m-product-image .owl-controls .owl-buttons .owl-next:hover {
  background-color: #fff;
  transform: translateY(-50%) scale(1.06);
}

.m-product-image .owl-controls .owl-buttons .owl-prev:before,
.m-product-image .owl-controls .owl-buttons .owl-next:before {
  content: none;
}

.m-product-image .owl-controls .owl-buttons .owl-prev {
  left: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23262613' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='15 18 9 12 15 6'/></svg>");
}

.m-product-image .owl-controls .owl-buttons .owl-next {
  right: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23262613' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 18 15 12 9 6'/></svg>");
}

.m-product .m-product-title {
  text-align: left;
  margin-top: 30px;
}

/* Product info / specifications block (item number, weight, dimensions etc.) */
.m-product-info {
  margin: 24px 0;
  border-top: 1px solid #f0f0ec;
  font-size: 13px;
}

.m-product-info > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0ec;
}

.m-product-info > div > strong {
  flex: none;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.m-product-info > div > span {
  color: #262613;
  font-weight: 500;
  text-align: right;
}

/* Product stock status (in-stock / sold-out) */
.m-product-stock {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  margin: 8px 0 16px;
}

.m-product-stock::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
}

.m-product-instock::before {
  background-color: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.m-product-soldout::before {
  background-color: #999;
  box-shadow: 0 0 0 4px rgba(153, 153, 153, 0.2);
}

/*
.m-product-stock-status {
    display: none;
}
.m-product-stock .fa {
    display: none;
}
*/
.m-product-stock-text {
  color: #262613;
  font-weight: 500;
}

.m-product-stock-count {
  font-weight: 700;
  margin-right: 2px;
}

/* Leveringstid-linje under lagerstatus (egen styling, ingen status-prik) */
.m-product-deliverytime {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: -8px 0 16px;
  color: #262613;
  font-weight: 500;
}

.m-product-deliverytime .fa {
  color: inherit;
}

.m-product-deliverytime-text {
  font-weight: 600;
}

.m-product .m-product-title::after {
  transform: none;
  left: 0;
}

.m-product .m-product-transaction {
  display: flex;
}

.m-product .m-product-transaction .m-product-transaction-amount {
  max-width: 120px;
}

.m-product .m-product-transaction .m-product-transaction-amount .m-transaction-input {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.m-product .m-product-transaction .m-product-transaction-button {
  width: 100%;
  flex: auto;
}

.m-product .m-product-transaction .m-product-transaction-button .button-primary {
  padding-left: 3em;
  padding-right: 3em;
}

.m-product .m-orderform {
  margin-top: 30px;
}

.m-product .m-product-buttons-type-title {
  margin-bottom: 0.5em;
  display: block;
}

.m-product .m-product-buttons-list .variant-button-image {
  position: relative;
}

.m-product .m-product-buttons-list .variant-button-image input {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.m-product .m-description-short-wrap,
.m-product .m-product-reviews-quick-review {
  margin: 15px 0;
}

.m-product .m-product-image .thumbelina {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
}

.m-product .thumbelina .owl-wrapper .owl-item img, .m-product .m-product-image .thumbelina .owl-wrapper, .m-product .m-product-image .thumbelina .owl-wrapper-outer {
  height: 100%;
}

.m-product .thumbelina-wrapper .thumbelina-but {
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  margin-top: -8.5px;
}

.m-product .thumbelina-wrapper .thumbelina-but.right {
  right: 0;
  transform: translateX(100%);
}

.m-product .thumbelina-wrapper .thumbelina-but.left {
  left: 0;
  transform: translateX(-100%);
}

.m-product .thumbelina .owl-wrapper .owl-item > li {
  margin: 0 auto;
  height: 100%;
}

/* #endregion */
/* #region  PRODUCT ADDITIONAL INFO TABS */
/* Tabs nav — clean underline style, override framework float/border defaults */
.m-product-additional-info-tabs.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #ececea;
  width: 100%;
}

.m-product-additional-info-tabs.nav-tabs > li {
  float: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.m-product-additional-info-tabs.nav-tabs > li > a {
  position: relative;
  display: inline-block;
  padding: 16px 22px;
  margin: 0;
  color: #7a7a6e;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
}

/* Subtle hover wash + darker text */
.m-product-additional-info-tabs.nav-tabs > li > a:hover,
.m-product-additional-info-tabs.nav-tabs > li > a:focus {
  color: #262613;
  background-color: #f7f7f5;
  border: 0;
}

/* Active tab — bold orange underline, dark text */
.m-product-additional-info-tabs.nav-tabs > li.active > a,
.m-product-additional-info-tabs.nav-tabs > li.active > a:hover,
.m-product-additional-info-tabs.nav-tabs > li.active > a:focus {
  color: #262613;
  background-color: transparent;
  border: 0;
  font-weight: 700;
  cursor: default;
}

.m-product-additional-info-tabs.nav-tabs > li > a::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -1px;
  height: 3px;
  background-color: #000000;
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.m-product-additional-info-tabs.nav-tabs > li.active > a::after {
  transform: scaleX(1);
}

/* Keyboard focus ring (accessibility) — kept subtle, on-brand */
.m-product-additional-info-tabs.nav-tabs > li > a:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

/* Content panes — airy padding, clean surface, no boxy borders */
.m-product-additional-info-content.t-panel-clean {
  background: transparent;
}

.m-product-additional-info-content.t-panel-clean > .pane {
  background-color: #fff;
  border: 0;
  border-radius: 0 8px 8px 8px;
  padding: 0;
  margin: 0;
  line-height: 1.75;
  color: #333;
}

.m-product-additional-info-content .ck-content {
  max-width: 700px;
}

.m-product-additional-info-content .ck-content > *:first-child {
  margin-top: 0;
}

.m-product-additional-info-content .ck-content > *:last-child {
  margin-bottom: 0;
}

/* Vimeo embed inside CKEditor content — fixed aspect-ratio, capped width */
.ck-content iframe[src*=vimeo] {
  display: block;
  max-width: 100%;
  width: 700px;
  height: auto;
  aspect-ratio: 16/9;
  margin: 30px 0;
}

.navbar-container {
  position: relative;
  z-index: 10;
}

.menu.menu-vertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

div.panel-success {
  border: solid 1px #c1e0be;
  background-color: #e0f3de;
}

div.panel-success,
div.panel-success a {
  color: #000;
}

.w-slick.hero .w-slick-item-hero > figure > picture img {
  margin: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  max-height: calc(100vh - 300px);
  object-fit: cover;
}

.w-slick.hero .slick-track {
  display: flex !important;
}

.w-slick.hero .slick-slide {
  height: inherit !important;
}

.w-slick.hero .slick-slide > div {
  height: 100%;
}

.m-text-content > .flex-row {
  display: flex;
  gap: 5vw;
}

.m-text-content > .flex-row > * {
  flex: 1;
}

p:last-child {
  margin-bottom: 0;
}

.w-slider-img {
  margin: 0;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: scale-down;
}

/* Tablet & mobile — horizontal scroll instead of wrap to keep tabs on one line */
@media (max-width: 768px) {
  .navbar .navbar-icons > li.w-vat-item {
    display: none;
  }
  .footer-vat select {
    width: 150px;
    max-width: 100%;
    margin: 0 0 30px;
  }
  .w-usp-items .w-usp-item {
    font-size: 12px;
  }
  .m-text-content > .flex-row {
    flex-direction: column;
  }
  .w-slick.hero .w-slick-item-hero {
    height: 100%;
  }
  .w-slick.hero .w-slick-item-hero > figure {
    flex-direction: column;
    height: 100%;
  }
  .w-slick.hero .w-slick-item-hero > figure > figcaption {
    width: 100%;
    max-width: none;
    padding: 5vw;
    gap: 12px;
    flex: auto;
    justify-content: flex-end;
  }
  .w-slick.hero .w-slick-item-hero > figure > picture {
    width: 100%;
    flex: none;
  }
  .w-slick.hero .w-slick-item-hero > figure > picture img {
    aspect-ratio: 16/9;
  }
  .w-slick.hero .w-slick-item-hero > figure > figcaption .w-slick-button {
    width: auto;
  }
  .m-product-additional-info-tabs.nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }
  .m-product-additional-info-tabs.nav-tabs::-webkit-scrollbar {
    display: none;
  }
  .m-product-additional-info-tabs.nav-tabs > li {
    flex: 0 0 auto;
  }
  .m-product-additional-info-tabs.nav-tabs > li > a {
    padding: 14px 16px;
    white-space: nowrap;
  }
  .m-product-additional-info-tabs.nav-tabs > li > a::after {
    left: 16px;
    right: 16px;
  }
}
/* Respect users that prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .m-product-additional-info-tabs.nav-tabs > li > a,
  .m-product-additional-info-tabs.nav-tabs > li > a::after {
    transition: none;
  }
}
/* Related products section — airy separation from tabs above */
.products-related {
  margin-top: 50px;
}

/* #endregion */
/* #region  SPLASH */
.splash {
  position: absolute;
  margin: 15px;
  z-index: 1;
}

/* #endregion */
/* #region  SORTBAR */
.productsortbar .sortbar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 770px) {
  .productsortbar .sortbar-row {
    justify-content: center;
  }
}

@media (max-width: 770px) {
  .productsortbar .sortbar-row .amount-display {
    display: none;
  }
}

.productsortbar .sortbar-content {
  display: flex;
}

.productsortbar .sortbar-content .sortbar-selects {
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
}

.productsortbar .sortbar-content .sortbar-selects > fieldset:has(~ fieldset:not(.ng-hide)) {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.productsortbar .sortbar-content .sortbar-selects > fieldset {
  margin: 0;
}

.productsortbar .sortbar-content #option-orderby {
  border: none !important;
}

.productsortbar .sortbar-content .sortbar-select {
  width: 100%;
  flex: auto;
  background-color: #fff;
  color: #000;
}

.productsortbar .input-group-button.active > .button {
  border: none !important;
}

.productsortbar .input-group-button:not(.active) > .button {
  opacity: 0.5;
}

.productsortbar .sortbar-content #option-limit {
  border: none;
  color: #000;
}

.productsortbar .sortbar-content .productlist-display {
  margin: 0 1em 0 0;
}

/* #endregion */
/* #region  STAR REVIEW */
/* .m-reviews-stars .fa-star-o {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="rgb(255, 204, 0)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-star"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>');
}
.m-reviews-stars .fa-star {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="rgb(255, 204, 0)" stroke="rgb(255, 204, 0)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-star"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>');
}
.m-productlist-item .m-reviews-stars .fa-star-o {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="rgb(255, 204, 0)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-star"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>');
}
.m-productlist-item .m-reviews-stars .fa-star {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="rgb(255, 204, 0)" stroke="rgb(255, 204, 0)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-star"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>');
} */
/* #endregion */
/* #region  FILTER */
.productfilter .filter-collapse-btn {
  width: 20px;
  height: 20px !important;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.productfilter .multiple_select > span {
  color: #000;
}

/* #endregion */
/***| ORDERSTEPS |***/
/* #region  CART */
.m-cart .m-cart-header::after {
  left: 0;
  transform: none;
}

.m-cart .m-cart-header .m-cart-headline {
  margin: 0;
}

.m-cart .m-cart-content .panel,
.m-cart .m-cart-content .panel-border .panel-heading {
  background-color: transparent;
}

.panel-border .t-striped > li:nth-child(odd) {
  background-color: transparent !important;
}

.panel-border .t-striped > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.panel-border .t-striped > li:last-child {
  border: none;
}

/* #endregion */
/* #region  CHECKOUT */
.checkoutForm {
  display: flex;
  flex-direction: column;
}

.checkoutForm hr {
  display: none !important;
}

.checkoutFrame .stepColumn {
  width: 800px !important;
  max-width: 100%;
  margin: 0 auto 40px;
  float: none;
  border: none;
  min-height: 10px;
  padding: 30px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  position: relative;
  background-color: #fff;
  color: #000;
}
@media (max-width: 770px) {
  .checkoutFrame .stepColumn {
    padding: 10px;
  }
}

.checkoutFrame .stepColumn:not(.column3)::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid rgb(255, 255, 255);
  position: absolute;
  top: 100%;
  left: 30px;
  z-index: 20;
}

.checkoutFrame .stepColumn .stepHeaderLogin {
  margin-bottom: 15px;
}

.checkoutFrame .stepColumn .title .h5 {
  color: #333;
  padding-bottom: 10px;
  position: relative;
  display: block;
  margin-bottom: 20px;
  font-weight: bold;
}

.checkoutFrame .stepColumn .title .h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: #aaa;
}

.checkoutForm .table td {
  border-color: rgba(0, 0, 0, 0.15) !important;
}

.checkoutForm #orderLines .orderLine .h6,
.checkoutForm #orderLines .orderLine span,
.checkoutForm #orderLines .orderLine a {
  color: #000;
}

.checkoutForm .panel {
  border: none;
  background: transparent;
  margin-bottom: 0;
}

.checkoutForm .panel .t-striped {
  margin: 0;
}

/* #endregion */
/***| PAGE TYPES |***/
/* #region  BLOG LIST */
.m-blog-list .m-blog-list-imagewrap {
  margin-bottom: 1em;
}

/* #endregion */
/* #region  BLOG ENTITY */
.m-blog .slider-wrap {
  margin-bottom: 1em;
}

/* #endregion */
/* #region  CALENDAR */
.m-calendar-list .m-calendar-container {
  margin: 0;
}

.m-calendar-list .m-calender-event:last-child {
  border: none;
}

.m-calendar-list .m-calender-event .day {
  padding: 15px;
}

/* #endregion */
/***| BOXES |***/
/* #region  CALENDAR */
.b-calendar .b-calendar-list,
.b-calendar .b-calendar-list > li:last-child {
  margin: 0;
}

.b-calendar .b-calendar-list > li:last-child {
  border-bottom: 0;
}

.b-calendar .month-header,
.b-calendar .b-calendar-list > li .m-calendar-title-anchor {
  padding: 1em;
}

/* #endregion */
/* #region CATEGORY ITEM */
.categories-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 770px) {
  .categories-items {
    gap: 10px;
  }
}

.category-item {
  flex: none;
  width: calc(25% - 15px);
  display: block;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06), 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
@media (max-width: 1280px) {
  .category-item {
    width: calc(33.33% - 14px);
  }
}
@media (max-width: 770px) {
  .category-item {
    width: calc(50% - 5px);
  }
}

.category-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08), 0 16px 32px rgba(0, 0, 0, 0.1);
}

.category-item-image {
  background-color: #f7f7f5;
  overflow: hidden;
}

.category-item-image img {
  aspect-ratio: 1/1;
  object-fit: scale-down;
  margin: 0;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
  background-color: #fff;
}

.category-item:hover .category-item-image img {
  transform: scale(1.04);
}

.category-item-title {
  padding: 14px 16px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  color: #262613;
  transition: color 0.2s ease;
}
@media (max-width: 770px) {
  .category-item-title {
    font-size: inherit;
  }
}

.category-item .button {
  width: 100%;
}

/* #endregion */
/***************/
/***| SMALL |***/
/***************/
@media (min-width: 481px) {
  /* #region  SITE CONTENT */
  .site-content {
    padding: 30px 0;
  }
  .section {
    padding: 30px 0;
  }
  /* #endregion */
  /* #region  FOOTER */
  .footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    margin: 30px -30px;
  }
  .footer .footer-content > div {
    width: 50%;
    flex: auto;
    padding: 0 30px;
  }
  .footer .footer-content > div:nth-child(1),
  .footer .footer-content > div:nth-child(2) {
    margin-bottom: 30px;
  }
  /* #endregion */
}
/****************/
/***| MEDIUM |***/
/****************/
@media (min-width: 769px) {
  .footer-vat {
    display: none;
  }
  .w-search-open-mobile {
    display: none;
  }
  /* Show navbar-left from tablet upwards */
  .navbar .navbar-content > .navbar-left {
    display: flex;
  }
  /* Center navbar-center from tablet upwards */
  .navbar .navbar-content > .navbar-center {
    justify-content: center;
  }
  /* USP — gap up, show 3rd item from medium upwards (<small> stays hidden until large) */
  .w-usp-items {
    gap: 20px;
  }
  .w-usp-items .w-usp-item:nth-child(3) {
    display: flex;
  }
  /* #region  SIDEBAR */
  #site-sidebar > .sidebar-widgets {
    display: none;
  }
  /* #endregion */
  /***| WIDGETS |***/
  /* #region  SLICK */
  /* Pile vises nu på alle skærme via base-reglen; her kun caption-justering for desktop */
  .w-slick .w-slick-caption {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .w-slick .w-slick-caption > div {
    align-self: flex-start;
    padding: 30px;
  }
  /* #endregion */
  /* #region  COOKIE */
  .w-cookie .w-cookie-consent {
    padding: 30px;
  }
  .w-cookie .w-cookie-actions {
    flex-direction: row;
  }
  .w-cookie .w-cookie-actions button {
    margin: 0 10px;
  }
  /* #endregion */
  /***| PRODUCT |***/
  /* #region  PRODUCTCARD */
  .m-product .m-product-information {
    padding-left: 30px;
  }
  /* #endregion */
  /***| ORDERSTEPS |***/
  /* #region  CART */
  .m-cart .cart-total-value {
    text-align: right;
  }
  /* #endregion */
}
/***************/
/***| LARGE |***/
/***************/
@media (min-width: 1281px) {
  /* #region  SIDEBAR */
  #site-sidebar .productmenu,
  #site-sidebar .productmenu-title {
    display: none;
  }
  /* #endregion */
  /* USP — show 4th item & <small> subtext from large upwards */
  .w-usp-items .w-usp-item:nth-child(4) {
    display: flex;
  }
  .w-usp-items .w-usp-item .w-usp-content small {
    display: inline;
  }
  /* #region  NAVBAR */
  .navbar .navbar-content > .navbar-center {
    flex: 2;
    display: flex;
    justify-content: center;
  }
  .navbar .navbar-icons svg {
    width: 24px;
    height: 24px;
  }
  /* #endregion */
  /* #region  SITE CONTENT */
  .site-content {
    display: flex;
    margin: 0 -30px;
  }
  .site-content > .column {
    display: block;
    width: 320px;
    flex: none;
  }
  .site-content > .content {
    width: 100%;
    flex: auto;
  }
  .site-content > .column,
  .site-content > .content {
    margin: 0 30px;
  }
  /* #endregion */
  /* #region  FOOTER */
  .footer .footer-content {
    flex-wrap: nowrap;
  }
  .footer .footer-content > div {
    width: 25%;
  }
  .footer .footer-content > div:nth-child(1),
  .footer .footer-content > div:nth-child(2) {
    margin-bottom: 0;
  }
  /* #endregion */
  /***| WIDGETS |***/
  /* #region  LOGO */
  .w-logo .w-logo-text {
    font-size: 24px;
  }
  .w-logo .w-logo-img {
    max-height: 80px;
  }
  /* #endregion */
  /* #region  SEARCH */
  .w-search .w-search-container .w-search-form {
    height: 80px;
  }
  .w-search .w-search-container .w-search-form .w-search-input {
    font-size: 24px;
  }
  /* #endregion */
  /* #region  PRODUCTMENU */
  .productmenu-container {
    display: block;
    border-top: 1px solid #f6f6f6;
    position: relative;
  }
  .productmenu {
    display: flex;
    position: relative;
    justify-content: center;
    color: inherit;
    gap: 30px;
  }
  .productmenu > li {
    position: relative;
    margin: 0;
  }
  /* Items with megamenu — static so dropdown kan spænde over containerbredden */
  .productmenu > li.has-megamenu {
    position: static;
  }
  .productmenu > li > a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 18px 2px;
    color: inherit;
    gap: 6px;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 13px;
    position: relative;
    transition: color ease 0.15s;
  }
  .productmenu > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    height: 2px;
    background-color: #262613;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
  }
  .productmenu > li:hover > a,
  .productmenu > li.active > a {
    color: #262613;
  }
  .productmenu > li:hover > a::after,
  .productmenu > li.active > a::after {
    transform: scaleX(1);
  }
  .productmenu li.has-dropdown .item-arrow {
    display: none;
  }
  .productmenu > li.has-dropdown > a svg {
    width: 12px;
    display: block;
    transition: transform 0.2s ease;
  }
  .productmenu > li.has-dropdown:hover > a svg {
    transform: rotate(180deg);
  }
  /* ========================================
     DROPDOWN — base (simple single-level dropdown)
     Used when productmenu item has only 2 levels (no children with sub-children).
     ======================================== */
  .productmenu > li > ul {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    min-width: 220px;
    max-width: 320px;
    background-color: #fff;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    border-radius: 0;
    border-top: 1px solid #f0f0ec;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity ease 0.25s, top ease 0.25s;
  }
  .productmenu > li:hover > ul {
    opacity: 1;
    top: 100%;
    pointer-events: auto;
    transition-delay: 0.25s;
  }
  .productmenu > li > ul li a svg {
    display: none;
  }
  .productmenu > li > ul > li > a {
    display: block;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #262613;
    transition: color 0.15s ease, background-color 0.15s ease;
  }
  .productmenu > li > ul > li:hover > a {
    background-color: #f7f7f5;
  }
  /* ========================================
     MEGAMENU — flydende kolonner (column-count)
     Aktiveres af JS-tilføjet .megamenu-klasse ved 20+ 2.-niveau-kategorier.
     20-60 kategorier => 3 kolonner (.megamenu--3col)
     Over 60 kategorier => 5 kolonner (.megamenu--5col)
     ======================================== */
  /* Brede varianter (20+ punkter): fuld containerbredde + flydende kolonner.
     Den smalle 1-kolonne-dropdown (under 20) beholder base-bredden og
     får blot den samme item-styling. */
  .productmenu > li > ul.megamenu--3col,
  .productmenu > li > ul.megamenu--5col {
    left: 0;
    right: 0;
    transform: none;
    width: auto;
    min-width: 0;
    max-width: none;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 0;
    border-top: 1px solid #f0f0ec;
    padding: 32px max(30px, (100% - 1200px) / 2);
    display: block;
    column-gap: 40px;
  }
  .productmenu > li > ul.megamenu--3col {
    column-count: 3;
  }
  .productmenu > li > ul.megamenu--5col {
    column-count: 5;
    padding-left: max(30px, (100% - 1320px) / 2);
    padding-right: max(30px, (100% - 1320px) / 2);
  }
  /* Smal 1-kolonne-dropdown (under 20 punkter): behold smal bredde, lidt indvendig luft */
  .productmenu > li > ul.megamenu:not(.megamenu--3col):not(.megamenu--5col) {
    padding: 18px 24px;
  }
  /* Hver 2.-niveau-blok holdes samlet i én kolonne (brydes ikke midt over) */
  .productmenu > li > ul.megamenu > li {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  /* Kun blokke MED underpunkter får luft under sig.
     Flade links (uden 3. niveau) står tæt, så de ikke ser spredte ud. */
  .productmenu > li > ul.megamenu > li.has-dropdown {
    margin-bottom: 24px;
  }
  /* Megamenu: ALLE 2.-niveau-punkter = fed (bold), uanset om de har børn */
  .productmenu > li > ul.megamenu > li > a {
    display: block;
    padding: 0;
    margin: 0 0 8px;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    text-decoration: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    transition: color 0.15s ease;
  }
  .productmenu > li > ul.megamenu > li > a:hover {
    background: transparent;
  }
  /* Megamenu: sub-items (level 2 under headers) — plain left-aligned links */
  .productmenu > li > ul > li > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  .productmenu > li > ul > li > ul > li > a {
    display: block;
    padding: 3px 0;
    font-size: 13.5px;
    line-height: 1.5;
    text-decoration: none;
    color: #555;
    background: transparent;
    border-radius: 0;
    transition: color 0.15s ease;
  }
  .productmenu > li > ul > li > ul > li:hover > a {
    color: #000;
    background: transparent;
  }
  .productmenu > li > ul > li > ul > li.has-dropdown .item-arrow,
  .productmenu > li > ul > li > ul > li.has-dropdown .menu {
    display: none;
  }
  .productmenu > li > ul > li > ul > li.seeMore > a {
    margin-top: 4px;
    font-weight: 600;
    color: #262613;
    text-decoration: underline;
  }
  /* Hide deeper levels */
  .productmenu > li > ul > li > ul > li > ul {
    display: none;
  }
  /* #endregion */
  /* #region  BASKET */
  .basket:hover .miniBasket {
    top: 100%;
    opacity: 1;
    pointer-events: auto;
  }
  .basket .miniBasket {
    display: block;
  }
  .miniBasket {
    position: absolute;
    right: -10px;
    top: 120%;
    width: 500px;
    padding: 30px;
    border-right: none;
    transition: top 0.2s ease-in-out, opacity 0.2s ease-in-out;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  }
  .miniBasket .minibasket-footer td {
    padding: 0.5em 0;
  }
  /* #endregion */
  /***| PRODUCT |***/
  /* #region  PRODUCTLIST */
  .m-productlist-wrapper {
    display: flex;
    margin: 0 -15px;
  }
  .m-productlist-wrapper .m-productlist-filter {
    width: 320px;
    flex: none;
    margin: 0 15px;
  }
  .m-productlist-wrapper .m-productlist-filter:empty {
    display: none;
  }
  .m-productlist-wrapper .m-productlist-filter aside {
    display: block !important;
  }
  .m-productlist-wrapper .m-productlist-items {
    width: 100%;
    flex: auto;
    margin: 0 15px;
  }
  /* #endregion */
  /* #region  SITE CONTENT (ultra-wide refinements) */
  .site-content {
    padding: 50px 0;
  }
  .section {
    padding: 50px 0;
  }
  /* #endregion */
  /* #region  FOOTER (ultra-wide refinements) */
  .footer .footer-content {
    display: flex;
    margin: 0 -30px;
    padding: 30px 0;
  }
  .footer .footer-content > div {
    width: 30%;
    padding: 10px 30px;
    border-bottom: none;
  }
  .footer .contacts > li {
    margin-bottom: 20px;
  }
  /* #endregion */
  /* #region  SLICK (ultra-wide refinements) */
  .w-slick .w-slick-next,
  .w-slick .w-slick-prev {
    width: 40px;
    height: 40px;
  }
  .w-slick .w-slick-next svg,
  .w-slick .w-slick-prev svg {
    width: 20px;
  }
  /* #endregion */
}
/**************/
/***| LIBS |***/
/**************/
/* #region  INPUT GROUP */
select.form-input {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-position: top 50% right 1em;
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-color: #fff;
  color: #000;
  padding-right: 30px;
}

.button, .button-group > li > a, .button-primary, .button-text {
  text-transform: uppercase;
  border: none;
  font-weight: bold;
  height: 40px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  font-size: inherit;
}

.input-group-addon svg, .input-group-button > .button svg, .input-group-button > .button-primary svg, .input-group-button > .button-text svg, .input-group-image svg, .input-group-main svg, .button svg, .button-group > li > a svg, .button-primary svg, .button-text svg, .form-input svg, .form-label svg, .pager-group > .button svg, .pager-group > .button-primary svg, .pager-group > .button-text svg, .pagination > li > a svg {
  width: 16px;
  height: 16px;
}

.xsmall .input-group-addon, .xsmall .input-group-button > .button, .xsmall .input-group-button > .button-primary, .xsmall .input-group-button > .button-text, .xsmall .input-group-image, .xsmall .input-group-main, .xsmall.button, .xsmall.button-group > li > a, .xsmall.button-primary, .xsmall.button-text, .xsmall.form-input, .xsmall.form-label, .xsmall.pager-group > .button, .xsmall.pager-group > .button-primary, .xsmall.pager-group > .button-text, .xsmall.pagination > li > a {
  height: 28px;
  padding: 0.5em 1em;
  line-height: 1.6;
}

.xsmall .input-group-addon svg, .xsmall .input-group-button > .button svg, .xsmall .input-group-button > .button-primary svg, .xsmall .input-group-button > .button-text svg, .xsmall .input-group-image svg, .xsmall .input-group-main svg, .xsmall.button svg, .xsmall.button-group > li > a svg, .xsmall.button-primary svg, .xsmall.button-text svg, .xsmall.form-input svg, .xsmall.form-label svg, .xsmall.pager-group > .button svg, .xsmall.pager-group > .button-primary svg, .xsmall.pager-group > .button-text svg, .xsmall.pagination > li > a svg {
  width: 12px;
  height: 12px;
  vertical-align: middle;
}

.small .input-group-addon, .small .input-group-button > .button, .small .input-group-button > .button-primary, .small .input-group-button > .button-text, .small .input-group-image, .small .input-group-main, .small.button, .small.button-group > li > a, .small.button-primary, .small.button-text, .small.form-input, .small.form-label, .small.pager-group > .button, .small.pager-group > .button-primary, .small.pager-group > .button-text, .small.pagination > li > a {
  height: 30px;
}

.small .input-group-addon svg, .small .input-group-button > .button svg, .small .input-group-button > .button-primary svg, .small .input-group-button > .button-text svg, .small .input-group-image svg, .small .input-group-main svg, .small.button svg, .small.button-group > li > a svg, .small.button-primary svg, .small.button-text svg, .small.form-input svg, .small.form-label svg, .small.pager-group > .button svg, .small.pager-group > .button-primary svg, .small.pager-group > .button-text svg, .small.pagination > li > a svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

.large .input-group-addon, .large .input-group-button > .button, .large .input-group-button > .button-primary, .large .input-group-button > .button-text, .large .input-group-image, .large .input-group-main, .large.button, .large.button-group > li > a, .large.button-primary, .large.button-text, .large.form-input, .large.form-label, .large.pager-group > .button, .large.pager-group > .button-primary, .large.pager-group > .button-text, .large.pagination > li > a {
  height: 51px;
  padding-left: 2em;
  padding-right: 2em;
}

.large .input-group-addon svg, .large .input-group-button > .button svg, .large .input-group-button > .button-primary svg, .large .input-group-button > .button-text svg, .large .input-group-image svg, .large .input-group-main svg, .large.button svg, .large.button-group > li > a svg, .large.button-primary svg, .large.button-text svg, .large.form-input svg, .large.form-label svg, .large.pager-group > .button svg, .large.pager-group > .button-primary svg, .large.pager-group > .button-text svg, .large.pagination > li > a svg {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

.input-group-addon > * {
  vertical-align: middle;
}

.button, .button-primary, .button-text {
  line-height: 1;
  text-align: center;
  justify-content: center;
}

.button-text > .fa::after {
  content: "#";
  color: transparent;
}

/* #endregion */
/* #region  HEADINGS */
h1, h2, h3, h4,
.h1, .h2, .h3, .h4 {
  font-weight: bold;
}

/* #endregion */
/* #region  FANCYBOX */
.fancybox-overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

.fancybox-nav {
  display: flex;
  align-items: center;
  padding: 30px;
}

.fancybox-nav > span {
  display: none;
}

.fancybox-next {
  justify-content: flex-end;
}

.fancybox-next::after,
.fancybox-prev::after {
  padding: 8px;
  line-height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fancybox-next::after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="9 18 15 12 9 6"></polyline></svg>');
}

.fancybox-prev::after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-left"><polyline points="15 18 9 12 15 6"></polyline></svg>');
}

.fancybox-inner > .container {
  max-width: 600px !important;
}
@media (max-width: 768px) {
  .fancybox-inner > .container {
    max-width: 100% !important;
  }
}

/* #endregion */
/* #region  TOOLTIP */
.tooltip {
  position: relative;
}

/* .tooltip::after {
    content: '';
    width: 12px;
    height: 12px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-info"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="16" x2="12" y2="12"></line><line x1="12" y1="8" x2="12.01" y2="8"></line></svg>');
    background-position: center center;
    background-size: 100% 100%;
    display: inline-block;
} */
.tooltip .tooltiptext {
  display: none;
}

.tooltip:hover .tooltiptext {
  min-width: 200px;
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  padding: 10px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  z-index: 99;
  font-weight: normal;
}

/* #endregion */
/* #region  BADGE */
.badge {
  font-size: 0.75em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 7px;
}

.badge.badge-new {
  background-color: #262613;
  color: #fff;
  border-color: #262613;
}

.badge.badge-sale {
  background-color: #fbbf24;
  color: #1a1a00;
  border-color: #fbbf24;
}

/* Badges on product card (varekort) — larger than productlist */
.m-product-splash {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.m-product-splash .badge {
  font-size: 13px;
  padding: 8px 14px;
  letter-spacing: 0.08em;
}

@media (max-width: 770px) {
  .m-product-splash .badge {
    font-size: 10px;
    padding: 4px 10px;
    letter-spacing: 1px;
  }
}
/* #endregion */
/* #region  RZ SLIDER */
.rzslider .rz-pointer {
  width: 20px !important;
  height: 20px !important;
  top: -8px !important;
  outline: none;
}

.rzslider .rz-pointer:after {
  top: 6px !important;
  left: 6px !important;
}

/* #endregion */
@media (max-width: 768px) {
  /* #region  NEWSLETTER */
  .m-newsletter .button-text.pull-right {
    float: none !important;
  }
  /* #endregion */
}
.m-product-additionals-transaction .m-product-transaction-button .w-checkout-buttons-headline,
.m-product .col-m-6.col-l-6.col-xl-12 > .m-product-information .w-checkout-buttons-headline {
  text-align: left;
}
@media (max-width: 768px) {
  .m-product-additionals-transaction .m-product-transaction-button .w-checkout-buttons .w-checkout-buttons-headline,
  .m-product .col-m-6.col-l-6.col-xl-12 > .m-product-information .w-checkout-buttons .w-checkout-buttons-headline {
    text-align: right;
  }
  .m-product-additionals-transaction .m-product-transaction-button .w-checkout-buttons .w-checkout-button,
  .m-product .col-m-6.col-l-6.col-xl-12 > .m-product-information .w-checkout-buttons .w-checkout-button {
    margin-right: 0;
  }
}
@media (max-width: 411px) {
  .m-product-additionals-transaction .m-product-transaction-button .w-checkout-buttons .w-checkout-buttons-headline,
  .m-product .col-m-6.col-l-6.col-xl-12 > .m-product-information .w-checkout-buttons .w-checkout-buttons-headline {
    text-align: center;
  }
}

.m-orderform .m-product-transaction-button .w-checkout-buttons {
  width: 100%;
  float: right;
}
@media (max-width: 768px) {
  .m-orderform .m-product-transaction-button .w-checkout-buttons-headline {
    text-align: center;
  }
}
@media (min-width: 767px) {
  .m-orderform .m-product-transaction-button .w-checkout-buttons .w-checkout-button {
    text-align: right;
    display: flex;
    align-self: flex-end;
  }
}
.m-orderform .m-product-transaction-button .w-checkout-buttons .cart-dead {
  margin-left: auto;
}
@media (max-width: 768px) {
  .m-orderform .m-product-transaction-button .w-checkout-buttons .cart-dead {
    margin-right: auto;
  }
}

.w-checkout,
.w-checkout-button {
  font-size: 12px;
}
.w-checkout .loader,
.w-checkout-button .loader {
  position: absolute !important;
  margin: auto;
  transition: all 0.2s ease;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
  width: 52px;
  height: 12px;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}
.w-checkout .loader > div,
.w-checkout-button .loader > div {
  transform: scale(0);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: fadescale-in-out-delayed 0.8s ease infinite;
  animation-delay: 0.32s;
  background-color: #333;
  left: 0;
  right: 0;
}
.w-checkout .loader > div:first-child,
.w-checkout-button .loader > div:first-child {
  animation-delay: 0.16s;
  margin-right: 8px;
}
.w-checkout .loader > div:last-child,
.w-checkout-button .loader > div:last-child {
  animation-delay: 0.48s;
  margin-left: 8px;
}
.w-checkout .loader,
.w-checkout-button .loader {
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.w-checkout .loading > .loader,
.w-checkout-button .loading > .loader {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.w-checkout-button .loader div {
  height: 8px;
  width: 8px;
}

.w-checkout::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 5px;
}
.w-checkout::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.w-checkout .form-label {
  margin-bottom: 4px;
  font-size: 0.875em;
}
.w-checkout-buttons-headline {
  margin: 1em 0;
  text-align: right;
}
@media (max-width: 768px) {
  .w-checkout-buttons-headline {
    text-align: center;
  }
}
.w-checkout-buttons .cart-dead {
  display: none;
  margin-top: 8px;
  padding: 4px;
  max-width: 172px;
  border-radius: 5px;
  align-items: center;
}
@media (max-width: 768px) {
  .w-checkout-buttons .cart-dead {
    margin-left: auto;
  }
}
.w-checkout-buttons .cart-dead > .fa {
  margin-right: 4px;
  font-size: 16px;
}
.w-checkout-buttons .cart-dead > small {
  color: inherit;
}
.w-checkout-buttons .w-checkout-button {
  position: relative;
  padding: 0;
  margin-bottom: 1em;
  line-height: 0;
  width: auto;
  margin: auto 0 auto auto;
}
@media (max-width: 768px) {
  .w-checkout-buttons .w-checkout-button {
    margin: auto;
  }
}
.w-checkout-buttons .w-checkout-button:hover:not(.loading) > img, .w-checkout-buttons .w-checkout-button:focus:not(.loading) > img {
  filter: brightness(1.15);
}
.w-checkout-buttons .w-checkout-button > img {
  transition: 0.2s all;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  max-width: 100%;
  pointer-events: none;
}
.w-checkout-buttons .w-checkout-button > img.disabled {
  display: none;
}
.w-checkout-buttons--block .cart-dead {
  display: flex;
}
.w-checkout-buttons--block .w-checkout-button {
  pointer-events: none;
}
.w-checkout-buttons--block .w-checkout-button > img {
  display: none;
}
.w-checkout-buttons--block .w-checkout-button > img.disabled {
  display: block;
}
.w-checkout-link {
  cursor: pointer;
}
.w-checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
  z-index: 8000;
  display: none;
}
.w-checkout-modal.modal-active {
  display: flex;
}
.w-checkout-modal.modal-active .modal-blur {
  opacity: 1;
}
.w-checkout-modal.modal-active .modal-container {
  animation: fadescalein 0.2s cubic-bezier(0, 0, 0.2, 1) forwards;
}
.w-checkout-modal.modal-active.close {
  visibility: hidden;
}
.w-checkout-modal.modal-active.close .modal-blur {
  opacity: 0;
}
.w-checkout-modal.modal-active.close .modal-container {
  animation: fadescaleout 0.2s cubic-bezier(0, 0, 0.2, 1) forwards;
}
.w-checkout-modal.modal-active.close .modal-container img {
  display: none;
}
.w-checkout-modal .modal-blur {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: 0.2s all;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.w-checkout-notification {
  font-size: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 8px;
  transition: all 200ms ease-out;
  transform: translateY(-100%) translateY(-8px);
}
.w-checkout-notification.active {
  transform: translateY(0px) translateY(-8px);
}
.w-checkout .modal-container {
  overflow: hidden;
  border-radius: 3px;
  opacity: 0;
  padding: 8px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  background-color: #fff;
  z-index: 1;
  position: relative;
  max-width: 411px;
  width: 411px;
}
.w-checkout .modal-container strong {
  font-size: 12px;
}
@media (max-width: 420px) {
  .w-checkout .modal-container {
    max-width: 95vw;
    max-height: 95vh;
    overflow-y: auto;
  }
}
.w-checkout .modal-container .modal-header {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.w-checkout .modal-container .modal-header > .fa {
  cursor: pointer;
  position: absolute;
  right: 8px;
  top: 8px;
  border-radius: 50px;
  width: 20px;
  height: 20px;
  font-size: 14px;
  display: flex;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}
.w-checkout .modal-container .modal-content {
  height: auto;
  overflow-y: auto;
  width: 100%;
}
.w-checkout .modal-container .modal-content .panel-warning {
  color: white;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery ul::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 5px;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery ul::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-header {
  padding: 0 8px 8px 8px;
  margin: 0;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-header .w-checkout-link {
  font-size: 12px;
}
@media (max-width: 420px) {
  .w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-header {
    padding-bottom: 4px;
  }
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-notice {
  padding: 0 8px;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-notice .form-label strong {
  font-size: 12px;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-notice .form-group {
  margin: 0 0 8px 0;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-notice #customerNoticeDelivery,
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-notice #customerNotice {
  transition: 255ms all;
  padding: 4px 8px;
  position: relative;
}
@media (max-width: 768px) {
  .w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-notice #customerNoticeDelivery,
  .w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-notice #customerNotice {
    min-height: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 420px) {
  .w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-notice #customerNoticeDelivery,
  .w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-notice #customerNotice {
    height: 24px;
    padding: 0 4px;
  }
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method {
  overflow: hidden;
  transition: ease all 1s;
  max-height: 600px;
  padding: 0 4px 0 8px;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method .delivery-method-header .text-right {
  display: none;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method.active .delivery-method-header {
  padding: 8px;
  margin-bottom: 8px;
}
@media (max-width: 420px) {
  .w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method.active .delivery-method-header {
    padding: 4px;
    margin-bottom: 4px;
  }
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method.active .delivery-method-header .delivery-method-label {
  padding: 0;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method.active .delivery-method-header .delivery-method-title, .w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method.active .delivery-method-header .delivery-method-description {
  white-space: normal;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method.active .delivery-method-header > .material-radio {
  margin-right: 8px;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method.active .delivery-method-header .text-right {
  display: block;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method.active .delivery-method-info {
  padding-right: 8px;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method:not(.active) .location-container {
  display: none;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method-description,
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method .droppointTextLine {
  font-weight: normal;
  font-size: 12px;
  color: #A3A6A1;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: normal;
  padding: 8px 0;
}
@media (max-width: 420px) {
  .w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method-header {
    padding: 4px 0;
  }
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method-header {
  transition: ease all 0.2s;
  width: 100%;
  min-height: 40px;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method-header > label {
  display: flex;
  flex: 1;
  overflow: hidden;
  padding-left: 8px;
  align-items: center;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method-header .delivery-method-info {
  overflow: hidden;
  flex: 1;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method-header .delivery-method-info p {
  margin-bottom: 0;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method-header .delivery-method-info .delivery-method-description {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method-header .delivery-method-price {
  text-align: right;
  display: flex;
  align-items: center;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method-header .droppoint .form-label {
  font-weight: normal;
  margin: 0;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-address {
  margin-bottom: 8px;
  padding: 0 8px;
  display: flex;
}
@media (max-width: 420px) {
  .w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-address {
    margin-bottom: 4px;
  }
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-address > fieldset {
  display: inline;
  margin: 0;
  margin-right: 8px;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-address > fieldset .form-label {
  font-weight: bold;
  margin-bottom: 4px;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-address > fieldset #country,
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-address > fieldset #zipcode {
  padding: 4px 8px;
  height: auto;
  max-width: 150px;
}
@media (min-width: 960px) {
  .w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-address > fieldset #country,
  .w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-address > fieldset #zipcode {
    font-size: inherit;
  }
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method-list {
  animation: fadein 0.4s cubic-bezier(0, 0, 0.2, 1);
  transition: 0.4s all cubic-bezier(0, 0, 0.2, 1);
  overflow-y: auto;
  padding: 0;
  margin: 0;
  margin-right: 4px;
  margin-bottom: 8px;
  min-height: 75px;
}
@media (max-width: 420px) {
  .w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method-list {
    margin-bottom: 4px;
  }
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method-list > .delivery-header + .delivery-method:not(.active) .delivery-method-header {
  padding-top: 0;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .delivery-method-list > .delivery-method:not(.active):last-child .delivery-method-header {
  padding-bottom: 0;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .methods-not-found {
  padding: 8px;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .empty-location {
  padding: 8px;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .empty-location .input-group {
  padding: 0 8px;
  display: flex;
  align-items: center;
}
@media (max-width: 420px) {
  .w-checkout .modal-container .modal-content .w-checkout-delivery .empty-location .input-group {
    padding: 0 4px;
    margin-top: 4px;
  }
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .empty-location .input-group label {
  border: 0;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .target-container {
  z-index: 10;
  display: none;
  flex-flow: column;
  overflow: hidden;
}
@media (max-width: 420px) {
  .w-checkout .modal-container .modal-content .w-checkout-delivery .target-container {
    padding: 0;
    border-bottom: 0;
  }
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .target-container.open {
  display: -ms-flexbox;
  display: flex;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .droppoint {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .droppoint .form-label {
  margin-bottom: 8px;
  padding-left: 8px;
  flex: 1;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .droppoint:first-child {
  margin-top: 8px;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .droppoint-list {
  border-top: 0;
  margin: 0;
  max-height: 250px;
  padding: 0 8px;
  transition: 0.4s all;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  overflow-y: auto;
}
@media (max-width: 420px) {
  .w-checkout .modal-container .modal-content .w-checkout-delivery .droppoint-list {
    max-height: 30vh;
  }
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .droppoint-list .empty-location {
  min-height: none;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .droppoint-list .empty-location .random-choice {
  display: none;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .droppoint-list > li {
  animation: fadein 0.4s cubic-bezier(0, 0, 0.2, 1);
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .droppoint-search {
  display: flex;
  margin: 0;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .droppoint-search .w-search {
  border: 0;
  width: auto;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .droppoint-search .w-zipcode {
  flex: 1;
  padding: 0 8px;
  outline: 0;
}
@media (max-width: 420px) {
  .w-checkout .modal-container .modal-content .w-checkout-delivery .droppoint-active {
    padding: 0;
  }
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .droppoint-active .droppoint-result {
  animation: fadein 0.4s cubic-bezier(0, 0, 0.2, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: solid 1px #cfcfcf;
  width: 100%;
  padding: 8px;
}
@media (max-width: 600px) {
  .w-checkout .modal-container .modal-content .w-checkout-delivery .droppoint-active .droppoint-result {
    padding: 4px;
  }
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .droppoint-active .droppoint-result .button {
  display: inline;
}
.w-checkout .modal-container .modal-content .w-checkout-delivery .droppoint-active .droppoint-result .form-group {
  margin: 0;
}
.w-checkout .modal-container .modal-content .w-checkout-order {
  padding: 0 8px;
  margin-bottom: 8px;
}
.w-checkout .modal-container .modal-content .w-checkout-order .order {
  cursor: pointer;
  border: solid 1px #cfcfcf;
}
.w-checkout .modal-container .modal-content .w-checkout-order .order-total {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: ease all 0.2s;
  padding: 4px;
}
.w-checkout .modal-container .modal-content .w-checkout-order .order-total > strong {
  display: flex;
  align-items: center;
}
.w-checkout .modal-container .modal-content .w-checkout-order .order-total .fa {
  transition: 225ms all ease-out;
  margin-right: 0;
  font-size: 0;
}
.w-checkout .modal-container .modal-content .w-checkout-order .order-line-products {
  overflow: auto;
  max-height: 30vh;
}
@media (max-width: 420px) {
  .w-checkout .modal-container .modal-content .w-checkout-order .order-line-products {
    max-height: 85px;
  }
}
.w-checkout .modal-container .modal-content .w-checkout-order .order-summary {
  z-index: 10;
  height: 100%;
  flex-flow: column-reverse;
  transition: 225ms all ease-out;
  overflow: hidden;
  max-height: 320px;
}
.w-checkout .modal-container .modal-content .w-checkout-order .order-summary.is-collapsed {
  display: block;
  max-height: 0;
}
.w-checkout .modal-container .modal-content .w-checkout-order .order-summary.is-collapsed + .order-total .fa {
  margin-right: 8px;
  font-size: 16px;
}
.w-checkout .modal-container .modal-content .w-checkout-order .order-summary .order-list {
  margin: 0;
  padding: 0 4px;
}
.w-checkout .modal-container .modal-content .w-checkout-order .order-summary .order-list ul {
  margin: 0;
  width: 100%;
}
.w-checkout .modal-container .modal-content .w-checkout-order .order-summary .order-list li {
  display: flex;
  padding: 4px 0;
}
.w-checkout .modal-container .modal-content .w-checkout-order .order-summary .order-list li > span:first-child {
  flex: 1;
}
.w-checkout .modal-container .modal-content .w-checkout-order .order-summary .order-list > li {
  text-decoration: none;
  border-bottom: solid 1px #cfcfcf;
}
.w-checkout .modal-container .modal-content .w-checkout-submit label {
  font-weight: normal;
}
.w-checkout .modal-container .modal-content .w-checkout-submit a {
  white-space: nowrap;
}
.w-checkout .modal-container .modal-content .w-checkout-submit .submit,
.w-checkout .modal-container .modal-content .w-checkout-submit .terms {
  margin-bottom: 8px;
}
.w-checkout .modal-container .modal-content .w-checkout-submit .terms {
  padding: 0 8px;
  display: flex;
  align-items: center;
}
.w-checkout .modal-container .modal-content .w-checkout-submit .terms label {
  padding-left: 8px;
}
.w-checkout .modal-container .modal-content .w-checkout-submit .terms-mpc {
  margin: 0;
  padding: 0 4px;
}
.w-checkout .modal-container .modal-content .w-checkout-submit .submit-button {
  padding: 0;
  display: flex;
  margin: 0 auto;
  width: auto;
  position: relative;
}
.w-checkout .modal-container .modal-content .w-checkout-submit .submit-button > img {
  margin: 0;
  height: 36px;
}
.w-checkout .modal-container .modal-content .w-checkout-submit .submit-button > img.w-checkout-disabled {
  position: absolute;
  transition: 0.1s ease-in all;
  opacity: 0;
}
.w-checkout .modal-container .modal-content .w-checkout-submit .submit-button.button-disabled > .w-checkout-disabled {
  opacity: 1;
}
.w-checkout .modal-container .modal-content .w-checkout-submit .submit-button label {
  padding-left: 8px;
}
.w-checkout-button > img {
  margin: 0;
}

.m-checkout-customer-type > .button-group {
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
  align-content: stretch;
}
.m-checkout-customer-type > .button-group > .button,
.m-checkout-customer-type > .button-group > .button-primary {
  position: relative;
  flex: 1;
  width: 100%;
}
.m-checkout-customer-type > .button-group > .button > input,
.m-checkout-customer-type > .button-group > .button-primary > input {
  display: none;
}
.m-checkout-customer-type > .button-group:before, .m-checkout-customer-type > .button-group:after {
  content: none;
}

.checkout-country-single {
  font-weight: normal;
}

.checkout-country-label {
  margin: 1em 0;
}

.w-checkout-option--onpay-mobilepay .w-checkout-button.loading::before {
  background-color: #5a78ff;
}

.w-checkout--onpay-mobilepay strong, .w-checkout--onpay-mobilepay span, .w-checkout--onpay-mobilepay label {
  color: #3c3246;
}
.w-checkout--onpay-mobilepay input[type=text],
.w-checkout--onpay-mobilepay textarea,
.w-checkout--onpay-mobilepay button {
  border-radius: 6px;
}
.w-checkout--onpay-mobilepay .modal-header > .fa.fa-times {
  background-color: #3c3246;
}
.w-checkout--onpay-mobilepay .terms-checkbox, .w-checkout--onpay-mobilepay .terms-radio,
.w-checkout--onpay-mobilepay .delivery-method-header-checkbox,
.w-checkout--onpay-mobilepay .delivery-method-header-radio,
.w-checkout--onpay-mobilepay .droppoint-checkbox,
.w-checkout--onpay-mobilepay .droppoint-radio,
.w-checkout--onpay-mobilepay .conditions .input-group:hover .material-checkbox,
.w-checkout--onpay-mobilepay .conditions .input-group:hover .material-radio {
  box-shadow: 0 0 0 8px rgba(90, 120, 255, 0.2), 0 0 0 8px inset rgba(90, 120, 255, 0.2);
}
.w-checkout--onpay-mobilepay .material-radio {
  color: #5a78ff;
  position: relative;
  box-shadow: 0 0 0 0 rgba(90, 120, 255, 0.2);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  min-height: 16px;
  min-width: 16px;
  display: inline-block;
  line-height: 1;
}
.w-checkout--onpay-mobilepay .material-radio > input {
  cursor: pointer;
  width: 100%;
  height: 100%;
  border: 2px solid #3c3246;
  outline: 0;
  background-color: transparent;
  -webkit-appearance: none;
}
.w-checkout--onpay-mobilepay .material-radio > input:checked {
  border-color: #5a78ff;
}
.w-checkout--onpay-mobilepay .material-radio:focus, .w-checkout--onpay-mobilepay .material-radio:hover {
  box-shadow: 0 0 0 8px rgba(90, 120, 255, 0.2), 0 0 0 8px inset rgba(90, 120, 255, 0.2);
}
.w-checkout--onpay-mobilepay .material-radio > input[type=radio] {
  border-radius: 100px;
}
.w-checkout--onpay-mobilepay .material-radio > input[type=radio]:checked ~ .material-marker {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  width: 8px;
  height: 8px;
  background: #5a78ff;
  box-sizing: border-box;
  border-radius: 100px;
  pointer-events: none;
}
.w-checkout--onpay-mobilepay .material-checkbox {
  color: #5a78ff;
  position: relative;
  box-shadow: 0 0 0 0 rgba(90, 120, 255, 0.2);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  min-height: 16px;
  min-width: 16px;
  display: inline-block;
  line-height: 1;
}
.w-checkout--onpay-mobilepay .material-checkbox > input {
  cursor: pointer;
  width: 100%;
  height: 100%;
  border: 2px solid #3c3246;
  outline: 0;
  background-color: transparent;
  -webkit-appearance: none;
}
.w-checkout--onpay-mobilepay .material-checkbox > input:checked {
  border-color: #5a78ff;
}
.w-checkout--onpay-mobilepay .material-checkbox:focus, .w-checkout--onpay-mobilepay .material-checkbox:hover {
  box-shadow: 0 0 0 8px rgba(90, 120, 255, 0.2), 0 0 0 8px inset rgba(90, 120, 255, 0.2);
}
.w-checkout--onpay-mobilepay .material-checkbox > input[type=checkbox] {
  border-radius: 3px;
}
.w-checkout--onpay-mobilepay .material-checkbox > input[type=checkbox]:checked {
  background-color: #5a78ff;
}
.w-checkout--onpay-mobilepay .material-checkbox > input[type=checkbox]:checked ~ .material-marker {
  top: 6%;
  left: 30%;
  position: absolute;
  width: 6px;
  height: 12px;
  transform: scale(0.8) rotate(45deg);
  border-color: white;
  border-style: solid;
  border-width: 0 2px 2px 0;
  pointer-events: none;
}
.w-checkout--onpay-mobilepay .droppoint-active .empty-location {
  background: #5a78ff;
  border-radius: 0 0 6px 6px;
  color: #fff;
}
.w-checkout--onpay-mobilepay .droppoint-active .empty-location .random-choice {
  display: flex;
  margin-top: 8px;
}
.w-checkout--onpay-mobilepay .droppoint-active .empty-location .random-choice .material-radio > input:checked {
  border-color: #fff;
}
.w-checkout--onpay-mobilepay .droppoint-active .empty-location .random-choice .material-radio > input[type=radio]:checked ~ .material-marker {
  background-color: #fff;
}
.w-checkout--onpay-mobilepay .droppoint-active .empty-location .random-choice-label {
  color: inherit;
  margin-left: 4px;
}
.w-checkout--onpay-mobilepay #customerNoticeDelivery,
.w-checkout--onpay-mobilepay #customerNotice,
.w-checkout--onpay-mobilepay .droppoint-result,
.w-checkout--onpay-mobilepay .empty-title,
.w-checkout--onpay-mobilepay .target-container,
.w-checkout--onpay-mobilepay .country-select,
.w-checkout--onpay-mobilepay .delivery-method-header,
.w-checkout--onpay-mobilepay .change-delivery,
.w-checkout--onpay-mobilepay .change-droppoint {
  border-radius: 6px;
}
.w-checkout--onpay-mobilepay .modal-container .modal-content .w-checkout-delivery .target-container.open,
.w-checkout--onpay-mobilepay .modal-container .modal-content .w-checkout-delivery .droppoint-active .droppoint-result,
.w-checkout--onpay-mobilepay .modal-container .modal-content .w-checkout-delivery .delivery-method.active .delivery-method-header {
  border: 2px solid #3c3246;
  border-radius: 6px;
}
.w-checkout--onpay-mobilepay .modal-container .modal-content .w-checkout-delivery .delivery-method.active.droppoint-method .delivery-method-header {
  border-radius: 6px 6px 0 0;
  border-bottom: 0;
  margin-bottom: 0;
}
.w-checkout--onpay-mobilepay .modal-container .modal-content .w-checkout-delivery .delivery-method.active.droppoint-method .droppoint-active .droppoint-result {
  border-radius: 0 0 6px 6px;
  border-top-style: dashed;
}
.w-checkout--onpay-mobilepay .change-delivery,
.w-checkout--onpay-mobilepay .change-droppoint {
  font-weight: 600;
  border: solid 2px #5a78ff;
  color: #5a78ff;
  background-color: #fff;
  transition: all 0.2s ease-out;
}
.w-checkout--onpay-mobilepay .change-delivery:hover,
.w-checkout--onpay-mobilepay .change-droppoint:hover {
  color: #fff;
  background-color: #5a78ff;
}
.w-checkout--onpay-mobilepay .droppoint-search > .w-search,
.w-checkout--onpay-mobilepay .droppoint-search > .w-zipcode {
  border-radius: 0;
}
.w-checkout--onpay-mobilepay .droppoint-search > .w-zipcode {
  border: none;
  border-bottom: 2px solid #3c3246;
}
.w-checkout--onpay-mobilepay .droppoint-list {
  border-radius: 0 0 6px 6px;
}
.w-checkout--onpay-mobilepay .w-checkout-notification {
  background: #5a78ff;
  border-radius: 0 0 6px 6px;
  color: #fff;
}
.w-checkout--onpay-mobilepay .modal-container .modal-content .w-checkout-link {
  color: #5a78ff;
}
.w-checkout--onpay-mobilepay .modal-container .modal-content .w-checkout-container-close > .fa {
  background: #3c3246;
}
.w-checkout--onpay-mobilepay .modal-container .modal-content .w-checkout-order .order {
  border-radius: 6px;
  border: solid 2px #3c3246;
}
.w-checkout--onpay-mobilepay .modal-container .modal-content .w-checkout-order .order-summary:not(.is-collapsed) {
  background-color: #3c3246;
}
.w-checkout--onpay-mobilepay .modal-container .modal-content .w-checkout-order .order-summary:not(.is-collapsed) * {
  color: #fff;
}
.w-checkout--onpay-mobilepay .modal-container .modal-content .w-checkout-order .order-summary:not(.is-collapsed) .w-checkout-link {
  color: #5a78ff;
}
.w-checkout--onpay-mobilepay .modal-container .modal-content .w-checkout-order .order-summary:not(.is-collapsed) + .order-total {
  background-color: #3c3246;
}
.w-checkout--onpay-mobilepay .modal-container .modal-content .w-checkout-order .order-summary:not(.is-collapsed) + .order-total > strong {
  color: #fff;
}
.w-checkout--onpay-mobilepay .modal-container .modal-content .w-checkout-order .order-summary.is-collapsed + .order-total:hover {
  background-color: #3c3246;
}
.w-checkout--onpay-mobilepay .modal-container .modal-content .w-checkout-order .order-summary.is-collapsed + .order-total:hover > strong, .w-checkout--onpay-mobilepay .modal-container .modal-content .w-checkout-order .order-summary.is-collapsed + .order-total:hover span {
  color: #fff;
}

.w-cookie {
  top: 0;
  z-index: 9999999;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.w-cookie button:focus,
.w-cookie label.switch:has(input:focus) {
  outline: 3px solid;
  outline-offset: 3px;
}

.w-cookie-form {
  position: relative;
  border-radius: 3px;
  max-width: 90vw;
  overflow: hidden;
}

.w-cookie-loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.w-cookie-loader .svg-spinner {
  height: 72px;
  width: 72px;
  padding: 0;
}

.w-cookie-options {
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.w-cookie-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.w-cookie-consent {
  overflow-y: auto;
  opacity: 1;
  transition: all 0.255s ease;
  margin: 2em 2em 0 2em;
}

.w-cookie-listing {
  max-height: 0px;
  overflow-y: hidden;
  opacity: 0;
  transition: all 0.255s ease;
}

.w-cookie-extended-info, .w-cookie-description {
  transition: all 0.255s ease;
  overflow-y: hidden;
}

.extended-open .w-cookie-description,
.w-cookie-consent:not(.extended-open) .w-cookie-extended-info {
  max-height: 0px !important;
  opacity: 0;
  visibility: hidden;
}

.toggle-extended .fa {
  transition: all 0.255s ease;
  transform: rotate(0deg);
}
.toggle-extended:not(.is-closed) .fa {
  transform: rotate(90deg);
}

.w-cookie-toggle-consent-show {
  display: none;
}

.w-cookie-toggle {
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all 0.255s ease;
}
.w-cookie-toggle.button.cookie-button {
  display: flex;
  margin: 0 auto;
}
.w-cookie-toggle.button.cookie-button:not(.is-closed) {
  border-radius: 2px 2px 0px 0px;
  border-bottom: 0px;
}
.w-cookie-toggle.button.cookie-button.is-closed {
  border-radius: 0px 0px 2px 2px;
  border-top: 0px;
  flex-direction: column-reverse;
}
.w-cookie-toggle.button.cookie-button.is-closed .fa {
  transform: rotate(180deg);
}

.w-cookie-details .accordion-btn:focus {
  outline-offset: -3px;
}
.w-cookie-details .w-cookie-listing {
  max-height: 80vh;
  overflow-y: auto;
  opacity: 1;
  margin: 2em 0px 0.5em;
}
.w-cookie-details .w-cookie-consent {
  max-height: 0px !important;
  overflow-y: hidden;
  opacity: 0;
  transition: all 0.255s ease;
  margin: 0px 2em;
}
.w-cookie-details .w-cookie-toggle-details-show {
  display: none;
}
.w-cookie-details .w-cookie-toggle-consent-show {
  display: block;
}

.w-cookie-consent fieldset:nth-child(1) {
  -ms-grid-column: 1;
}

.w-cookie-consent fieldset:nth-child(2) {
  -ms-grid-column: 2;
}

.w-cookie-consent fieldset:nth-child(3) {
  -ms-grid-column: 3;
}

.w-cookie-consent fieldset:nth-child(4) {
  -ms-grid-column: 4;
}

@media only screen and (max-width: 600px) {
  .w-cookie-options {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .w-cookie-consent {
    overflow-x: hidden;
    max-height: 65vh !important;
    margin: 0.5em 0 0 0;
  }
  .w-cookie-description {
    max-height: none !important;
  }
}
@media screen and (device-aspect-ratio: 40/71) {
  .w-cookie-consent {
    overflow-x: hidden;
    height: 350px !important;
    margin: 0.5em;
  }
}
.w-cookie-option-title {
  margin-bottom: 5px;
}

.w-cookie-consent fieldset {
  display: flex;
  padding: 0;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.w-cookie-consent {
  overflow-y: auto;
  line-height: 1.4;
}

.w-cookie-consent::-webkit-scrollbar,
.w-cookie-list::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 5px;
}

.w-cookie-consent::-webkit-scrollbar-thumb,
.w-cookie-list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

.w-cookie-link {
  margin-top: 1.5em;
}

@media screen and (min-width: 768px) {
  .w-cookie-actions-wrapper .w-cookie-actions.w-cookie-actions {
    margin: 1em 0;
  }
  .w-cookie-actions-wrapper .w-cookie-actions.w-cookie-actions button {
    margin-bottom: 0;
  }
  .w-cookie.center .w-cookie-form {
    max-width: 768px;
  }
  .w-cookie.top-static {
    position: static;
  }
  .w-cookie:not(.center) {
    height: auto;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  }
  .w-cookie.bottom {
    top: auto;
    bottom: 0;
  }
}
.w-cookie.center {
  background: rgba(0, 0, 0, 0.2);
}

.w-cookie.center .w-cookie-form {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.button-primary.cookie-button,
.button.cookie-button,
.button-text.cookie-button {
  border-radius: 2px;
  height: 46px;
  padding: 0 1em;
  font-size: 1em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.w-cookie-actions button {
  margin: 0 0.5em 0.5em;
  width: auto;
}

.cookie-button.button-text-simple {
  font-size: 1em;
  line-height: 1;
  padding: 0px;
  text-decoration: none !important;
  background: transparent;
}

.w-cookie-actions-wrapper {
  display: flex;
  flex-direction: column;
}
.w-cookie-actions-wrapper .w-cookie-actions {
  margin: 0.5em -0.5em 0;
}

.w-cookie-details .w-cookie-actions-wrapper {
  flex-direction: column-reverse;
}

.productfilter .checkbox-color {
  height: 14px;
  width: 14px;
  border-radius: 3px;
  display: inline-flex;
  border: 1px solid;
  border-color: inherit;
}
.productfilter .checkbox-color + .checkbox-text {
  margin-left: 5px;
}
.productfilter .input-group-main .checkbox-color {
  vertical-align: sub;
  margin-right: 5px;
}
.productfilter .multiple_select {
  position: relative;
}
.productfilter .multiple_select .button {
  transition: 0.1s ease-out;
  text-align: left;
}
.productfilter .multiple_select .button::after {
  font-family: FontAwesome;
  content: "\f078";
  padding-left: 1em;
  float: right;
}
.productfilter .multiple_select-dropdown {
  margin-top: 5px;
  position: absolute;
  z-index: 100;
  display: none;
  transition: 0.2s ease-out;
}
@media (max-width: 767px) {
  .productfilter .multiple_select-dropdown {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: fixed;
  }
}
.productfilter .multiple_select-dropdown-blur {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 200%;
}
@media (max-width: 767px) {
  .productfilter .multiple_select-dropdown-blur {
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
  }
}
.productfilter .multiple_select-dropdown.open {
  display: flex;
}
.productfilter .multiple_select-dropdown .checklist {
  min-width: 200px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 1;
  border-radius: 3px;
  background: #ffffff;
}
@media (max-width: 767px) {
  .productfilter .multiple_select-dropdown .checklist {
    max-height: 80vh;
    width: 80vw;
    margin: auto;
    padding: 0;
  }
}
.productfilter .multiple_select-dropdown .checklist-body {
  overflow-y: auto;
  max-height: 50vh;
  padding: 10px;
  margin-right: 3px;
  margin-top: 3px;
}
.productfilter .multiple_select-dropdown .checklist-body::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 5px;
}
.productfilter .multiple_select-dropdown .checklist-body::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px) {
  .productfilter .multiple_select-dropdown .checklist-body {
    padding: 20px 10px;
    max-height: 60vh;
  }
  .productfilter .multiple_select-dropdown .checklist-body .form-group {
    padding: 10px;
  }
}
.productfilter .multiple_select-dropdown .checklist-header {
  border-bottom: 0.5px solid;
}
.productfilter .multiple_select-dropdown .checklist-footer {
  width: 100%;
  margin: 0;
  border-top: 0.5px solid;
  padding: 10px;
}
.productfilter .multiple_select-dropdown .checklist-footer-close, .productfilter .multiple_select-dropdown .checklist-footer-reset {
  cursor: pointer;
  width: 50%;
  float: left;
  min-height: 1px;
}
@media (max-width: 767px) {
  .productfilter .multiple_select-dropdown .checklist-footer, .productfilter .multiple_select-dropdown .checklist-header {
    padding: 20px;
  }
}
.productfilter .multiple_select .checkbox {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 500;
}
.productfilter .multiple_select .checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.productfilter .multiple_select .checkbox input[type=checkbox]:checked ~ .checkbox-checkmark::after {
  opacity: 1;
}
.productfilter .multiple_select .checkbox-checkmark {
  transition: 0.1s ease-out;
  cursor: pointer;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  height: 8px;
  width: 8px;
  padding: 6px;
  border-radius: 2px;
  border: solid 1px;
  margin-right: 10px;
}
.productfilter .multiple_select .checkbox-checkmark::after {
  content: "";
  border-style: solid;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  opacity: 0;
  left: 0;
  top: -2px;
  bottom: 0;
  right: 0;
  width: 4px;
  height: 8px;
  margin: auto;
}
.productfilter .multiple_select .form-group {
  padding: 5px 0;
  margin: 0;
}
.productfilter .multiple_select .form-group .input-group .input-group-main {
  border: none;
  margin: 0;
  background: transparent;
  width: auto;
  padding: 0 10px;
  font-weight: 400;
}

.accordion-section {
  transition: all 0.255s ease;
  border-top: 0px;
  padding: 0px 10px;
  border-radius: 0px 0px 3px 3px;
  overflow: hidden;
  opacity: 1;
}
.accordion-section > :first-child {
  padding-top: 10px;
}
.accordion-section > :last-child {
  padding-bottom: 10px;
}

.accordion-btn {
  min-height: 36px;
  padding: 2px 10px 2px 0px;
  width: 100%;
  border: 2px solid currentColor;
  border-color: currentColor !important;
  border-radius: 3px;
  background: transparent;
  text-align: left;
  line-height: 1;
  display: flex;
  align-items: center;
  outline: none;
  border-radius: 3px 3px 0px 0px;
}
.accordion-btn .fa {
  transition: all 0.125s ease;
  transform: rotate(0deg);
  pointer-events: none;
  min-width: 46px;
  height: 18px;
  margin: auto;
  font-size: 18px;
  -ms-grid-column: 1;
}
.accordion-btn .accordion-text {
  flex: 1;
  pointer-events: none;
  -ms-grid-column: 2;
}
.accordion-btn .accordion-text .accordion-title {
  line-height: 2;
  font-weight: 600;
}

.closed .accordion-section {
  max-height: 0px !important;
  overflow-y: hidden;
  border: 2px solid transparent;
  opacity: 0;
}
.closed .accordion-btn {
  border-radius: 3px;
}
.closed .accordion-btn .fa {
  transform: rotate(-90deg);
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-rail {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.225s;
  transition: 0.225s;
  border-radius: 3px;
}

.switch-rail:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 3px;
  transition: box-shadow 0.255s ease;
}

input:disabled + .switch-rail {
  opacity: 60%;
}

input:checked + .switch-rail:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}