/*
Theme Name: Number Three One - Child
Theme URI: https://standoutmedia.dk/
Author: Standoutmedia A/S
Author URI: https://standoutmedia.dk/
Description: Et helt specielt Standoutmedia Tema
Template: number-three-one
Text Domain: number-three-child
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/


/* ===== CSS Variables ===== */

:root {
    /* Font sizes */
    --h1: 73px;
    --h2: 50px;
    --h3: 35px;
    --h4: 30px;
    --h5: 25px;
    --h6: 18px;
    --p: 20px;

    /* Gaps */
    --gap-l: 90px;
    --gap-m: 60px;
    --gap-s: 30px;

    /* font families */
    --h-fam: "Times New Roman", serif;
    --p-fam: "Arial", sans-serif;
    --btn-fam: var(--p-fam);

    /* colors */
    --color-1: #c5cbb9;
    --color-2: #baaf9c;
    --color-bg: #f6f6f6;
    --color-text: #626262;
    --color-dark: #626262;
    --color-overlay: rgb(0 0 0 / 30%);

    /* transitions */
    --transition: .175s ease-out;

    /* Margin on the right and left of the main content sections (change 0 to 1 to match template distances) */
    --content-margin: calc(0 * var(--gap-m));
    --slider-text-width: 800px;

    /* Theme defined variables from PHP */
    --content-width: initial;
    --sidebar-width: initial;
    /* END Theme defined variables from PHP */
}

/* ===== END CSS Variables ===== */


/*======================================================================//
// style.css                                                            //
//======================================================================*/


/**
 * Buttons
 */

button,
.stom-button a,
input[type="button"],
input[type="reset"],
input[type="submit"],
.gform_wrapper .gform_footer input[type=submit] {
    padding: .6em 1.2em;
    color: var(--color-text);
    border-color: var(--color-text);
    background-color: transparent;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus,
.stom-button a:hover,
.stom-button a:active,
.stom-button a:focus,
.gform_wrapper .gform_footer input[type=submit]:hover,
.gform_wrapper .gform_footer input[type=submit]:active,
.gform_wrapper .gform_footer input[type=submit]:focus {
    background-color: var(--color-1);
    border-color: var(--color-1);
    color: var(--color-text);
}

button .stom-custom-svg svg,
.stom-button a .stom-custom-svg svg,
input[type="button"] .stom-custom-svg svg,
input[type="reset"] .stom-custom-svg svg,
input[type="submit"] .stom-custom-svg svg,
.gform_wrapper .gform_footer input[type=submit] .stom-custom-svg svg {
    transition: transform var(--transition);
}

button .stom-custom-svg:not(:first-child) svg,
.stom-button a .stom-custom-svg:not(:first-child) svg,
input[type="button"] .stom-custom-svg:not(:first-child) svg,
input[type="reset"] .stom-custom-svg:not(:first-child) svg,
input[type="submit"] .stom-custom-svg:not(:first-child) svg,
.gform_wrapper .gform_footer input[type=submit] .stom-custom-svg:not(:first-child) svg {
    margin-left: .1em;
}

button:hover .stom-custom-svg svg,
.stom-button:hover a .stom-custom-svg svg,
input[type="button"]:hover .stom-custom-svg svg,
input[type="reset"]:hover .stom-custom-svg svg,
input[type="submit"]:hover .stom-custom-svg svg,
.gform_wrapper .gform_footer input[type=submit]:hover .stom-custom-svg svg {
    transform: translateX(.2em);
}


.stom-button.btn-white a {
    color: var(--color-text);
    background-color: #fff;
    border-color: #fff;
}

.stom-button.btn-white:hover a {
    color: var(--color-text);
    background-color: var(--color-1);
    border-color: var(--color-1);
}


.stom-button.btn-white-border a {
    color: #fff;
    background-color: transparent;
    border-color: #fff;
}


.stom-button.hover-white a:hover,
.stom-button.hover-white a:active,
.stom-button.hover-white a:focus {
    background-color: #fff;
    border-color: #fff;
    color: var(--color-text);
}


.stom-button.btn-small a {
    padding: .4em 1.5em;
    font-size: var(--p);
}


p+.stom-button {
    margin-top: calc(var(--gap-m) - 1.5em);
}


.button-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/**
 * END Buttons
 */



/**
 * General
 */
html,
body {
    overflow: initial;
}


h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.widget-title,
#colophon .copyright {
    color: inherit;
    font-weight: 400;
}

h4+h4:last-child {
    margin-bottom: 0;
}


a:not(:hover) {
    text-decoration: none;
}


.section-wrap.has-background,
.section-wrap.section-fullpage .section {
    padding-inline: var(--gap-s);
}


.section-wrap.section-fullpage.has-background .section {
    padding-inline: 0;
}


.section-wrap.stom-billede-sektion.section-fullpage.has-background .section {
    padding-top: 0;
    padding-bottom: 0;
}


.stom-custom-svg,
.slick-prev .stom-custom-svg,
.slick-next .stom-custom-svg {
    display: inline-block;
    line-height: 0;
}


.stom-grid-section .grid-element.inner-background {
    grid-template-rows: auto 1fr;
}

.stom-grid-section .grid-element .overlay {
    overflow: hidden;
}

.stom-grid-section .grid-element.center-content .overlay {
    justify-content: center;
}

.stom-grid-section.section-fullpage .grid-element.has-background .overlay {
    padding: var(--gap-s);
}

.stom-grid-section .grid-element.center-content .full-element-link:hover~.overlay a {
    text-decoration: underline;
}

.stom-grid-section .grid-element.center-content .full-element-link~.overlay a svg {
    transition: transform var(--transition);
}

.stom-grid-section .grid-element.center-content .full-element-link:hover~.overlay a svg {
    transform: translateX(.2em);
}

.stom-grid-section .woocommerce ul.products {
    position: relative;
    z-index: 7;
}

.stom-grid-section .woocommerce ul.products li.product {
    margin: 0;
}


.stom-css-grid,
.stom-grid-section .section .grid-elements {
    gap: var(--gap-s);
}

.slick-track:before,
.slick-track:after {
    content: none;
}


.stom-billede-sektion.section-fullpage.image-text-double-space .stom-cols-6 {
    padding-top: calc(var(--gap-l) * 2);
    padding-bottom: calc(var(--gap-l) * 2);
}

.stom-billede-sektion.section-fullpage.image-text-small-space .stom-cols-6 {
    padding-top: var(--gap-s);
    padding-bottom: var(--gap-s);
}


body:not(.stom-gform-legacy) .gform_wrapper .gform_footer,
body:not(.stom-gform-legacy) .gform_wrapper .gform_page_footer {
    margin-top: var(--gap-s);
}


.section-wrap.section-fullpage.grid-slider.grid-slider-always .section .grid-element.fullwidth {
    padding: 0 var(--gap-s);
}


.stom-billede-sektion.picture-left .stom-picture {
    display: flex;
    justify-content: flex-end;
}

.stom-billede-sektion:not(.has-background).section-fullpage .stom-picture img,
.stom-billede-sektion:not(.has-background).section-fullpage .stom-picture video {
    width: calc(100% - var(--gap-s));
}

.stom-billede-sektion .stom-picture video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stom-billede-sektion .stom-picture .video-element-play {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: var(--gap-s);
    left: var(--gap-s);
    width: 80px;
    height: 80px;
    font-size: 25px;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
    z-index: 3;
}

.stom-billede-sektion .stom-picture .video-element-play a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}


.stom-billede-sektion:not(.not-fullwidth) {
    position: relative;
    overflow: visible;
}

.stom-billede-sektion:not(.not-fullwidth).has-background.animated-bg {
    overflow: hidden;
}


#page {
    overflow: initial;
}


#content {
    max-width: 100%;
    padding-left: var(--gap-s);
    padding-right: var(--gap-s);
}


*:not(.page-slider-section)+main>.section-wrap:first-child,
*:not(.page-slider-section)+main>.stomFEE-edit-cta:first-child+.section-wrap,
*:not(.page-slider-section)+main>#content {
    margin-top: 0;
}


.faq-page .aabningstider-list {
    margin-right: auto;
    margin-left: auto;
}

.faq-page .aabningstider-list thead {
    display: none;
}


.faq-page .mere-tekst-wrapper {
    border-bottom: 1px solid var(--color-text);
}

.faq-page .mere-tekst-wrapper>button,
.faq-page .mere-tekst-wrapper>button:hover {
    padding-right: 0;
    padding-left: 0;
    border: none;
    color: var(--color-text);
    border-color: var(--color-text);
    background-color: transparent;
    font-size: var(--h5);
    line-height: 1.5;
}

.faq-page .mere-tekst-wrapper>button .stom-custom-svg {
    margin-top: 0.2em;
    margin-right: .3em;
    margin-left: 0;
    float: left;
}

.faq-page .mere-tekst-wrapper>button .stom-custom-svg svg {
    transform: none;
}

.faq-page .mere-tekst-wrapper .mere-tekst {
    margin: calc(var(--gap-s) / 2) 0 var(--gap-s);
}


.stom-grid-section.grid-section-2-by-1 .grid-element:nth-child(1) .overlay img {
    width: 100%;
}


.stom-grid-section.grid-section-2-by-1 .section .grid-elements {
    gap: calc(var(--gap-s) - 5px) var(--gap-s);
}

.grid-section-2-by-1 .grid-elements .grid-element.featured {
    grid-row: span 2;
}

.stom-grid-section.grid-section-2-by-1 .grid-element .overlay {
    justify-content: flex-start;
}

.stom-grid-section.grid-section-2-by-1 .grid-element .overlay p {
    height: 100%;
}

.stom-grid-section.grid-section-2-by-1 .grid-element.featured .overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-section-2-by-1 .grid-elements .grid-element.featured+.grid-element {
    align-self: flex-end;
}


.limit-width.section-wrap .section {
    max-width: 950px;
}


a.stom-social-shortcode:hover .stom-custom-svg {
    color: var(--color-overlay);
}


.grid-img-fit-text {
    height: 0;
    min-height: 100%;
    overflow: hidden;
}

.grid-img-fit-text img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.single-post .entry-content .panel-layout {
    max-width: var(--content-width);
    margin: 0 auto;
}


.section-wrap.section-wide {
    --content-width: 1560px;
}


.section-wrap.stom-billede-sektion.section-wide .stom-cols-6 {
    width: calc(var(--content-width-2) / 2);
    max-width: 50%;
}

.stom-billede-sektion.picture-left.section-wide .stom-cols-6 {
    margin-left: 50%;
}

.stom-billede-sektion.picture-right.section-wide .stom-cols-6 {
    margin-left: calc(50% - (var(--content-width-2) / 2));
}


img[src*="https://pubads.g.doubleclick.net/activity"] {
    position: absolute;
    margin-top: -1px;
}

/**
 * END General
 */



/**
 * Custom classes
 */

.design-heading {
    display: inline-block;
    font-family: "Rastanty Cortez";
    font-size: 65px;
    color: var(--color-1);
    line-height: .7;
}

.design-heading.smaller {
    font-size: 2.5em;
    color: #626262;
}

.design-heading.current-color {
    color: currentColor;
}

.design-heading:not(.no-buffer) {
    padding-top: .1em;
}

.design-heading .stom-custom-svg {
    font-size: calc(var(--h1) + 10px);
    margin-bottom: 10px;
}


.text-center {
    text-align: center;
}


.section-quote {
    color: var(--color-2);
}

.section-quote * {
    color: inherit;
}


.section-wrap.no-space-before,
#content+.section-wrap.no-space-before,
main .section-wrap~.section-wrap.no-space-before {
    margin-top: 0;
}

.section-wrap.no-space-after,
#content+.section-wrap.no-space-after,
main .section-wrap~.section-wrap.no-space-after {
    margin-bottom: 0;
}

.section-wrap.double-space-before,
#content+.section-wrap.double-space-before,
main .section-wrap~.section-wrap.double-space-before {
    margin-top: calc(2 * var(--gap-l));
}

.section-wrap.double-space-after,
#content+.section-wrap.double-space-after,
main .section-wrap~.section-wrap.double-space-after {
    margin-bottom: calc(2 * var(--gap-l));
}

.section-wrap.triple-space-before,
#content+.section-wrap.triple-space-before,
main .section-wrap~.section-wrap.triple-space-before {
    margin-top: calc(3 * var(--gap-l));
}

.section-wrap.triple-space-after,
#content+.section-wrap.triple-space-after,
main .section-wrap~.section-wrap.triple-space-after {
    margin-bottom: calc(3 * var(--gap-l));
}

.bg-bottom-left {
    background-position: bottom left;
}


.animated-bg .animated-bg-element {
    pointer-events: none;
}

.animated-bg .animated-bg-element .stom-custom-svg {
    color: #fff;
    opacity: .25;
}


.grid-element.animated-bg .animated-bg-element {
    grid-column: 1/-1;
    grid-row: 1/-1;
}

