/** Shopify CDN: Minification failed

Line 80:22 Expected ":"

**/
/* Hides element on desktop */
@media (min-width: 768px) {
    .hidden-on-desktop,
    .hide-on-desktop {
        display: none !important;
    }
}
/* Hides element on mobile */
@media screen and (max-width: 767px) {
    .hidden-on-mobile,
    .hide-on-mobile {
        display: none !important;
    }
}

/* CRO Optimeringer - Mobile */
@media (max-width: 767px) {
    .wt-product__slider--padding {
        margin-bottom: 0;
    }

    [mobile-image-size=normal] .wt-product__gallery [data-gallery] .swiper-scrollbar {
        width: 100% !important;
        bottom: 11px;
    }

    .title-wrapper {
        display: flex;
        justify-content: space-between;
    }

    .title-wrapper h1 {
        display: flex;
        align-items: center;
    }

    .wt-product__price {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
    }
    .wt-product__price .price {
        display: flex;
        align-items: center;
    }

    .wt-product__name {
        font-size: 1.2rem !important;
    }

    .price__container span {
        font-size: 1.2rem !important;
    }

    .wt-product__information-popup .wt-product__button.wt-product__link {
        padding-bottom: 0;
    }

    .wt-product__add-to-cart {
        margin-top: 0;
    }
}

/* CRO Optimeringer - Desktop */
@media screen and (min-width: 768px) {
    .price__sale__details-wrapper span {
        font-size: 1.3rem !important;
    }
    .wt-product__add-to-cart {
        margin-bottom: 0;
    }
}

  .linked-products { 
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }

  .linked-product {
    display: inline-block;
    text-align: center;
    text-decoration:none!important;
  }

  .linked-product img {
    height: 140px;
    object-fit: contain;
    margin: 1px;
    padding: 1px;
    border: 1px solid transparent;
  }

  .linked-product:hover img,
  .linked-product.current img {
    border: 1px solid black;
  }

  .linked-product-title {
    font-size: 12px;
    margin-top: 5px;
    display: block;
  }
  .linked-product p {
    font-size: 8px;
    color: #000;
    font-weight: 700;
    margin:0px;
    padding:0px;
}



.collection__grid .card:has(.card__img--hover):hover .card__img, 
.collection__grid .card:has(.card__img--hover):hover .card__video {
    transition: opacity .2s ease-out .2s;
    opacity: 0;
}

.collection__grid .card:has(.card__img--hover):hover .card__img--hover, 
.collection__grid .card:has(.card__img--hover):hover .card__video--hover {
    opacity: 1;
    transition: opacity .3s ease-out;
}

ul.supporting-menu__payment {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 12px;
}
ul.supporting-menu__payment li {
    padding: 4px;
    display: flex;
    filter: grayscale(1);
}
.expected-delivery {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
    line-height: 16px;
}
#CartDrawer .wt-cart__subtotal * {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 8px;
}

.wt-localization-trigger__label {
    font-size: 0;
    gap: 0;
}
.wt-header__localization__triggers {
    margin: 0;
}
.wt-localization-trigger .svg-icon {
    display: none;
}


.search-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    width: calc(100vw - 30px);
    background: var(--bg-body, #fff);
    max-width: 480px;
    overflow-x: hidden;
    transform: translate(100%);
    will-change: transform;
    height: 100%;
    display: block;
    transition: all .3s ease-in-out;
}
.search-wrapper .bg-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: #000;
    right: 0;
    top: 0;
    opacity: 30%;
    transform: translate(100%);
    transition: all .3s ease-in-out;
}
.search-drawer-open .search-wrapper .bg-overlay {
    transform: translate(0);
}

/* Overlay */
.search-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Drawer panel */
.search-drawer__panel {
  position: absolute;
  top: 0;
  right: -100%;
  width: 480px;
  max-width: 90%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  padding: 30px;
  transition: right 0.3s ease;
}

.search-drawer.active {
    transform: translateX(0);
}
.search-drawer.active .search-drawer__overlay { opacity: 1; }
.search-drawer.active .search-drawer__panel { right: 0; }

/* Header */
.search-drawer__header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 35;
    background: var(--bg-body, #fff);
    border-bottom: 1px solid var(--color-border);
    padding: 17px 30px;
    height: 72px;
}
.search-drawer__header div {
    line-height: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.search-drawer__header div input#SearchInput {
    border: 0;
    padding: 0;
    font-size: 14px;
    outline: 0;
    width: 100%;
    text-transform: capitalize;
    margin-right: 20px;
}

.search-drawer__close {
    padding: 0;
    border: none;
    cursor: pointer;
}