.grid-element.animated-bg.bg-bottom-left .animated-bg-element {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.grid-element.animated-bg.bg-bottom-left .animated-bg-element .stom-custom-svg {
    width: 85%;
    height: auto;
    transform: translate(-32.5%, 41.5%);
}

.grid-element.animated-bg.bg-bottom-left .animated-bg-element .stom-custom-svg svg {
    transform-origin: bottom left;
    animation: wind-sway-bottom-left 5s ease-in-out forwards infinite;
}

@keyframes wind-sway-bottom-left {
    0% {
        transform: rotate(0) skewX(0);
    }

    50% {
        transform: rotate(1.8deg) skewX(-3.5deg);
    }

    100% {
        transform: rotate(0) skewX(0);
    }
}

.animated-bg.bg-bottom-right .animated-bg-element {
    position: absolute;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.stom-billede-sektion.animated-bg.bg-bottom-right .animated-bg-element {
    max-width: 50%;
}

.animated-bg.bg-bottom-right .animated-bg-element .stom-custom-svg {
    /* transform: scaleX(-1) translate(-94px, 96px); */
    transform: scaleX(-1) translate(-16%, 23%);
}

.animated-bg.bg-bottom-right .animated-bg-element svg {
    width: 583px;
    max-width: 100%;
    height: auto;
    transform-origin: bottom left;
    animation: wind-sway-bottom-right 4s ease-in-out forwards infinite;
}

.animated-bg-element~.stom-center-box {
    position: relative;
    z-index: 1;
}

.animated-bg:not(.stom-billede-sektion) .section {
    position: relative;
    z-index: 1;
}

.animated-bg.stom-billede-sektion .stom-cols-6 {
    position: relative;
    z-index: 1;
}

@keyframes wind-sway-bottom-right {
    0% {
        transform: rotate(0) skewX(0);
    }

    50% {
        transform: rotate(1.8deg) skewX(-3.5deg);
    }

    100% {
        transform: rotate(0) skewX(0);
    }
}


.animated-bg.bg-top-right .animated-bg-element {
    position: absolute;
    right: 0;
    top: 0;
}

.animated-bg.bg-top-right .animated-bg-element .stom-custom-svg {
    transform: translate(40%, -51%);
}

.animated-bg.bg-top-right .animated-bg-element svg {
    width: 100%;
    max-width: 100%;
    height: auto;
    transform-origin: top right;
    animation: wind-sway-top-right 4s ease-in-out forwards infinite;
}

@keyframes wind-sway-top-right {
    0% {
        transform: rotate(0) skewX(0);
    }

    50% {
        transform: rotate(1.8deg) skewX(-3.5deg);
    }

    100% {
        transform: rotate(0) skewX(0);
    }
}


.animated-bg.bg-top-left .animated-bg-element {
    left: 51%;
    top: 0;
    right: unset !important;
    bottom: unset !important;
    transform: rotate3d(0, 0, 1, 180deg) rotate3d(2, 1, 0, 180deg);
}


.stom-billede-sektion.animated-bg.bg-top-left .stom-picture {
    z-index: 1;
}

.stom-billede-sektion.animated-bg.bg-top-left .design-heading {
    color: var(--color-dark);
}


.fixed-bg .fixed-bg-element-wrap {
    position: absolute;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: -1;
}

.fixed-bg.bg-top-minus .fixed-bg-element-wrap {
    margin-top: calc(-1 * var(--gap-l));
}

.fixed-bg.bg-bottom-right .fixed-bg-element-wrap,
.fixed-bg.bg-bottom-left .fixed-bg-element-wrap {}

.fixed-bg.bg-top-right .fixed-bg-element-wrap,
.fixed-bg.bg-bottom-right .fixed-bg-element-wrap {
    text-align: right;
}

.fixed-bg .fixed-bg-element {
    width: 100% !important;
}

.fixed-bg.bg-top-right.bg-type-1 .fixed-bg-element .stom-custom-svg,
.fixed-bg.bg-bottom-right.bg-type-1 .fixed-bg-element .stom-custom-svg {
    transform: translateX(34%);
}

.fixed-bg.bg-top-left.bg-type-1 .fixed-bg-element .stom-custom-svg,
.fixed-bg.bg-bottom-left.bg-type-1 .fixed-bg-element .stom-custom-svg {
    transform: translateX(-34%);
}

.fixed-bg:not(.section-quote) .fixed-bg-element svg {
    color: var(--color-1);
}

.fixed-bg.bg-type-1 .fixed-bg-element svg {
    width: 450px;
    margin-top: -3%;
    transform: rotateZ(-30deg);
}

.fixed-bg.bg-type-2 .fixed-bg-element svg {
    width: 401px;
    margin-left: var(--gap-s);
}

.fixed-bg.bg-type-3 .fixed-bg-element svg {
    width: 505px;
    margin: 14.5% -34% 0 0;
    transform: rotateZ(45deg);
}

.fixed-bg.bg-type-4 .fixed-bg-element svg {
    width: 531px;
    color: var(--color-2);
    transform: translateX(-33%);
}

.fixed-bg.bg-type-5 .fixed-bg-element svg {
    width: 401px;
}

/**
 * END Custom classes
 */



/**
 * Slick slider
 */

.slick-prev {
    left: var(--gap-s);
}

.slick-next {
    right: var(--gap-s);
}

.slick-prev,
.slick-next,
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    width: auto;
    height: auto;
    padding: 16.5px;
    font-size: 25px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    box-shadow: none;
    transform: none;
}

.slick-prev .stom-custom-svg {
    transform: scaleX(-1);
}

/**
 * END Slick slider
 */



/**
 * Header
 */

header .top-bar-usp {
    background-color: var(--color-1);
}

header .top-bar-usp .section {
    --content-width: 1425px;
    justify-content: space-between;
}

header .top-bar-usp.section-wrap:not(.stom-grid-section) .section:after {
    content: none;
}

header .top-bar-usp .section>* {
    flex-basis: 0;
}

header .top-bar-usp .section>*:nth-child(1) {
    text-align: left;
}

header .top-bar-usp .section>*:nth-child(2) {
    text-align: center;
}

header .top-bar-usp .section>*:nth-child(3) {
    text-align: right;
}

header .top-bar-usp .section .stom-custom-svg {
    font-size: 1.5em;
}


.style-header-02 .header-wrapper {
    margin-inline: 0;
}

.style-header-02 .header-wrapper {
    max-width: 100%;
    padding-left: var(--gap-s);
    padding-right: var(--gap-s);
}

.style-header-02 .header-inner {
    width: 100%;
}

header.style-header-02 .main-navigation {
    justify-content: space-between;
}

header.style-header-02 .main-navigation>* {
    flex-grow: 1;
    flex-basis: 0;
}

header .menu-container>ul.menu,
header .menu-container>.mega-menu-wrap,
header .menu-container>.mega-menu-wrap>ul.menu {
    height: 100%;
}

header .main-navigation li.mega-menu-item {
    position: static;
    width: 100%;
}

header .main-navigation .current-menu-item>a,
header .main-navigation .current-menu-ancestor>a {
    text-decoration: underline;
}

.style-header-02 #primary-menu>li:first-child>a,
.style-header-02 #mega-menu-primary>li:first-child>a {
    /*padding-left: 0;*/
}

header.style-header-02 .main-navigation ul.menu li>a {
    padding-left: 50px;
    padding-right: 50px;
}

header .main-navigation ul.menu ul a {
    width: 300px;
    justify-content: flex-start;
}


/* Mega menu */

header .main-navigation li.custom-mega-menu,
header .main-navigation li.custom-mega-menu li {
    position: static;
}

header .main-navigation ul.menu li.custom-mega-menu ul.sub-menu {
    padding-top: calc(var(--gap-s) - 10px);
    padding-bottom: calc(var(--gap-l) - 10px);
    font-size: 1em;
    box-shadow: none;
    z-index: 1;
}

header .main-navigation ul.menu li.custom-mega-menu ul li>a {
    width: 100%;
    justify-content: flex-start;
    z-index: 5;
    padding: 7px var(--gap-s);
    border-bottom: 1px solid transparent;
}

header .main-navigation ul.menu li.custom-mega-menu ul ul li>a {
    margin-left: var(--gap-s);
}

header .main-navigation ul.menu li.custom-mega-menu>ul>li>a {
    padding: 7px var(--gap-s);
    border-bottom: 1px solid var(--color-2);
    padding-left: 0;
    margin-left: var(--gap-s);
}

header .main-navigation ul li:hover>a,
header .main-navigation ul.menu li.custom-mega-menu ul li:hover>a,
header .main-navigation ul.menu li.custom-mega-menu li:not(.current-menu-ancestor) ul li.fake-hover>a {
    text-decoration: underline;
}

header .main-navigation li.custom-mega-menu:hover {
    z-index: 2;
}

header .main-navigation li.custom-mega-menu:hover>ul {
    right: 0;
    left: 0;
}

header .main-navigation li.custom-mega-menu:hover>ul:before,
header .main-navigation li.custom-mega-menu:hover>ul:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    background-color: var(--color-1);
}

header .main-navigation li.custom-mega-menu:hover>ul:before {
    right: 50%;
    margin: 0 0 0 var(--gap-s);
    z-index: 11;
}

header .main-navigation li.custom-mega-menu:hover>ul:after {
    right: 0;
    margin: 0 var(--gap-s);
    z-index: 0;
}

header .main-navigation li.custom-mega-menu>ul>li {
    width: 21.3%;
}

header .main-navigation li.custom-mega-menu>ul>li:hover>ul {
    top: 1px;
    right: 0;
    left: auto;
    width: calc(100% - 21.3%);
}

header .main-navigation li.custom-mega-menu>ul>li>ul>li {
    width: 36.5%;
}

/* header .main-navigation li.custom-mega-menu li:not(:hover):not(.display-content):not(.current-menu-item) > .menu-item-custom-content,
header .main-navigation li.custom-mega-menu li.current-menu-ancestor li:not(:hover):not(.current-menu-item) > .menu-item-custom-content,
header .main-navigation li.custom-mega-menu li.current-menu-ancestor li:hover ~ li > .menu-item-custom-content */

header .main-navigation li.custom-mega-menu li:not(:hover):not(.display-content)>.menu-item-custom-content {
    display: none;
}

header .main-navigation li.custom-mega-menu .menu-item-custom-content {
    position: absolute;
    top: 0;
    right: 0;
    /* left: 36.5%; */
    /* width: 30%; */
    left: 31.5%;
    width: 40%;
    margin: 0 auto;
    /* background-color: #fff; */
}

header .main-navigation li.custom-mega-menu .menu-item-custom-content:before {
    content: '';
    position: absolute;
    top: 1px;
    right: -100vw;
    bottom: -20px;
    left: -100vw;
    min-height: 100%;
    background-color: #fff;
    z-index: -1;
}

header .main-navigation li.custom-mega-menu .menu-item-custom-content img {
    width: auto;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

header .main-navigation li.custom-mega-menu .menu-item-custom-content p {
    font-size: var(--h6);
}

header .main-navigation li.custom-mega-menu .menu-item-custom-content .full-box-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    z-index: 1;
}

header .main-navigation li.custom-mega-menu .menu-item-custom-content a {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 0;
}

header .main-navigation li.custom-mega-menu .menu-item-custom-content:hover a:not(.full-box-link) {
    text-decoration: underline;
}

header .main-navigation li.custom-mega-menu .menu-item-custom-content a svg {
    transition: transform var(--transition);
}

header .main-navigation li.custom-mega-menu .menu-item-custom-content:hover a svg {
    transform: translateX(.2em);
}

/* END Mega menu */

header.style-header-02 .main-navigation .site-branding {
    display: flex;
    align-items: center;
    flex-grow: 0;
    flex-basis: auto;
}

.style-header-02 .site-branding {
    text-align: center;
}

.style-header-02 .site-branding #logo {
    padding: 25px 0;
    color: var(--color-2);
}

.site-branding #logo img,
.site-branding #logo svg {
    max-width: 206px;
}

.header-sticky-active header .site-branding #logo img,
.header-sticky-active header .site-branding #logo svg {
    transition: height, max-height, width, max-width;
    transition-duration: .175s;
}

.style-header-02 .site-branding #logo svg path {
    fill: currentColor;
}

.style-header-02 .primary-menu-2 {
    display: flex;
    justify-content: flex-end;
}

header.site-header .section-wrap .section,
.header-sticky-active.scrolled .style-header-02 .section-wrap .section {
    padding: 10px 0;
}

/**
 * END Header
 */



/**
 * Slider
 */

.page-slider-section .image-aligner img,
.page-slider-section .slide-element video,
.page-slider-section .slide-element iframe {
    /* max-height: 100%; */
}

body .page-slider-section .slide-element .service-aligner {
    line-height: 0;
}

body .page-slider-section .slide-element iframe {
    max-height: calc(100vh - var(--header-height));
    aspect-ratio: 16/9;
}

.page-slider-section .slider-text {
    color: #fff;
}

.page-slider-section .slider-text-inner {
    /* --content-width: 1260px; */
}

.page-slider-section .slider-text-inner .slider-text-inner-wrapper {
    max-width: 100%;
}

.page-slider-section .slider-text h1 {
    letter-spacing: -0.8px;
}

.page-slider-section .slider-text .stom-button:not(.btn-small) a {
    font-size: var(--h5);
    padding-top: .45em;
    padding-bottom: .45em;
}

.page-slider-section.main-slider-section {
    font-size: 1rem;
}

.page-slider-section.main-slider-section p {
    max-width: 855px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.2;
}

/**
 * END Slider
 */



/**
 * Posts shortcode & archive/category
 */

.stom-grid-section.post-listing .grid-element .overlay {
    justify-content: flex-start;
}

.stom-grid-section.post-listing .grid-elements {
    gap: var(--gap-m);
}

.post-listing .stom-posts .stom-post-wrapper.featured-post {
    grid-column: span 2;
}

.post-listing .stom-posts .stom-post-thumb {
    position: relative;
    padding-top: 100%;
    font-size: 0;
    overflow: hidden;
}

.post-listing .stom-posts .stom-post-thumb img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    object-fit: cover;
    transition: transform var(--transition);
}

.post-listing .stom-posts .stom-post-wrapper:hover .stom-post-thumb img {
    transform: scale(1.05);
}

.post-listing .stom-posts .stom-post-wrapper.featured-post .stom-post-thumb {
    padding-top: calc(50% - (var(--gap-m) / 2));
}

.post-listing .stom-posts .stom-post-wrapper.featured-post .stom-post-thumb img {
    /* --gap-m: 60;
	aspect-ratio: calc(580 * 2 + var(--gap-m)) / 680; */
}

.post-listing .stom-posts .stom-post-categories {
    margin: 15px 0 3px;
    font-size: 14px;
    text-transform: uppercase;
}

.post-listing .stom-posts .stom-post-categories .cat-delimiter {
    margin: 0 .5em;
}

.post-listing .stom-posts .stom-post-title h4 {
    margin-bottom: 0;
}

.post-listing .stom-posts .stom-post-content {
    margin-top: .5em;
    line-height: 1.25;
}

/**
 * END Posts shortcode & archive/category
 */



/**
 * Post category
 */

.posts-archive .slider-text-inner-wrapper {
    text-align: center;
}

.posts-archive .slider-text-inner-wrapper .design-heading {
    color: inherit;
}

.posts-archive .page-slider-section .slider-text .button-group {
    margin-top: 2.5em;
}

.posts-archive .header-divider {
    background-color: var(--color-1);
}

.archive.category.posts-archive header.page-header {
    position: sticky;
    top: calc(var(--header-height) - 32px);
    background-color: #fff;
    z-index: 48;
}

.posts-archive .posts-archive-filters-wrap {
    --p: 18px;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 var(--gap-m);
    padding: 0;
    font-size: var(--p);
    border-bottom: 1px solid var(--color-1);
}

.posts-archive .posts-archive-filters-group {
    --gap-s: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--gap-s);
}

.posts-archive .posts-archive-filters-group .single-filter {}

.posts-archive .posts-archive-filters-group .filter-toggle {
    padding: 25px 0;
    cursor: pointer;
}

.posts-archive .posts-archive-filters-group .single-filter img {
    width: .7em;
    height: auto;
    margin-left: .2em;
}

.posts-archive .posts-archive-filters-group .single-filter.active img {
    transform: rotateZ(180deg);
}

.posts-archive .posts-archive-filters-group .filter-body {
    position: absolute;
    min-width: 250px;
    margin-top: 1px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 1px 6px -2px #484848;
    z-index: 500;
}

.posts-archive .posts-archive-filters-group .filter-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.posts-archive .posts-archive-filters-group .filter-body li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.posts-archive .posts-archive-filters-group .filter-body li input {
    margin-right: 5px;
    pointer-events: none;
}

.posts-archive .posts-archive-filters-group .filter-body li label {
    display: inline-block;
    flex-grow: 1;
    margin-right: 10px;
    line-height: 2;
    cursor: inherit;
}

.posts-archive .posts-archive-filters-group .filter-body li label .post-count {
    margin-left: 3px;
}

.posts-archive .page-slider-section~main {
    margin-top: 0;
}

.posts-archive-layout-2.posts-archive #primary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.posts-archive-layout-2.posts-archive .post-content-wrapper {
    padding-bottom: 0;
}


.posts-archive-layout-2.posts-archive #ctis-loading,
.posts-archive-layout-2.posts-archive .ctis-finished-notice {
    grid-column: 1 / -1;
}

.pagination .nav-links {
    justify-content: center;
}

/**
 * END Post category
 */



/**
 * Single post
 */

.single-post .page-slider-section .slider-text-inner {
    text-align: center;
}

.single-post .single-post-date-cat {
    margin-bottom: 0;
}

.single-post .page-slider-section .button-group {
    margin-top: var(--gap-s);
}

.single-post .page-slider-section .image-aligner img {
    aspect-ratio: 1920 / 780;
}


.single-post #main-content {
    --content-width: 1560px;
    --content-margin: calc(1 * var(--gap-m));
}

.single-post .post-intro-section,
.single-post .post-text-section {
    --content-width: 930px;
}

.single-post .post-intro-section h2,
.single-post .post-intro-section h3,
.single-post .post-intro-section h4,
.single-post .post-intro-section strong,
.single-post .post-intro-section a {
    color: var(--color-2);
}

.single-post .post-intro-section strong,
.single-post .post-intro-section a {
    font-weight: normal;
    text-decoration: none;
}

.post-intro-section.fixed-bg:not(.section-quote) .fixed-bg-element svg {
    color: var(--color-2);
}


.stom-grid-section.post-gallery-section .section .grid-elements {
    /* gap: calc(var(--gap-s) - 5px) var(--gap-s); */
}

.post-gallery-section .grid-elements .grid-element.featured {
    grid-row: span 2;
}

.post-gallery-section .grid-elements .grid-element .overlay {
    justify-content: flex-start;
}

.post-gallery-section .grid-elements .grid-element .overlay img {
    /* margin-bottom: 8px; */
    aspect-ratio: 765 / 410;
    object-fit: cover;
}

.post-gallery-section .grid-elements .grid-element.featured .overlay img {
    height: 100%;
    /* aspect-ratio: 765 / calc(410 * 2 + 21); */
}

.post-gallery-section .grid-elements .grid-element .overlay p {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    font-size: 16px;
}

.post-gallery-section .grid-elements .grid-element .overlay p br {
    display: none;
}

.single-post #main-content .section-wrap:not(.section-fullpage) {
    margin-inline: var(--gap-s);
}

.single-post .stom-billede-sektion .stom-cols-6 {
    padding-top: calc(var(--gap-l) * 2);
    padding-bottom: calc(var(--gap-l) * 2);
}

.single-post .stom-billede-sektion.picture-left .stom-cols-6 {
    padding-right: var(--gap-l);
}

.single-post .stom-billede-sektion .stom-cols-6 h4+.stom-button {
    margin-top: calc(var(--gap-s) - 15px);
}


.post-some-share-section {
    text-align: center;
}

.post-some-share-section .some-share-icon {
    font-size: 66px;
    color: var(--color-2);
}

.post-some-share-section .some-share-icon+h4 {
    margin-top: -.5em;
}

.post-some-share-section .post-some-share-buttons {
    --gap-s: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--gap-s) - 4px);
}

.post-some-share-section .post-some-share-button {
    position: relative;
    line-height: 0;
}

.post-some-share-section .post-some-share-button .stom-custom-svg {
    font-size: 34px;
}

.post-some-share-section .post-some-share-button .fb_iframe_widget,
.post-some-share-section .post-some-share-button [data-pin-log="button_pinit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    z-index: 3;
}

.post-some-share-section .post-some-share-button .fb_iframe_widget span,
.post-some-share-section .post-some-share-button .fb_iframe_widget iframe {
    width: 100% !important;
    height: 100% !important;
}

.post-some-share-section .post-some-share-button.some-share-email {}

.post-some-share-section .post-some-share-button.some-share-email .stom-custom-svg {
    padding: 2px;
    font-size: 30px;
}

.post-some-share-section .post-some-share-button.some-share-email .stom-custom-svg svg {
    padding: 3px;
    background-color: var(--color-text);
    color: #fff;
    border-radius: 3.5px;
}


.post-related-product-section {
    position: relative;
    /* background-color: var(--color-1); */
}

.section-wrap.has-background.post-related-product-section .section {
    padding: 0;
}

.post-related-product-section .design-heading {
    color: var(--color-text);
}

.post-related-product-section.animated-bg.bg-bottom-right .animated-bg-element .stom-custom-svg {
    transform: scaleX(-1) translate(-16%, 35%);
}


.post-related-posts-section .stom-posts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--gap-m);
    margin-top: calc(var(--gap-s) * 1.5);
}

.post-related-posts-section .post-related-posts-cta {
    margin-top: var(--gap-s);
    text-align: right;
}


.single-post #main-content+.section-wrap {
    margin-top: calc(var(--gap-l) * 2);
}

/**
 * END Single post
 */



/**
 * Instagram feed
 */

#footer-instagram .grid-element.has-background {
    height: 0;
    min-height: 100%;
    overflow: hidden;
}


.stom-grid-section.instagram .section.columns-2 .grid-elements {
    grid-template-columns: 50% 1fr;
}

.instagram.stom-grid-section .grid-element.icon-top-right .overlay {
    padding: var(--gap-s) var(--gap-s) calc(var(--gap-l) - 15px) calc(var(--gap-l) - 10px);
}

.instagram.stom-grid-section .grid-element.icon-top-right .overlay .stom-custom-svg {
    font-size: calc(var(--h2) + 15px);
}

.instagram.stom-grid-section h2 {
    font-size: calc(var(--h2) + 10px);
}

.section-wrap #sb_instagram #sbi_images,
.section-wrap #sb_instagram #sbi_images .sbi_item {
    padding: 0 calc(0.5 * var(--gap-s));
}

.section-wrap #sb_instagram #sbi_images {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-s) 0;
}

#sb_instagram.sbi_col_3 #sbi_images .sbi_item {
    width: calc(100% / 3);
}

#sb_instagram .sbi_type_carousel svg.fa-clone {
    display: none !important;
}

/**
 * END Instagram feed
 */



/**
 * Newsletter
 */

#footer-newsletter .section .grid-elements {
    grid-template-columns: 50% 1fr;
    gap: var(--gap-l);
}

#footer-newsletter .mc4wp-form .form-field:not(.form-field-submit) {
    margin-bottom: 20px;
}

#footer-newsletter .mc4wp-form input:not([type="submit"]),
#footer-newsletter .mc4wp-form select {
    width: 100%;
    font-size: 1rem;
    padding: 3px 0;
    background: transparent;
    outline: none;
    border: none;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-text);
}

#footer-newsletter .mc4wp-form .form-field-select {
    position: relative;
}

#footer-newsletter .mc4wp-form .form-field-select:after {
    content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='uuid-93e6ef3e-b74c-49cf-b859-8f31485237ea' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 58 30'%3E%3Cpath d='m57 16H1c-.5527 0-1-.4473-1-1s.4473-1 1-1h56c.5527 0 1 .4473 1 1s-.4473 1-1 1Z' fill='%23000'/%3E%3Cpath d='m43 30c-.2559 0-.5117-.0977-.707-.293-.3906-.3906-.3906-1.0234 0-1.4141l13.293-13.293L42.293 1.707c-.3906-.3906-.3906-1.0234 0-1.4141s1.0234-.3906 1.4141 0l14 14c.3906.3906.3906 1.0234 0 1.4141l-14 14c-.1953.1953-.4512.293-.707.293Z' fill='%23000'/%3E%3C/svg%3E");
    content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='uuid-93e6ef3e-b74c-49cf-b859-8f31485237ea' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 58 30'%3E%3Cpath d='m57 16H1c-.5527 0-1-.4473-1-1s.4473-1 1-1h56c.5527 0 1 .4473 1 1s-.4473 1-1 1Z' fill='currentColor'/%3E%3Cpath d='m43 30c-.2559 0-.5117-.0977-.707-.293-.3906-.3906-.3906-1.0234 0-1.4141l13.293-13.293L42.293 1.707c-.3906-.3906-.3906-1.0234 0-1.4141s1.0234-.3906 1.4141 0l14 14c.3906.3906.3906 1.0234 0 1.4141l-14 14c-.1953.1953-.4512.293-.707.293Z' fill='currentColor'/%3E%3C/svg%3E");
    position: absolute;
    top: 50%;
    right: 0;
    width: 1em;
    height: 1em;
    font-size: 16px;
    transform: translateY(-50%) rotateZ(90deg);
}

#footer-newsletter .mc4wp-form select {
    appearance: none;
}

#footer-newsletter .mc4wp-form .form-field-submit {
    margin-top: var(--gap-s);
    text-align: right;
}

#footer-newsletter .mc4wp-form [type="submit"] {
    padding-right: 1.6em;
    padding-left: 1.6em;
}

#footer-newsletter .mc4wp-form [type="submit"]:after {
    content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='uuid-93e6ef3e-b74c-49cf-b859-8f31485237ea' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 58 30'%3E%3Cpath d='m57 16H1c-.5527 0-1-.4473-1-1s.4473-1 1-1h56c.5527 0 1 .4473 1 1s-.4473 1-1 1Z' fill='currentColor'/%3E%3Cpath d='m43 30c-.2559 0-.5117-.0977-.707-.293-.3906-.3906-.3906-1.0234 0-1.4141l13.293-13.293L42.293 1.707c-.3906-.3906-.3906-1.0234 0-1.4141s1.0234-.3906 1.4141 0l14 14c.3906.3906.3906 1.0234 0 1.4141l-14 14c-.1953.1953-.4512.293-.707.293Z' fill='currentColor'/%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: .4em;
    font-size: var(--p);
}

/**
 * END Newsletter
 */



/**
 * Footer
 */

.single-post #main-content+.section-wrap,
#main-content+.section-wrap,
#main-content+.section-wrap~.section-wrap,
#colophon {
    margin-top: calc(var(--gap-l) * 2);
}


#colophon.footer-setting-03 {
    position: relative;
    border: none;
    background-color: var(--color-1);
}

#colophon.footer-setting-03:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 900px;
    background-image: url(images/footer-treeline.png);
    background-size: 988px auto;
    background-repeat: no-repeat;
    background-position: left -465px top;
    transform: translateY(-46.6%);
    opacity: 1;
    pointer-events: none;
}

#colophon.footer-setting-03 .section-wrap {
    padding-right: var(--gap-l);
    padding-left: var(--gap-l);
    border: none;
}

.footer-setting-03 .section-wrap .section {
    max-width: 100%;
}

.footer-setting-03 .section-wrap:not(:first-child) .section {
    border-top: 1px solid var(--color-text);
}

#colophon.footer-setting-03 .grid-elements {
    gap: var(--gap-s);
}


#colophon .widget-title {
    margin-bottom: 15px;
    font-family: "Times New Roman PSMT";
    font-size: calc(var(--h3) + 5px);
    font-weight: normal;
    line-height: 1;
}


.aabningstider-list {
    border-spacing: 0;
}

.aabningstider-list tbody tr:last-child {
    display: none;
}

.aabningstider-list tbody td {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
}


.footer-setting-03 .footer-widget-area .section {
    padding: var(--gap-l) 0;
}

.footer-setting-03 .footer-widget-area-extra .section {
    padding: calc(var(--gap-s) / 2) 0;
}

.footer-setting-03 .footer-widget-area-extra .textwidget {
    flex-wrap: wrap;
}

.footer-setting-03 .footer-widget-area-extra .textwidget>* {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-setting-03 .footer-widget-area-extra .textwidget>*:nth-child(1) {
    justify-content: flex-start;
}

.footer-setting-03 .footer-widget-area-extra .textwidget>*:nth-child(3) {
    justify-content: flex-end;
}

.widgets-footer_widgets_extra .socials-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.widgets-footer_widgets_extra .socials-wrapper a {
    font-size: var(--h4);
    color: var(--color-text);
}

.widgets-footer_widgets_extra .socials-wrapper .stom-fa-instagram {
    font-size: 1.15em;
}

.footer-widgets .textwidget img+br+img {
    margin-top: 5px;
}

#colophon ul li a {
    padding: 2px 0;
}