.side-panel-content {
    padding: 25px 30px;
}

/* Titles and tags */
.search-drawer__title {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.search-drawer__tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    margin-left: -5px;
    gap: 10px;
}

.wt-header__aside .wt-header__search {
    justify-content: center;
    width: max-content !important;
    min-width: max-content !important;
}
.wt-header__aside {
    min-width: max-content;
    margin-right: 12px !important;
    margin-left: 16px !important;
}
.wt-header__aside .wt-header__search svg {
    cursor: pointer;
}

.search-drawer__tag {
    display: inline-flex;
    white-space: nowrap;
    font-size: 10px;
    text-transform: uppercase;
    height: 31px;
    padding: 0 14px;
    align-items: center;
    font-weight: var(--font-body-bold-weight, 600);
    border: 1px solid var(--color-border);
}
.search-drawer__tag:hover { background: #f5f5f5; }

.search-drawer__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    row-gap: 20px;
}

.search-drawer__image-wrapper {
  position: relative;
}

.search-drawer__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e5e5e5;
  color: #333;
  font-size: 11px;
  padding: 4px 8px;
  font-weight: 600;
}

.search-drawer__image {
  width: 100%;
  display: block;
}

.search-drawer__quickview {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 6px;
  border-radius: 4px;
  text-decoration: none;
}

.search-drawer__icon {
  width: 16px;
  height: 16px;
}

.search-drawer__details {
  margin-top: 10px;
}
.search-drawer__trigger {
  background: none;
  border: 1px solid #ccc;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 14px;
}


.side-panel-content .search-drawer__trending .search-drawer__grid .mall {
    flex-direction: column;
    text-align: center;
}
.side-panel-content .search-drawer__trending .card__container .card__badges--item {
    font-size: 10px;
}
.side-panel-content h4.search-drawer__title {
    margin-top: 0;
    margin-bottom: 15px;
}

@media (max-width: 1200px) {
    .wt-header__aside {
        margin-left: 0 !important;
    }
}


.wt-localization-drawer {
    height: max-content !important;
    top: 50% !important;
    left: -100% !important;
    opacity: 0;
    visibility: hidden;
}
.wt-localization-drawer--open {
    transform: translate(-50%, -50%) !important;
    left: 50% !important;
    opacity: 1;
    visibility: visible;
}
.wt-localization-drawer__menu {
    display: none;
}
.wt-localization-drawer__tab__content {
    padding: 0 !important;
}
.wt-localization-drawer__body:after {
    content: unset !important;
}
select#country-selector {
    width: 100%;
    border: 1px solid #dddddd;
    appearance: none;
    cursor: pointer;
}
select#country-selector:focus-visible {
    outline: none !important;
}
.wt-localization-drawer__current-country {
    text-align: center;
}
.wt-localization-drawer__body {
    padding-bottom: 16px !important;
}
.wt-localization-drawer__close {
    height: 20px;
    width: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
}
.wt-localization-drawer__close .wt-cart__drawer__close {
    height: 100%;
    width: 100%;
}
.wt-localization-drawer__header {
    justify-content: center !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}
.wt-localization-drawer__header .wt-drawer__title__text {
    font-weight: 600;
    letter-spacing: 0;
    font-size: 16px;
}
.country-selector-dropdown {
    position: relative;
}
.country-selector-dropdown span.change-button {
    font-size: 14px;
    text-decoration: underline;
    text-transform: capitalize;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
}

a.hero__button.hero__button--primary.hero__button--secondary.secondary-navigation__link.secondary-navigation__link--active:hover {
    background-color: #000;
    color: #fff;
}
.wt-featured-nav .secondary-navigation .secondary-navigation__swiper-slide a.hero__button {
    margin-top: 0;
}
@media (max-width: 1200px) {
    .country-selector-dropdown span.change-button {
        font-size: 12px;
        line-height: 14px;
    }
    body.template-product .wt-product__gallery .wt-slider__container {
        margin-right: -30px;
    }
}
@media (max-width: 767.98px) {
    .wt-localization-drawer {
        max-width: 90% !important;
    }
    .wt-localization-drawer__body {
        padding: 15px !important;
    }
    .wt-localization-drawer__header {
        padding: 15px 15px 0 !important;
    }
}

.template-password .password-header {
    height: 0;
}
.template-password .password-header a.wt-header__logo__link {
    display: none;
}

.template-password .bf-password.bf-password--live {
    overflow: auto;
}

.template-password .bf-password.bf-password--live::before {
    content: '';
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 30%;
    z-index: 6;
}
.template-password .bf-password__content {
    z-index: 7;
}