/**
 * END Footer
 */


#btn-back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 49;
}

#btn-back-to-top.solo {
    /* bottom: 20px; */
	bottom: 55px;
	right: 10px;
}

#btn-back-to-top a {
    padding: .4em;
    line-height: 0;
    background-color: #fff;
}

#btn-back-to-top a:hover {
    border-color: var(--color-text);
    background-color: var(--color-1);
}

#btn-back-to-top .stom-custom-svg {
    transform: rotateZ(-90deg);
}


/*======================================================================//
// END style.css                                                        //
//======================================================================*/


/*======================================================================//
// woocommerce.css                                                      //
//======================================================================*/


/**
 * Header
 */

#woo-icons .my-account,
#woo-icons .woo-search,
#woo-icons .site-header-cart,
#woo-icons .stomWF-favourites-list-link {
    margin: 0 18px;
}

#woo-icons>*:last-child {
    margin-right: 0;
}

header .stomWF-favourites-list-link {
    position: static;
    cursor: default;
}

#woo-icons .stom-custom-svg,
header .stomWF-favourites-list-link a {
    color: var(--color-text);
    font-size: 18px;
}

header .stomWF-favourites-list-link a {
    position: relative;
    padding: 0;
}

header .stomWF-favourites-list-link .favourites-added-list {
    top: 100%;
    right: 0;
}

header .stomWF-favourites-list-link .favourites-added-list .added-item {
    font-size: 16px;
}

#woo-icons .stomWF-favourites-list-link svg *,
#woo-icons .my-account svg * {
    stroke: none !important;
}

#woo-icons .woo-search .stom-custom-svg {
    transform: scaleX(-1);
}

#woo-icons .stomWF-favourites-list-link .custom-svg:after {
    content: '';
    position: absolute;
    top: 0;
    right: 4px;
    bottom: 0;
    left: 4px;
    clip-path: polygon(49% 20%, 30% 6%, 10% 12%, 6% 38%, 22% 67%, 50% 88%, 73% 72%, 95% 37%, 89% 12%, 69% 6%);
    background-color: transparent;
    transition: background-color var(--transition);
    z-index: -1;
}

#woo-icons .stomWF-favourites-list-link:hover .custom-svg:after,
#woo-icons .stomWF-favourites-list-link.list-open .custom-svg:after {
    background-color: var(--color-dark);
}

#woo-icons .site-header-cart {
    /* display: flex;
	align-items: center; */
}

#woo-icons .site-header-cart .stom-cart-icon {
    /* padding-right: 7px; */
    /* padding-left: 0; */
    font-size: 22px;
}

#woo-icons .site-header-cart .stom-cart-icon path {
    stroke: currentColor;
    stroke-width: 1px;
}

#woo-icons .site-header-cart .cart-contents {
    /* position: relative;
	width: 40px;
	height: 40px;
	border: 1px solid #626262;
	font-size: 18px;
	transition: color var(--transition), background-color var(--transition), border-color var(--transition); */
}

#woo-icons .site-header-cart .stom-cart-icon:hover+.mini-cart .cart-contents,
#woo-icons .site-header-cart .cart-contents:hover {
    /* background-color: var(--color-1);
	color: #fff; */
}

#woo-icons .site-header-cart .cart-contents span.count,
header .stomWF-favourites-list-link span.count {
    top: 0;
    right: 2px;
    bottom: auto;
    background-color: var(--color-1);
    transform: translate(50%, -30%);
}

header .stomWF-favourites-list-link span.count {
    top: -4px;
}

#woo-icons .site-header-cart .cart-contents span.count,
header .stomWF-favourites-list-link .count {
    color: inherit;
}


body.woocommerce-checkout .nav-wrap {
    display: block;
}

body.woocommerce-checkout .menu-container,
body.woocommerce-checkout #colophon {
    display: none;
}

body.woocommerce-checkout header.style-header-02 .main-navigation {
    justify-content: center;
}

/**
* END Header
*/



/**
 * General
 */

h2+.woocommerce,
h2+.products {
    margin-top: 30px;
}


.stom-grid-section .grid-elements.slick-slider .slick-arrow {
    filter: drop-shadow(0px 0px 1px #666);
}


.slick-arrow {
    transition: opacity var(--transition);
}

.slick-arrow.slick-disabled {
    opacity: 0;
}


.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background-color: var(--color-1);
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background-color: var(--color-2);
}

.button#place_order {
    background-color: var(--color-1) !important;
}

.button#place_order:hover {
    background-color: var(--color-2) !important;
}


#woo-icons .stom-off-canvas-wrapper {
    font-size: 18px;
}


.woocommerce ul.products li.custom-product-block {
    display: flex;
    flex-direction: column;
}

.woocommerce ul.products li.custom-product-block .block-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    padding: 0 var(--gap-s);
}
.woocommerce ul.products li.custom-product-block .block-content:has(.video-bg-element) {
	padding: 0;
}
.woocommerce ul.products li.custom-product-block .block-content .video-bg-element video {
	width: auto;
	max-width: 100%;
	height: auto;
}

.woocommerce ul.products li.custom-product-block .block-content .full-box-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
}


.woocommerce ul.products li.product-category a img,
.product-category-listing.stom-grid-section .grid-element.display-as-category img {
    margin-bottom: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 442 / 460;
    object-fit: cover;
}

.woocommerce ul.products li.product .stom-product-cat-img-wrap {
    margin-bottom: 10px;
    font-size: 0;
    overflow: hidden;
}

.woocommerce ul.products li.product .stom-product-cat-img-wrap img,
.product-category-listing.stom-grid-section .grid-element.display-as-category .overlay>p:first-child>img {
    transition: transform var(--transition);
}

.woocommerce ul.products li.product:hover .stom-product-cat-img-wrap img,
.product-category-listing.stom-grid-section .grid-element.display-as-category:hover .overlay>p:first-child>img {
    transform: scale(1.05);
}


ul.products li.product .stom-product-loop-image-wrap .product-sale-date-end {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 7px 15px 2px 0;
    line-height: 1.5;
    font-size: .9em;
    background-color: #fff;
    z-index: 3;
}


.grid-element .woocommerce ul.products {
    margin: 0;
}


.woocommerce ul.products,
.woocommerce-page ul.products {
    margin-bottom: calc(-1 * (var(--gap-s) - (var(--h3) / 100 * 20)));
}


.product-category-listing.stom-grid-section .section .grid-elements.slick-slider {
    gap: var(--gap-s);
}

.product-category-listing.stom-grid-section .section .slick-list {
    margin-top: -10px;
    padding-top: 10px;
}

.product-category-listing.stom-grid-section .grid-element-slider-wrap {
    padding: 0 calc(var(--gap-s) / 2);
}

.product-category-listing.stom-grid-section .grid-element-slider-wrap .slick-track {
    gap: 0;
    margin-left: 0;
}

.product-category-listing.stom-grid-section .grid-element-slider-wrap .grid-element.slick-slide {
    margin: 0 calc(var(--gap-s) / 2);
}

.product-category-listing.stom-grid-section.section-fullpage .grid-elements.slick-slider .slick-arrow.slick-prev,
.stom-grid-section.section-fullpage.slider-on-mobile .grid-elements.slick-slider .slick-arrow.slick-prev {
    left: calc(var(--gap-s) * 2);
}

.product-category-listing.stom-grid-section.section-fullpage .grid-elements.slick-slider .slick-arrow.slick-next,
.stom-grid-section.section-fullpage.slider-on-mobile .grid-elements.slick-slider .slick-arrow.slick-next {
    right: calc(var(--gap-s) * 2);
}


.product-category-listing.stom-grid-section .grid-element.display-as-category .overlay>p:first-child {
    margin-bottom: 10px;
    border: 10px solid var(--color-1);
    font-size: 0;
    overflow: hidden;
}


.woocommerce ul.products li.product:not(.product-category) img,
.woocommerce ul.products li.product:not(.product-category) video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.woocommerce ul.products li.product video {
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
	transition: transform var(--transition);
}


ul.products li.product .stom-add-to-favourites {
    top: 30px;
    right: 30px;
    bottom: auto;
    filter: drop-shadow(0px 0px 1px #333);
}

ul.products li.product .stom-add-to-favourites svg {
    width: 42px;
}

ul.products li.product .stom-add-to-favourites svg path {
    stroke: #fff;
    stroke-width: 5%;
    fill: transparent;
    transition: fill var(--transition);
}

ul.products li.product .stom-add-to-favourites.current-favourite svg path,
ul.products li.product .stom-add-to-favourites:hover svg path {
    fill: #fff;
}


.stom-grid-section .grid-element .overlay+.woocommerce {
    margin-top: 10px;
}

.woocommerce ul.products li.product .stom-product-loop-image-wrap {
    margin-bottom: 10px;
}

.woocommerce ul.products li.product .stom-product-loop-image-wrap img {
    transition: transform var(--transition);
}

.woocommerce ul.products li.product:hover .stom-product-loop-image-wrap img {
    transform: scale(1.05);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
    margin-bottom: 0;
}

.woocommerce ul.products li.product .product-category {
    margin: 0 0 15px;
    font-size: var(--h6);
    text-transform: none;
    opacity: 1;
}

.woocommerce ul.products li.product .price {
    margin-bottom: 0;
    font-size: var(--p);
    line-height: 0.9;
    color: var(--color-text);
}

.woocommerce ul.products li.product .price del {
    opacity: 1;
}

.woocommerce ul.products li.product .price ins {
    font-weight: normal;
}


.woocommerce-shop .page-slider-section~main {
    margin-top: var(--gap-s);
}


.woocommerce ul.products,
.woocommerce-page ul.products {
    margin: 0 calc(-1 * var(--gap-s)) 0 0;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    margin: 0 var(--gap-s) var(--gap-m) 0;
}

.woocommerce ul.products.columns-2 li.product,
.woocommerce-page ul.products.columns-2 li.product,
.woocommerce-page.columns-2 ul.products li.product,
.woocommerce.columns-2 ul.products li.product {
    width: calc((100% - (var(--gap-s) * 2)) / 2);
}

.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product,
.woocommerce-page.columns-3 ul.products li.product,
.woocommerce.columns-3 ul.products li.product {
    width: calc((100% - (var(--gap-s) * 3)) / 3);
}

.woocommerce ul.products.columns-4 li.product,
.woocommerce-page ul.products.columns-4 li.product,
.woocommerce-page.columns-4 ul.products li.product,
.woocommerce.columns-4 ul.products li.product {
    width: calc((100% - (var(--gap-s) * 4)) / 4);
}

.woocommerce ul.products.columns-5 li.product,
.woocommerce-page ul.products.columns-5 li.product,
.woocommerce-page.columns-5 ul.products li.product,
.woocommerce.columns-5 ul.products li.product {
    width: calc((100% - (var(--gap-s) * 5)) / 5);
}

.woocommerce ul.products.columns-6 li.product,
.woocommerce-page ul.products.columns-6 li.product,
.woocommerce-page.columns-6 ul.products li.product,
.woocommerce.columns-6 ul.products li.product {
    width: calc((100% - (var(--gap-s) * 6)) / 6);
}


.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
    margin-bottom: 0;
}

.woocommerce ul.products.columns-4 li.product .woocommerce-loop-category__title,
.woocommerce ul.products.columns-4 li.product .woocommerce-loop-product__title,
.woocommerce ul.products.columns-4 li.product h3 {
    font-size: var(--h4);
}

.woocommerce ul.products.columns-5 li.product .woocommerce-loop-category__title,
.woocommerce ul.products.columns-5 li.product .woocommerce-loop-product__title,
.woocommerce ul.products.columns-5 li.product h3 {
    font-size: var(--h5);
}

.woocommerce ul.products li.product-category .woocommerce-loop-category__title,
.woocommerce ul.products li.product-category .woocommerce-loop-product__title,
.woocommerce ul.products li.product-category h3,
.display-as-category h2 {
    font-size: var(--h3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.woocommerce ul.products li.product.custom-product-block h3 {
    margin-bottom: 15px;
    white-space: unset;
    overflow: unset;
    text-overflow: unset;
    font-size: var(--h3);
}


.stom-products-section .woocommerce:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}


.medaarbejder-sektion.section-fullpage .section .grid-elements {
    gap: var(--gap-m);
}

.medaarbejder-sektion .grid-element .overlay p:first-child {
    margin-bottom: .34em;
    height: 100%;
}

.medaarbejder-sektion .grid-element .overlay p:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: auto 580 / 680;
}

.medaarbejder-sektion span.title {
    font-size: calc(.7 * var(--p));
}

.medaarbejder-sektion h4 {
    margin-bottom: .175em;
}


.square-images .gallery .gallery-icon a {
    display: block;
    font-size: 0;
    overflow: hidden;
}

.square-images .gallery .gallery-icon img {
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform var(--transition);
}

.square-images .gallery .gallery-item:hover .gallery-icon img {
    transform: scale(1.05);
}

.gallery-caption {
    font-family: var(--h-fam);
    font-weight: 600;
    font-size: 1.2em;
}


.limit-main-content-width #content {
    max-width: 100%;
    width: calc(var(--content-width) + (var(--gap-m) * 2));
}


body.slider-video-fill .page-slider-section .slide-element .service-aligner {
    position: relative;
    width: 100%;
    max-height: calc(100vh - var(--header-height));
    overflow: hidden;
    aspect-ratio: 16/9;
}

body.slider-video-fill .page-slider-section .slide-element iframe {
    position: absolute;
    top: -9999px;
    right: -9999px;
    bottom: -9999px;
    left: -9999px;
    margin: auto;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
    /* aspect-ratio: unset; */
}


.kampagner_top_section .stom-cols-6 {
    min-height: 500px;
    justify-content: center;
    padding: calc(2 * var(--gap-l)) 0;
}

/**
 * END General
 */



/**
 * Product category
 */

.tax-product_cat ul.products,
.tax-product_cat.woocommerce ul.products,
.post-type-archive-product.woocommerce ul.products,
.woocommerce .tax-product_cat ul.products {
    display: grid;
    grid-template-columns: 100%;
    gap: var(--gap-m) var(--gap-s);
    grid-auto-flow: dense;
    margin: 0;
}

.tax-product_cat ul.products::after,
.post-type-archive-product.woocommerce ul.products::after,
.tax-product_cat.woocommerce ul.products::after,
.woocommerce .tax-product_cat ul.products::after,
.tax-product_cat ul.products::before,
.post-type-archive-product.woocommerce ul.products::before,
.tax-product_cat.woocommerce ul.products::before,
.woocommerce .tax-product_cat ul.products::before {
    content: none;
}

.tax-product_cat ul.products.columns-2,
.post-type-archive-product.woocommerce ul.products.columns-2,
.tax-product_cat.woocommerce ul.products.columns-2,
.woocommerce .tax-product_cat ul.products.columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tax-product_cat ul.products.columns-3,
.post-type-archive-product.woocommerce ul.products.columns-3,
.tax-product_cat.woocommerce ul.products.columns-3,
.woocommerce .tax-product_cat ul.products.columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tax-product_cat ul.products.columns-4,
.post-type-archive-product.woocommerce ul.products.columns-4,
.tax-product_cat.woocommerce ul.products.columns-4,
.woocommerce .tax-product_cat ul.products.columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tax-product_cat ul.products.columns-5,
.post-type-archive-product.woocommerce ul.products.columns-5,
.tax-product_cat.woocommerce ul.products.columns-5,
.woocommerce .tax-product_cat ul.products.columns-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tax-product_cat ul.products.columns-6,
.post-type-archive-product.woocommerce ul.products.columns-6,
.tax-product_cat.woocommerce ul.products.columns-6,
.woocommerce .tax-product_cat ul.products.columns-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.tax-product_cat ul.products li.product,
.post-type-archive-product.woocommerce ul.products li.product,
.tax-product_cat.woocommerce ul.products li.product,
.woocommerce .tax-product_cat ul.products li.product {
    width: auto;
    margin: 0;
}

.tax-product_cat ul.products li.product.featured,
.post-type-archive-product.woocommerce ul.products li.product.featured,
.tax-product_cat.woocommerce ul.products li.product.featured,
.woocommerce .tax-product_cat ul.products li.product.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.tax-product_cat ul.products li.product.featured .stom-product-loop-image-wrap .aligner {
    padding-top: calc(100% + var(--h5) + var(--h6) + var(--p) + var(--gap-m));
    /* padding-top: 117.8%; */
}

.woocommerce-products-header {
    display: flex;
    margin-right: calc(-1 * var(--gap-s));
    margin-left: calc(-1 * var(--gap-s));
}

.woocommerce-products-header>* {
    width: 50%;
}

.woocommerce-products-header .term-thumbnail {
    font-size: 0;
}

.woocommerce-products-header .term-thumbnail img {
    width: 100%;
    height: 100%;
    aspect-ratio: 960 / 600;
    object-fit: cover;
}

.woocommerce-products-header .term-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--gap-l);
    color: #fff;
    background-color: var(--color-1);
    word-break: break-word;
}

.woocommerce-products-header .term-description .design-heading {
    color: inherit;
}


.stom-product-count-sorting-wrap {
    --p: 18px;

    position: sticky;
    top: calc(var(--header-height) - 32px);
    align-items: center;
    margin-bottom: var(--gap-m);
    padding: 0;
    border-bottom: 1px solid var(--color-1);
    font-size: var(--p);
    background-color: #fff;
    z-index: 49;
}

.stom-product-count-sorting-wrap .product-count-sorting-left .product-sorting-inner,
.stom-product-count-sorting-wrap .product-count-sorting-right {
    --gap-s: 40px;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--gap-s);
}

.stom-product-count-sorting-wrap .bapf_sfilter,
.stom-product-count-sorting-wrap .bapf_sfilter.bapf_slidr .bapf_head {
    margin-bottom: 0;
}

.stom-product-count-sorting-wrap .bapf_sfilter {
    background-color: transparent;
    border: none;
}

.stom-product-count-sorting-wrap .bapf_sfilter .bapf_head {
    padding: 25px 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.stom-product-count-sorting-wrap .bapf_sfilter .bapf_head,
.stom-product-count-sorting-wrap .bapf_sfilter .bapf_head h3 {
    font-family: var(--p-fam);
    font-size: 1em;
    text-transform: none;
}

.stom-product-count-sorting-wrap .bapf_sfilter .bapf_head .berocket_widget_icon {
    width: .7em;
    height: auto;
    margin-left: .2em;
}

.stom-product-count-sorting-wrap .bapf_sfilter.bapf_ccolaps .bapf_head .berocket_widget_icon {
    transform: rotateZ(180deg);
}

.stom-product-count-sorting-wrap .bapf_slidr_jqrui .bapf_slidr_main {
    width: 100%;
    margin-top: 5px;
    background-color: #d1d1d1;
}

.stom-product-count-sorting-wrap .ui-slider-horizontal .ui-slider-range {
    background-color: var(--color-text);
}

.stom-product-count-sorting-wrap .bapf_slidr_main.ui-widget-content .ui-slider-handle {
    background-color: var(--color-2);
}

.stom-product-count-sorting-wrap .bapf_slidr_jqrui .bapf_slidr_all {
    display: flex;
    flex-wrap: wrap;
    column-gap: var(--gap-s);
    justify-content: space-between;
}

.stom-product-count-sorting-wrap .bapf_slidr_jqrui .bapf_slidr_all:after {
    content: none;
}

.stom-product-count-sorting-wrap .bapf_slidr_jqrui .bapf_from,
.stom-product-count-sorting-wrap .bapf_slidr_jqrui .bapf_to {
    width: auto;
    margin-bottom: 0;
    font-size: .9em;
}


.stom-product-count-sorting-wrap .woocommerce-ordering {
    position: relative;
}

.stom-product-count-sorting-wrap .woocommerce-ordering:before {
    content: 'Sortér efter';
    padding-right: 15px;
    font-weight: bold;
    background-image: url(images/chevron-down-light.svg);
    background-size: 11px auto;
    background-repeat: no-repeat;
    background-position: right center;
}

.stom-product-count-sorting-wrap .woocommerce-ordering select {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    padding: 0;
    background-color: transparent;
    border: none;
    line-height: 1;
    background-image: none;
    opacity: 0;
}


.term-extra-description {
    margin-top: calc(var(--gap-m) + (var(--gap-s) * .5));
}

.term-extra-description .stom-css-grid {
    /* align-items: center; */
}

.term-extra-description .design-heading {
    color: currentColor;
}

.term-extra-description .rll-youtube-player {
    max-width: 500px;
    padding-bottom: 0;
    height: auto;
}

.term-extra-description .rll-youtube-player>div {
    position: relative;
    padding-bottom: 56.23%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

/**
 * END Product category
 */



/**
 * Single product
 */

.single-product-fullwidth #primary>.product {
    display: grid;
    grid-template-columns: 1fr 590px;
    gap: var(--gap-s);
    margin: 0;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
    width: 100%;
    margin: 0;
    padding: 0;
    float: none;
}

.woocommerce div.product .stom-product-summary-wrapper {
    position: relative;
    display: flex;
    padding: 0 var(--gap-l) 0 var(--gap-m);
    /* 	grid-row: span 2; */
    z-index: 40;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
    position: sticky;
    top: calc(var(--gap-s) + var(--header-height));
    bottom: var(--gap-s);
    align-self: flex-start;
    padding: 0;

    /* align-self: flex-end; */
    /* min-height: calc(100vh - var(--header-height)); */
}


/* .woocommerce div.product div.images .woocommerce-product-gallery__trigger,
.woocommerce div.product div.images .flex-viewport {
	display: none;
}

.woocommerce div.product div.images.woocommerce-product-gallery--columns-2 .flex-control-thumbs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gap-s);
	margin-top: 0;
}

.woocommerce div.product div.images.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
	width: 100%;
	margin: 0 !important;
	float: none;
	overflow: hidden;
}

.woocommerce div.product div.images.woocommerce-product-gallery--columns-2 .flex-control-thumbs li img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	opacity: 1;
	transition: transform var(--transition);
}
.woocommerce div.product div.images.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:hover img {
	transform: scale(1.05);
} */


.stom-custom-product-gallery {
    position: relative;
    overflow: hidden;
}

.stom-custom-product-gallery .stom-css-grid.columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stom-custom-product-gallery .stom-css-grid.columns-2.slick-slider {
    display: block;
    padding: 0;
}

.stom-custom-product-gallery .slick-slider .product-gallery-element.slick-slide {
    margin: 0;
}

.stom-custom-product-gallery .stom-css-grid .slick-track:before,
.stom-custom-product-gallery .stom-css-grid .slick-track:after {
    content: none;
}

.stom-custom-product-gallery .product-gallery-element.hide-desktop,
.product-gallery-slider {
    display: none;
}

.stom-custom-product-gallery .product-gallery-element {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stom-custom-product-gallery .product-gallery-element img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    opacity: 1;
    transition: transform var(--transition);
}

.stom-custom-product-gallery .product-gallery-element:hover img {
    transform: scale(1.05);
}

.stom-custom-product-gallery .product-gallery-element .video-play-icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.stom-custom-product-gallery .product-gallery-element .video-play-icon .stom-custom-svg {
    color: #fff;
    font-size: 60px;
    opacity: .5;
    transition: transform var(--transition);
}

.stom-custom-product-gallery .product-gallery-element:hover .video-play-icon .stom-custom-svg {
    transform: scale(1.05);
}


.stom-custom-product-gallery .more-gallery-wrapper {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: var(--p);
    color: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition);
    z-index: 3;
    filter: drop-shadow(0px 0px 1px #333);
}

.stom-custom-product-gallery .more-gallery-wrapper:hover {
    transform: scale(1.09);
}

.stom-custom-product-gallery .more-gallery-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 5px 5px 2px;
    /* background-color: rgba(0, 0, 0, .6); */
    filter: drop-shadow(0px 0px 1px #333);
    z-index: 1;
}

.stom-custom-product-gallery .more-gallery-inner .more-gallery-icon {
    display: inline-block;
    margin-bottom: 5px;
    padding: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    line-height: 0;
    font-size: 2.5em;
}

.stom-custom-product-gallery .more-gallery-wrapper>img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: auto;
}


.single-product .product-gallery-slider {
    margin: var(--gap-s) calc(-1 * (var(--gap-s) / 2)) 0;
    padding: 0;
}

.single-product .product-gallery-slider .slick-slide {
    margin: 0 calc(var(--gap-s) / 2);
}

.single-product .product-gallery-slider .slick-slide:not(.slick-current) {
    opacity: .5;
}

.single-product .product-gallery-slider .slick-slide img {
    width: 100%;
}

.single-product .product-gallery-slider .slick-track:before,
.single-product .product-gallery-slider .slick-track:after {
    content: none;
}

.single-product .product-gallery-slider .slick-arrow {
    transform: translate(0, -50%);
    filter: drop-shadow(0 0 1px #666);
}


.single-product .pswp .slide-video-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10vh 10vw;
}

.single-product .pswp .slide-video-wrap-inner {
    width: 100%;
    height: 100%;
}

.single-product .pswp .slide-video-wrap-inner * {
    pointer-events: auto;
}

.single-product .pswp .slide-video-iframe-wrap {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.single-product .pswp .embed-player {
    display: block;
    width: 100%;
    height: 100%;
}


.single-product-fullwidth #primary nav.woocommerce-breadcrumb {
    margin: var(--gap-s) 0 0;
    font-size: 13px;
    text-transform: none;
    color: var(--color-2);
    line-height: 1.2;
}

.woocommerce .woocommerce-breadcrumb span {
    color: var(--color-2);
}

.woocommerce .woocommerce-breadcrumb a {
    color: var(--color-2);
}

.single-product-fullwidth #primary .stom-product-header-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin: var(--gap-s) 0 0;
    border: none;
}

.single-product-fullwidth #primary .product_title:not(.component_section_title) {
    font-size: var(--h3);
}

.single-product .stom-product-header-wrapper .stom-add-to-favourites {
    position: static;
    font-size: 28px;
    margin-top: .35em;
    transform: translateY(-25%);
}

.single-product .stom-product-header-wrapper .stom-add-to-favourites svg path {
    stroke: currentColor;
    transition: fill var(--transition);
}

.single-product .stom-product-header-wrapper .stom-add-to-favourites:hover svg path,
.single-product .stom-product-header-wrapper .stom-add-to-favourites.current-favourite svg path {
    fill: currentColor;
}

.woocommerce div.product .stock .custom-svg {
    color: var(--color-1);
    font-size: 11px;
}

.woocommerce div.product .stock .stock-amount,
.woocommerce div.product .stock.available-on-backorder .stock-amount {
    color: currentColor;
    font-weight: normal;
    font-size: 14px;
}

.woocommerce div.product .stock.out-of-stock .stock-amount {
    color: #c91638;
}



/* Add-ons */
.single-product .wc-pao-addons-container {
    margin-top: 15px;
}

.single-product .wc-pao-addon-container {
    margin: 0;
    padding: 0;
    transition: margin var(--transition), padding var(--transition);
}

.single-product .wc-pao-addon-container .required,
.single-product .wc-pao-addon-container .wc-pao-addon-description {
    display: none;
}

/* .single-product .wc-pao-addon-container:not(.wc-pao-addon-type-multiple_choice):not(.wc-pao-addon-id-):not(.wc-pao-addon-type-heading) {
	margin: 20px 0;
} */

.single-product .wc-pao-addon-container.foldable {
    display: none;
}

.single-product .wc-pao-addon-container.wc-pao-addon-type-heading:not(.active) {
    border-bottom: 1px solid #e0e0e0;
}

.single-product .wc-pao-addon-container.wc-pao-addon-type-heading:first-child,
.single-product .wc-pao-addon-container-custom+.wc-pao-addon-type-heading,
.single-product .wc-pao-addon-container.active+#product-addons-total {
    border-top: 1px solid #e0e0e0;
}

.single-product .wc-pao-addon-container.active+#product-addons-total {
    margin-top: 20px;
}

.single-product .wc-pao-addon-container.active+.wc-pao-addon-container:not(.foldable) {
    margin-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* .single-product .wc-pao-addon-container:not(.wc-pao-addon-id-) .wc-pao-addon-name {
	margin-bottom: calc(var(--gap-s) / 2);
	font-size: var(--p);
} */

.single-product .wc-pao-addon-container .wc-pao-addon-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: calc(var(--gap-s) / 2) 0;
    font-size: var(--p);
    cursor: pointer;
}

.single-product .wc-pao-addon-container .wc-pao-addon-heading:after {
    content: '';
    width: 10px;
    height: 10px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 448 512%22 width=%2230%22 height=%2230%22 fill=%22black%22%3E%3Cpath d=%22M443.5 162.6l-7.1-7.1c-4.7-4.7-12.3-4.7-17 0L224 351 28.5 155.5c-4.7-4.7-12.3-4.7-17 0l-7.1 7.1c-4.7 4.7-4.7 12.3 0 17l211 211.1c4.7 4.7 12.3 4.7 17 0l211-211.1c4.8-4.7 4.8-12.3.1-17z%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .8;
    transition: transform var(--transition);
}

.single-product .wc-pao-addon-container:not(.active) .wc-pao-addon-heading:after {
    transform: rotateZ(-90deg);
}

.single-product .wc-pao-addon-container:not(.foldable):not(.wc-pao-addon-type-heading) {
    margin: 0;
    padding: calc(var(--gap-s) / 2 - 5px) 2px calc(var(--gap-s) / 2);
}

.single-product form .wc-pao-addon-container h2.wc-pao-addon-name {
    font-size: var(--p);
}

.single-product form .wc-pao-addon-container .form-row {
    margin: 0;
    padding: 0;
}

.single-product form .wc-pao-addon-container .form-row,
.single-product form .wc-pao-addon-container label,
.single-product form .wc-pao-addon-container .form-row input,
.single-product form .wc-pao-addon-container .form-row select {
    font-size: calc(var(--p) - 5px);
    line-height: 1.5;
    font-weight: normal;
}

.single-product form .wc-pao-addon-container .form-row input {
    padding: 5px 8px;
    line-height: 1.3;
}

.single-product form .wc-pao-addon-container .form-row select {
    padding: 5px 5px;
}


.woocommerce div.product form.cart div.quantity,
 #product-addons-total {
    display: none;
}

.woocommerce div.product form.cart .component_wrap div.quantity {
	display: block;
}

body.woocommerce.product_have_amount_count div.product form.cart div.quantity {
	position: relative;
    display: block;
    width: 100%;
    margin-top: 10px;
	z-index: 2;
}

body.woocommerce div.product p.price ins {
    margin-left: 0;
}

body.woocommerce .awdr_discount_bar {
    font-size: 16px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price:not(.thumbnail_price) {
    margin: var(--gap-s) 0 calc(var(--gap-s) * 1.5);
    font-family: var(--h-fam);
    font-size: var(--h4);
    color: currentColor;
    font-weight: bold;
}

.woocommerce div.product .summary > p.price,
.woocommerce div.product .summary > span.price {
	position: sticky;
	top: var(--header-height);
	margin: 0 0 200px;
	background-color: #fff;
	z-index: 2;
}

.woocommerce div.product .summary > p.price + *,
.woocommerce div.product .summary > span.price + * {
	margin-top: -200px;
}

.woocommerce div.product .product-sale-date-end {
    display: block;
	position: sticky;
	bottom: calc(56px + 10px + 75px);
	padding: .55em 0 .45em;
	border-top: 1px solid var(--color-1);
	background-color: #fff;
    font-size: .75em;
}

@media only screen and (min-width: 768px) {
	.woocommerce div.product .stom-product-column form.cart .price:not(.thumbnail_price) {
		position: sticky;
		bottom: calc(56px + 10px);
		margin: -1px 0 0;
		padding: calc(var(--gap-s) / 2) 0;
		background-color: #fff;
		border-top: 1px solid var(--color-1);
		z-index: 3;
	}
	
	.woocommerce div.product form.cart .button.single_add_to_cart_button:not(.disabled) {
		position: sticky;
		bottom: 10px;
	}
}

.woocommerce div.product form.cart .button.single_add_to_cart_button:not(.disabled) {
    width: 100%;
    min-width: 0;
    padding: 15px;
    background-color: #26ad5d;
    border-color: #26ad5d;
}

.woocommerce div.product form.cart .button.single_add_to_cart_button:not(.disabled):hover {
    background-color: #1c964e;
    border-color: #1c964e;
}

.woocommerce div.product #sparxpres_web_sale {
    max-width: 100%;
    margin-top: calc(var(--gap-s) * .5);
    font-size: 14px;
    text-align: center;
}

.woocommerce div.product #sparxpres_web_sale .sparxpres-container:before {
    content: 'Afdrag med Sparxpres finansiering.';
}

.woocommerce div.product #sparxpres_web_sale .sparxpres-modal-open {
    display: inline-block;
    width: auto;
    padding: 0;
    color: currentColor;
    font-size: 0;
    text-decoration: underline;
    background-color: transparent;
    border-radius: 0;
}

.woocommerce div.product #sparxpres_web_sale .sparxpres-modal-open:before {
    content: 'Beregn finansiering her';
    font-size: 14px;
}


.woocommerce div.product .product-usp-section {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--gap-s) / 2) 10px;
    justify-content: space-between;
    margin: var(--gap-s) 0 0;
    padding: calc(var(--gap-s) - 5px) 0;
    font-size: 14px;
    border: solid #dbdbdb;
    border-width: 1px 0;
}

.woocommerce div.product .product-usp-section svg {
    margin-right: .1em;
    color: var(--color-2);
    font-size: 15px;
}

.woocommerce div.product .product-usp-section .usp-delivery-method svg {}

.woocommerce div.product .product-usp-section .usp-delivery-price svg {
    font-size: 17px;
}

.woocommerce div.product .product-usp-section .usp-delivery-time svg {
    font-size: 24px;
}


.woocommerce div.product .woocommerce-product-details__short-description {
    margin: var(--gap-s) 0 0;
    font-size: 16px;
}

.woocommerce div.product .woocommerce-product-details__short-description h2,
.woocommerce div.product .woocommerce-product-details__short-description h3,
.woocommerce div.product .woocommerce-product-details__short-description h4 {
    margin-bottom: .3em;
    font-size: var(--h6);
    font-family: var(--p-fam);
    font-weight: bold;
}

.woocommerce div.product .woocommerce-product-details__short-description p {
    line-height: 1.2;
}

.woocommerce div.product .woocommerce-product-details__short-description a {
    text-decoration: underline;
}


.stom-custom-product-tabs-section {
    position: relative;
    padding: var(--gap-m) var(--gap-l) var(--gap-l) var(--gap-m);
    background-color: var(--color-1);
    overflow: hidden;
}

.stom-custom-product-tabs-section .product-tab {
    position: relative;
    border-bottom: 1px solid var(--color-text);
    z-index: 1;
}

.stom-custom-product-tabs-section .product-tab .tab-heading-link {
    text-decoration: none;
}

.stom-custom-product-tabs-section .product-tab .tab-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(var(--gap-s) * .5) 0;
    font-size: 30px;
    font-family: var(--h-fam);
    cursor: pointer;
}

.stom-custom-product-tabs-section .product-tab .tab-heading .stom-custom-svg {
    font-size: var(--p);
    transition: transform var(--transition);
}

.stom-custom-product-tabs-section .product-tab.active .tab-heading .stom-custom-svg {
    transform: rotateZ(90deg);
}

.stom-custom-product-tabs-section .product-tab .tab-content {
    margin-bottom: calc(var(--gap-s) * .5);
}

.stom-custom-product-tabs-section .product-tab.tab-product-details .tab-content {
    display: grid;
    /* grid-auto-flow: column; */
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--gap-s) * .5);
}

.stom-custom-product-tabs-section .product-tab.tab-product-details .product-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.stom-custom-product-tabs-section .product-tab.tab-product-details .product-detail .stom-custom-svg {
    font-size: 80px;
}

.stom-custom-product-tabs-section .product-tab.tab-product-details .product-detail .icon-image-type img {
	width: 80px;
}

.stom-custom-product-tabs-section .product-tab.tab-product-details .product-detail .label {
    display: block;
    font-weight: bold;
}

.stom-custom-product-tabs-section .product-tab.tab-download .tab-content .stom-custom-svg {
    vertical-align: text-top;
}

.stom-custom-product-tabs-section .product-tabs-section-bg {
    position: absolute;
    top: 20px;
    right: -230px;
    z-index: 0;
}

.stom-custom-product-tabs-section .product-tabs-section-bg svg {
    color: #fff;
    opacity: .2;
    font-size: 800px;
    transform: rotateZ(-30deg);
}

.stom-after-product-images-section {
    max-width: 100%;
    overflow: hidden;
}

.single-product .stom-product-column-left {
    max-width: 100%;
    overflow: hidden;
}

.stom-product-column-left .stom-after-product-images-section {
    margin-top: var(--gap-s);
}

.stom-after-product-images-section .stomFEE-edit-cta {
    right: auto;
    left: calc(100% - 590px - 15px - var(--gap-s));
    transform: translateX(-100%);
}

.stom-after-product-images-section .stomFEE-edit-cta:hover {
    transform: translateX(-100%) scale(1.1);
}


.stom-after-product-images-section .section-wrap {
    margin: var(--gap-l) 0;
}

.stom-after-product-images-section .section-wrap .section {
    max-width: 100%;
}

.stom-after-product-images-section .section-wrap .grid-element .overlay {
    justify-content: center;
}

.stom-after-product-images-section .grid-element.instagram-post-image {
    position: relative;
}

.stom-after-product-images-section .grid-element.instagram-post-image:after {
    content: '@solundhuse';
    position: absolute;
    right: calc(var(--gap-s) / 2);
    bottom: calc(var(--gap-s) / 2);
    color: #fff;
    z-index: 1;
}

.stom-after-product-images-section .grid-element.instagram-post-image a {
    height: 100%;
}

.stom-after-product-images-section .grid-element.instagram-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.stom-after-product-images-section .grid-element.instagram-post-image:hover img {
    transform: scale(1.05);
}

.stom-after-product-images-section .instagram-media.sbi-embed {
    width: 100% !important;
    margin: 0 !important;
}


.stom-custom-product-tabs-section+.stom-custom-product-related-posts {
    margin-top: var(--gap-l);
}

.stom-custom-product-related-posts h2 {
    margin-bottom: 5px;
}

.stom-custom-product-related-posts p {
    margin-bottom: 1em;
}

.stom-custom-product-related-posts .stom-posts:not(.slick-slider) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--gap-s);
}

.stom-custom-product-related-posts .stom-posts.slick-slider {
    margin: 0 -15px;
    padding: 0;
}

.stom-custom-product-related-posts .stom-posts.slick-slider .slick-track {
    min-width: 100%;
}

.stom-custom-product-related-posts .stom-posts .slick-arrow {
    transform: translateY(-100%);
}

.stom-custom-product-related-posts .stom-posts .stom-post-thumb img {
    aspect-ratio: 373 / 473;
    object-fit: cover;
}

.stom-custom-product-related-posts .stom-post-content {
    font-size: 16px;
}

.stom-custom-product-related-posts .product-related-posts-view-all {
    margin-top: var(--gap-m);
}

.stom-custom-product-related-posts .product-related-posts-view-all:not(.button-align-left) {
    text-align: right;
}


.stom-custom-related-products-section {
    margin-top: var(--gap-l);
    overflow: hidden;
}

.stom-custom-related-products-section .slick-arrow {
    filter: drop-shadow(0px 0px 1px #999);
    transform: translateY(-100%);
}


.single-product .up-sells.upsells.products {
    margin-top: var(--gap-l);
}

.single-product .up-sells.upsells.products ul.products.slick-slider .slick-list,
.single-product .stom-custom-related-products-section ul.products.slick-slider .slick-list {
    margin: 0 -15px;
}



.woocommerce-page.single .custom-woocommerce-message {
    width: 800px;
    max-width: 90vw;
    max-height: 90vh;
    padding-top: var(--gap-s);
    color: var(--color-text);
}

.woocommerce-page.single .custom-woocommerce-message .custom-message-title {
    font-size: var(--h2);
    font-family: var(--h-fam);
    font-weight: normal;
    text-align: left;
}

.woocommerce-page.single .custom-woocommerce-message>.stom-fa-times {
    top: 0;
    right: 0;
}

.woocommerce-page.single .custom-product-wrapper {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    gap: var(--gap-s);
    border: none;
}

.woocommerce-page.single .custom-product-wrapper .custom-product-data {
    display: flex;
    flex-direction: column;
    font-size: 18px;
}

.woocommerce-page.single .custom-product-wrapper .custom-product-data .woocommerce-Price-amount {
    font-weight: bold;
}

.woocommerce-page.single .custom-product-wrapper img {
    width: 180px;
    max-width: 100%;
    height: 180px;
    max-height: 100%;
    object-fit: cover;
}

.woocommerce-page.single #primary .custom-woocommerce-message .up-sells {
    border-top: none;
}

.woocommerce-page.single #primary .custom-woocommerce-message .up-sells>h2 {
    margin: calc(var(--gap-m) - var(--gap-s) / 2) 0 calc(var(--gap-s) / 2);
    padding: 0;
    font-size: var(--h4);
    text-align: left;
    font-weight: normal;
}

.woocommerce-page.single #primary .custom-woocommerce-message .up-sells .slick-track {
    /* gap: var(--gap-s); */
}

.woocommerce-page.single #primary .custom-woocommerce-message .up-sells .slick-list {
    margin: 0;
}

.woocommerce-page.single #primary .custom-woocommerce-message .up-sells .slick-arrow {
    color: currentColor;
    border-color: currentColor;
}

.woocommerce-page.single #primary .custom-woocommerce-message .up-sells .slick-prev {
    left: 0;
    transform: translate(-50%, -100%);
}

.woocommerce-page.single #primary .custom-woocommerce-message .up-sells .slick-next {
    right: 30px;
    transform: translate(50%, -100%);
}

.woocommerce-page.single #primary .custom-woocommerce-message .up-sells .products {
    margin: 0 calc(-1 * var(--gap-s)) 0 0;
}

.woocommerce-page.single #primary .custom-woocommerce-message .up-sells .products .product {
    display: flex;
    flex-direction: column;
    width: calc((100% - (var(--gap-s) * 3)) / 3);
    margin: 0 var(--gap-s) 0;
    padding: 0;
    float: none;
}

.woocommerce-page.single #primary .custom-woocommerce-message .up-sells .woocommerce-loop-product__title {
    margin-bottom: 15px;
    font-size: var(--p);
    white-space: unset;
    overflow: unset;
    text-overflow: unset;
}

.woocommerce-page.single #primary .custom-woocommerce-message ul.products li.product .product-category {
    display: none;
}

.woocommerce-page.single #primary .custom-woocommerce-message .up-sells .product .price {
    margin-top: auto;
}

.woocommerce-page.single .custom-button-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: stretch;
    margin: var(--gap-m) 0 0;
    padding: 0;
    border-top: 1px solid var(--color-1);
}

.woocommerce-page.single .custom-button-wrapper .button {
    flex-basis: 0;
    flex-grow: 1;
    padding: 20px 20px;
    text-align: center;
}

.woocommerce-page.single .custom-button-wrapper .button.stom-continue-shopping {
    color: var(--color-1);
    background-color: #fff;
}

.woocommerce-page.single .custom-button-wrapper .button.wc-forward {
    color: #fff;
    background-color: var(--color-1);
}

.woocommerce-page.single .custom-woocommerce-message .custom-product-wrapper,
.woocommerce-page.single .custom-woocommerce-message .custom-message-title,
.woocommerce-page.single #primary .custom-woocommerce-message .up-sells {
    margin: 0 0 var(--gap-s);
}

.woocommerce-page.single .custom-woocommerce-message .custom-product-wrapper,
.woocommerce-page.single .custom-woocommerce-message .custom-message-title,
.woocommerce-page.single #primary .custom-woocommerce-message .up-sells {
    padding: 0 var(--gap-m);
}

/**
 * END Single product
 */



/**
 * Instantsearch
 */

#stom_instantsearch_result .woo-search-input {
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
}

#stom_instantsearch_result .container-item-wrapper .container-item {
    color: var(--color-text);
    background-color: transparent;
}

#stom_instantsearch_result .container-item-wrapper .container-item,
#stom_instantsearch_result .container-product .container-item:first-of-type,
#stom_instantsearch_result .container-product .container-item:nth-of-type(2),
#stom_instantsearch_result .container-product .container-item:nth-of-type(3) {
    padding: 0;
}

#stom_instantsearch_result .container-product .container-item .item-image,
#stom_instantsearch_result .container-product .container-item .item-image .image {
    width: 100%;
    max-height: 400px;
}

#stom_instantsearch_result .container-headline,
#stom_instantsearch_result.categories-active .container-product .item-content-wrapper .item-headline {
    font-family: var(--h-fam);
}

#stom_instantsearch_result .container-column.container-product .container-headline,
#stom_instantsearch_result .container-product .container-item-wrapper {
    padding-right: 0;
    padding-left: 0;
}

#stom_instantsearch_result.categories-active .container-product .container-item .item-content-wrapper .item-stock {
    display: none;
}

#stom_instantsearch_result.categories-active .container-product .container-item .item-content-wrapper {
    display: flex;
    flex-direction: column;
}

#stom_instantsearch_result.categories-active .container-product .container-item .item-content-wrapper>* {
    order: 2;
}

#stom_instantsearch_result.categories-active .container-product .item-content-wrapper .item-headline {
    order: 1;
    font-size: var(--h5);
}

#stom_instantsearch_result .container-product .container-item .item-category .category {
    font-size: var(--h6);
    text-transform: none;
}

#stom_instantsearch_result .container-product .container-item .item-price:not(.on-sale) .price {
    font-weight: normal;
    font-size: var(--h6);
}


#stom_instantsearch_result .container-column.container-category .container-item-wrapper {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
}

#stom_instantsearch_result.categories-active .container-category .container-item {
    padding-right: 20px;
    padding-left: 20px;
}

#stom_instantsearch_result .container-product .container-item .item-headline .headline {
    font-weight: normal;
}

#stom_instantsearch_result .container-product .container-item .item-image {
    min-height: 0;
    overflow: hidden;
}

#stom_instantsearch_result .container-product .container-item:hover .item-image {
    transform: scale(1);
}

#stom_instantsearch_result .container-product .container-item .item-image img {
    transition: transform var(--transition);
}

#stom_instantsearch_result .container-product .container-item:hover .item-image img {
    transform: scale(1.05);
}

/**
 * END Instantsearch
 */



/**
 * Favorite product list
 */

body.stomWF-favourites-list #stomWF-favourites-list-wrap {
    margin-top: var(--gap-m);
}

body.stomWF-favourites-list #stomWF-favourites-list {
    display: grid;
    grid-template-columns: 100%;
    gap: var(--gap-s);
    max-width: 100%;
    margin: 0;
    border: none;
    border-radius: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.stomWF-favourites-list #stomWF-favourites-list:before,
body.stomWF-favourites-list #stomWF-favourites-list:before {
    content: none;
}

body.stomWF-favourites-list #stomWF-favourites-list li.item {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 var(--gap-s) calc(var(--gap-s) - (var(--h3) / 100 * 20)) 0 !important;
    padding: 0;
    border: none;
}

body.stomWF-favourites-list #stomWF-favourites-list li.item .item-image {
    width: 100%;
    max-height: 100%;
    margin: 0 0 10px;
    overflow: hidden;
}

body.stomWF-favourites-list #stomWF-favourites-list li.item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform var(--transition);
}

body.stomWF-favourites-list #stomWF-favourites-list li.item:hover .item-image img {
    transform: scale(1.05);
}

body.stomWF-favourites-list #stomWF-favourites-list li.item .item-details .item-add-to-cart {
    display: none;
}

body.stomWF-favourites-list #stomWF-favourites-list li.item .item-close {
    color: #fff;
    font-size: 35px;
    filter: drop-shadow(0px 0px 1px #999);
    transition: transform var(--transition);
    z-index: 3;
}

body.stomWF-favourites-list #stomWF-favourites-list li.item .item-close:hover {
    background-color: transparent;
    transform: scale(1.25);
}

body.stomWF-favourites-list #main-content+.section-wrap {
    margin-top: calc(var(--gap-l) * 2);
}

ul#stomWF-favourites-list .message {
    grid-column: 1/-1;
}

/**
 * END Favorite product list
 */



#woo-icons .stom-off-canvas-wrapper .cart_list .mini_cart_item .product-title {
    line-height: 1;
}

.site-header-cart ul.cart_list li dl {
    display: block;
    margin: 0;
    padding: 0;
    font-size: .8em;
    border: 0;
    clear: both;

    display: none;
}

.site-header-cart ul.cart_list li dl dt {
    padding: 0;
}

.site-header-cart ul.cart_list li dl dt:before {
    /* content: '\2022';
	margin-right: .3em; */
}

.site-header-cart ul.cart_list li dl dd {
    margin: 0;
}

.woocommerce ul.cart_list li dl dd,
.woocommerce ul.product_list_widget li dl dd {
    padding: 0;
}

#woo-icons .stom-off-canvas-wrapper .cart_list .mini_cart_item dt .amount {
    font-weight: bold;
}



.page-template-page-products-on-sale #primary .section-wrap.section-fullpage {
    max-width: calc(100% + (var(--gap-s) * 2));
    margin-left: calc(-1 * var(--gap-s));
    margin-right: calc(-1 * var(--gap-s));
}


.woocommerce-cart #main-content {
    padding-top: var(--gap-s);
}


.woocommerce-cart .woocommerce ul.products.columns-4 li.product .woocommerce-loop-category__title,
.woocommerce-cart .woocommerce ul.products.columns-4 li.product .woocommerce-loop-product__title,
.woocommerce-cart .woocommerce ul.products.columns-4 li.product h3 {
    font-size: var(--h5);
}


.woocommerce-cart .woocommerce-cart-form {
    font-size: 16px;
}


.product-variation-container {
    font-weight: normal;
    clear: both;
}

.product-variation-container p {
    margin: 0;
    padding: .3em 0 0;
    font-size: .9em;
}

.product-variation-container p span.display-product-details {
    cursor: pointer;
}

.product-variation-container p .stom-custom-svg {
    margin-top: -2px;
}

.product-variation-container p .stom-custom-svg.flip-icon {
    transform: rotateZ(180deg);
}

.product-variation-container .variation {
    display: none;
    font-size: .9em;
    margin: 0 0 1.5em;
}

.product-variation-container .variation div,
.woocommerce-cart .woocommerce-cart-form .shop_table .cart_item .product-descriptions .product-name .variation>div {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.product-variation-container .variation dt {
    margin: 0;
}

.product-variation-container .variation dd {
    margin: 0 0 0 .2em;
}


.terms-popup-exit .dashicons:before {
    content: none;
}

.page-id-647 .video-aligner {
    padding-top: 0px !important;
    font-size: 0;
}

.pum-theme-17286 .pum-content+.pum-close,
.pum-theme-default-theme .pum-content+.pum-close {
    background-color: #c5cbb9 !important;
}


.woocommerce ul.products li.product-category-helaars-annesker-soelund-living .stom-product-cat-img-wrap {
    border: 10px solid var(--color-1);
}

.stom-custom-product-gallery .product-gallery-element:not(.hide-desktop) {
    cursor: none;
    --top: 0px;
    --left: 0px;
}

.stom-custom-product-gallery .product-gallery-element:not(.hide-desktop)::after {
    position: absolute;
    width: 4rem;
    height: auto;
    aspect-ratio: 1 / 1;
    line-height: 0;
    /* display: none; */
    pointer-events: none;
    z-index: 2;
    font-size: 4.25em;
    color: white;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .1s ease, transform var(--transition);
    filter: drop-shadow(0px 0px 10px #aaa);
    top: var(--top);
    left: var(--left);
    content: var(--hover-cirkel-url);
}

.stom-custom-product-gallery .product-gallery-element:not(.hide-desktop):hover::after {
    opacity: 1;
}

.stom-custom-product-gallery .product-gallery-element:not(.hide-desktop):active::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

body.woocommerce-checkout #mailchimp-gdpr-fields>p {
    font-size: 0;
}

body.woocommerce-checkout #mailchimp-gdpr-fields>p:before {
    content: 'Vælg venligst alle de måder, du gerne vil høre fra os på';
    font-size: 12px;
}


body.woocommerce.single-product .custom-woo-price {
    visibility: hidden;
    position: absolute;
    font-family: var(--h-fam);
    font-size: var(--h4);
    color: currentColor;
    font-weight: 700;
}

body.woocommerce.single-product .custom-woo-price span {

    opacity: .5;
    text-decoration: line-through;
    margin-right: 6px;
}


/*======================================================================//
// END woocommerce.css                                                  //
//======================================================================*/


body.woocommerce div.product .stom-css-grid.stom-custom-product-gallery-main-slider {
    width: calc(100% - 100px);
    display: inline-block;
    height: 600px !important;
    padding-right: 0;
}

body.woocommerce div.product .stom-css-grid.stom-custom-product-gallery-main-slider:not(.slick-slider) > .product-gallery-element:not(:first-child) {
	display: none;
}

.woocommerce div.product .stom-css-grid.stom-custom-product-gallery-main-slider:not(.slick-slider) .product-gallery-element img,
.woocommerce div.product .stom-css-grid.stom-custom-product-gallery-main-slider .slick-list .slick-track .slick-slide img {
    height: auto !important;
    width: auto !important;
    aspect-ratio: auto;
    max-height: 600px;
    max-width: 100%;
    margin: auto;
    object-fit: cover;
}
body.woocommerce div.product .stom-css-grid.stom-custom-product-gallery-main-slider .slick-list,
body.woocommerce div.product .stom-css-grid.stom-custom-product-gallery-main-slider .slick-list .slick-track {
	height: 100%;
}


body.woocommerce div.product .stom-css-grid.stom-custom-product-gallery-thumb-slider {
    float: left;
    width: 100px;
    margin-top: 0;
    padding: 0 0 100px;
}

body.woocommerce div.product .stom-css-grid.stom-custom-product-gallery-thumb-slider:not(.slick-slider) {
	display: none;
}
body.woocommerce div.product .stom-css-grid.stom-custom-product-gallery-thumb-slider .slick-list {
    margin-top: -8px;
}
body.woocommerce div.product .stom-css-grid.stom-custom-product-gallery-thumb-slider .slick-list .slick-track .slick-slide {
    margin: 0;
}

body.woocommerce div.product .stom-css-grid.stom-custom-product-gallery-thumb-slider .slick-arrow {
    filter: invert(1);
    padding: 12.5px;
    font-size: 15px;
    top: unset;
    transform: translateX(-50%) rotate(90deg);
    right: unset;
    left: 46%;
}
body.woocommerce div.product .stom-css-grid.stom-custom-product-gallery-thumb-slider .slick-arrow.slick-next {
    bottom: 0px;
}
body.woocommerce div.product .stom-css-grid.stom-custom-product-gallery-thumb-slider .slick-arrow.slick-prev {
    bottom: 50px;
}
body.woocommerce div.product .stom-css-grid.stom-custom-product-gallery-thumb-slider .slick-arrow.slick-disabled {
    display: none;
    visibility: hidden;
    pointer-events: none;
}
.woocommerce div.product .stom-css-grid.stom-custom-product-gallery-thumb-slider img {
    height: 75px !important;
    width: 100% !important;
    object-fit: cover;
    margin: 4px 0;
}






















.postid-64591.single-product .wc-pao-addon-type-multiple_choice > .wc-pao-addon-description {
	display: block;	
	font-size: calc(var(--p) - 5px);
	font-style: normal;
}


.postid-64591.single-product .wc-pao-addon-type-multiple_choice > .wc-pao-addon-wrap {
	
}

.postid-64591 .wc-pao-addon-image-swatch {
	outline-color: #ccc;
	border-radius: 50%;
	margin-top: 15px;
}

.postid-64591 .wc-pao-addon-image-swatch:not(:last-of-type) {
	margin-right: 8px;
}

.postid-64591 .wc-pao-addon-image-swatch img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
}

.postid-64591 .wc-pao-addon-image-swatch.selected {
	outline-color: #000;
}

.postid-64591 .wc-pao-addon-image-swatch-selected-swatch {
	margin-top: 10px;
}



/* Malersæt */
.single-product .wc-pao-addon-type-multiple_choice .wc-pao-addon-description {
	display: block;
	font-size: calc(var(--p) - 5px);
	font-style: normal;
}

.single-product .wc-pao-addon-type-multiple_choice .wc-pao-addon-wrap .wc-pao-addon-image-swatch {
	position: relative;
	outline-color: #ccc;
	border-radius: 50%;
	margin-top: 15px;
	line-height: 0;
}

.single-product .wc-pao-addon-type-multiple_choice .wc-pao-addon-wrap .wc-pao-addon-image-swatch:not(:last-of-type) {
	margin-right: 8px;
}

.single-product .wc-pao-addon-type-multiple_choice .wc-pao-addon-wrap .wc-pao-addon-image-swatch.selected {
	outline-color: #000;
}

.single-product .wc-pao-addon-type-multiple_choice .wc-pao-addon-wrap .wc-pao-addon-image-swatch > img {
	width: auto;
	max-width: 150px;
	height: auto;
	max-height: 150px;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 50%;
}

.single-product .wc-pao-addon-image-swatch:not(.selected) .wc-pao-addon-image-swatch--view-full {
	opacity: 0;
	pointer-events: none;
}
.single-product .wc-pao-addon-image-swatch .wc-pao-addon-image-swatch--view-full {
	position: absolute;
    right: -9999px;
    bottom: calc(100% + 2px + 2px);
    left: -9999px;
    margin: 0 auto;
    text-align: center;
    transition: opacity .25s;
    z-index: 100;
}
.single-product .wc-pao-addon-image-swatch .wc-pao-addon-image-swatch--view-full > span {
	display: inline-flex;
	align-items: center;
	gap: .3em;
	padding: .5em;
	background-color: var(--color-1);
	line-height: 1;
	border: 1px solid transparent;
	transition: border .25s;
	white-space: nowrap;
}
.single-product .wc-pao-addon-image-swatch .wc-pao-addon-image-swatch--view-full > span:hover {
	border-color: #000;
}

.single-product .wc-pao-addon-image-swatch--view-full-popup {
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, .9);
	z-index: 9999999999;
}
.single-product .wc-pao-addon-image-swatch--view-full-popup-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.single-product .wc-pao-addon-image-swatch--view-full-popup-inner-content {
	position: relative;
}
.single-product .wc-pao-addon-image-swatch--view-full-popup-close {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 1.75em;
	padding: .2em;
	line-height: 0;
	background-color: var(--color-2);
	color: #fff;
	cursor: pointer;
}
.single-product .wc-pao-addon-image-swatch--view-full-popup-image {
	display: block;
	width: auto;
	max-width: 80vw;
	height: auto;
	max-height: 80vh;
	object-fit: cover;
}

.single-product .wc-pao-addon-type-multiple_choice.wc-pao-addon-id-1691592653 .wc-pao-addon-wrap .wc-pao-addon-image-swatch[data-value=""] > img {
	max-width: 60px;
	max-height: 60px;
}

.single-product .wc-pao-addon-type-multiple_choice .wc-pao-addon-wrap .wc-pao-addon-image-swatch-selected-swatch:not(:empty) {
	margin-top: 10px;
	padding: .3em .5em;
	color: #000;
	border: 2px solid #aeb899;
	background-color: var(--color-1);
}

.single-product .wc-pao-addon-type-multiple_choice .wc-pao-addon-wrap .wc-pao-addon-image-swatch-selected-swatch .wc-pao-addon-image-swatch-price:before {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-right: .3em;
	font-size: .8em;
	background-image: url("data:image/svg+xml,%3Csvg width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 117.67 116.79'%3E%3Cpolygon points='47.16 116.79 0 58.6 7.77 52.3 46.16 99.67 109.21 0 117.67 5.35 47.16 116.79'%3E%3C/polygon%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}



/* ===== BF Sale Badge ===== */

.woocommerce .products ul li,
.woocommerce ul.products li {
	overflow: hidden;
}

body:not(.stom-admin) .custom-product-label {
	/* display: none !important; */
}

.woocommerce ul.products li.product .custom-product-label {
	top: 2.6em;
	left: -3.4em;
	width: 250px;
	padding: .4em 0;
	border-radius: 0;
	line-height: 1;
	transform: rotateZ(-45deg);
}

.woocommerce ul.products li.product .custom-product-label .filler {
	display: none;
}

.woocommerce ul.products li.product .custom-product-label .display {
	margin: 0;
}

/* ===== END BF Sale Badge ===== */



.woocommerce-checkout #customer_details {
	margin-bottom: 40px;
}



.product-type-composite .price .from {
	display: none;
}

.product-type-composite .composite_form {
	padding-top: 1em;
}

.product-type-composite .composite_form .component {
	border: solid #e0e0e0;
	border-width: 0;
	border-bottom-width: 1px;
}
.product-type-composite .composite_form .component:first-child {
	border-top-width: 1px;
}

.product-type-composite .composite_form .component_title {
	margin: 0;
	font-size: calc(var(--p) + 2px);
}
.product-type-composite .composite_form .component.toggled .component_title {
	display: block;
}

.product-type-composite .composite_form .component_title .step_index {
	display: none;
}

.product-type-composite .composite_form .component_title .step_title,
.product-type-composite .composite_form .component_title .toggle_component {
	display: inline-block;
	padding: .5em 0 .4em;
}

.product-type-composite .composite_form .component_inner {
	padding: .5em 0 .8em;
	font-size: calc(var(--p) - 5px);
}

.product-type-composite .component .component_options {
	overflow: visible;
}

.product-type-composite ul.component_option_thumbnails_container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 2px;
}

.product-type-composite .legacy_width ul.component_option_thumbnails_container li.component_option_thumbnail_container {
	position: relative;
	width: auto;
	margin: 0;
	font-size: var(--p);
}

.product-type-composite .legacy_width .component .component_option_thumbnail,
.product-type-composite .legacy_width .component .component_option_thumbnail:hover {
	margin: 0;
	box-shadow: none;
}

.product-type-composite .legacy_width .component_option_thumbnail .image {
	width: 64px;
	height: 64px;
	padding: 2px;
	line-height: 0;
	outline: 1px solid #ddd;
	border-radius: 50%;
	overflow: hidden;
}
.product-type-composite .legacy_width .component_option_thumbnail:hover .image,
.product-type-composite .legacy_width .component_option_thumbnail.selected .image {
	outline-color: #000;
}

.product-type-composite .legacy_width .component_option_thumbnail .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	overflow: hidden;
}

.product-type-composite ul.component_option_thumbnails_container li.component_option_thumbnail_container .thumbnail_description {
	position: absolute;
	top: calc(100% + 6px);
	left: 50%;
	width: 150px;
	padding: .618em 1em;
	color: #fff;
	font-size: .8em;
	background: #333;
	text-align: center;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
	transform: translateX(-50%);
	z-index: 500;
	overflow: visible;
}
.product-type-composite ul.component_option_thumbnails_container li.component_option_thumbnail_container:not(:hover) .thumbnail_description {
	display: none;
}
.product-type-composite ul.component_option_thumbnails_container li.component_option_thumbnail_container .thumbnail_description:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 100%;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 6px;
	border-bottom-color: #333;
	transform: translateX(-50%);
	z-index: 500;
}

.product-type-composite ul.component_option_thumbnails_container li.component_option_thumbnail_container .thumbnail_description .thumbnail_title {
	margin: 0;
	font-family: var(--p-fam);
}

.woocommerce .product-type-composite ul.component_option_thumbnails_container li.component_option_thumbnail_container .thumbnail_description .price {
	margin: .3em 0 0;
	color: currentColor;
}

/* .product-type-composite .component .component_options .component_section_title .select_label, */
.product-type-composite .component .component_selections .selected_option_label_wrapper {
	display: none;
}

.product-type-composite .component .component_summary {
	margin-top: 1em;
}

.product-type-composite .component .summary_content {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5em;
}
.product-type-composite .component .summary_content:before,
.product-type-composite .component .summary_content:after {
	content: none;
}

.single-product-fullwidth #primary .product-type-composite .component .component_section_title.product_title {
	font-size: 1.2em;
	font-weight: normal;
}

#primary .product-type-composite .component .component_summary .clear_component_options_wrapper {
	margin: 0;
}

#primary .product-type-composite .component .component_summary .composited_product_details_wrapper {
	/* margin-top: 1em; */
	margin: 0;
	padding: 0;
}

#primary .product-type-composite .component .component_summary .composited_product_details_wrapper .component_wrap .price {
	position: static;
	margin-bottom: .5em;
	padding: 0;
	font-size: 1em;
	font-family: var(--p-fam);
	font-weight: normal;
	text-align: right;
	border: none;
	background-color: transparent;
}

#primary .product-type-composite .component .component_summary .composited_product_details_wrapper .stom-input-wrap {
	margin: 0;
}

#primary .product-type-composite .component .component_summary .composited_product_details_wrapper .composited_product_images,
#primary .product-type-composite .component .component_summary .composited_product_details_wrapper .details.component_data > p,
/* #primary .product-type-composite .component .component_summary .composited_product_details_wrapper .component_wrap .price, */
#primary .product-type-composite .component .component_summary .composited_product_details_wrapper .component_wrap .stock {
	display: none;
}

#primary .product-type-composite .component .component_summary .composited_product_details_wrapper input.qty {
	border: 1px solid #000;
}



.woocommerce div.product .stom-product-column form.cart:not(:has(.wc-pao-addons-container)) .price {
	display: none;
}


/* Booking */
#booking_form_div1 .wpbc__field {
	margin-top: 0;
}

#booking_form_div1 .wpbc__field .wpbc_calendar_wraper .wpbc_cal_container,
#booking_form_div1 .wpbc__field .wpbc_calendar_wraper .wpbc_no_custom_width.cal_month_num_1 {
	max-width: 100%;
	width: 100%;
}

#booking_form_div1 .wpbc__field .wpbc__form__div .wpbc__row .wpbc__field label {
	font-weight: 400;
	font-family: var(--h-fam);
}

#booking_form_div1 .wpbc__field .wpbc__form__div .wpbc__row .wpbc__field input {
	border-radius: 0;
}

#booking_form_div1 .wpbc__field .wpbc__form__div .wpbc__row .wpbc_r_submit {
	margin-top: 40px;
}

#booking_form_div1 .wpbc__field .wpbc__form__div .wpbc__row .wpbc_r_submit .wpbc_button_light {
	border-radius: 0;
	background-color: var(--color-1);
	color: #444;
	border-color: var(--color-1);
	border-width: 1px;
	font-size: 20px;
}

#booking_form_div1 .wpbc__field .wpbc__form__div .wpbc__row .wpbc_r_submit .wpbc_button_light:hover {
	background-color: #fff;
}

#booking_form_div1 .wpbc__field .wpbc__form__div .wpbc__row .wpbc__field .wpbc_times_selector div {
	border-radius: 0;
	border-color: var(--color-1);
}

#booking_form_div1 .wpbc__field .wpbc__form__div .wpbc__row .wpbc__field .wpbc_times_selector div:hover {
	background-color: #f1f1f1;
}

#booking_form_div1 .wpbc__field .wpbc__form__div .wpbc__row .wpbc__field .wpbc_times_selector div.wpbc_time_selected {
	background-color: var(--color-1);
	color: #444;
}

#booking_form_div1 .datepick-inline div.datepick-one-month .datepick td.datepick-current-day .wpbc-cell-box {
	background-color: var(--color-1);
}

.product-usp-section .product-usp{
    display: flex;
    gap: 2px;
	align-items: center;
}

.product-usp a{
    display: flex;
}

.info-label {
    position: relative;
    cursor: pointer;
    display: flex;
	margin-left: .2em;
}

.product-usp .info {
    background-color: #e0e0e0;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85em;
    line-height: 1;
    padding-top: 0.1em;
}

.info-tooltip {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    margin-bottom: 6px;
    width: 250px;
    z-index: 999;
}

.info-tooltip h3{
    font-size: 20px;
}

.info-tooltip p{
    font-size: 16px;
}

.info-label:hover .info-tooltip,
.info-label.active .info-tooltip {
    display: block;
}

.express-label {
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin-top: 0.5em;
}

.express-label .express-icon {
    background-color: #e0e0e0;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85em;
    line-height: 1;
    padding-top: 0.1em;
}

.express-tooltip {
    display: none;
    position: absolute;
    left: 0;
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    margin-bottom: 6px;
    width: 250px;
    z-index: 999;
}


.express-tooltip h3{
    font-size: 20px;
}

.express-tooltip p{
    font-size: 16px;
}

.express-label:hover .express-tooltip,
.express-label.active .express-tooltip {
    display: block;
}