/*
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: 40px;
    --h2: 35px;
    --h3: 28px;
    --h4: 22px;
    --h5: 16px;
    --h6: 14px;
    --p: 18px;
	--p-sans-serif: 32px;

    /* Gaps */
    --gap-l: 90px;
    --gap-m: 40px;
    --gap-s: 20px;

    /* font families */
    /* --h-fam: 'GT-America', serif; */
	--h-fam: 'adobe-caslon-pro', serif;
    --p-fam: 'GT-America', sans-serif;
    --btn-fam: var(--p-fam);

    /* colors */
    --color-1: #5e544d;
    --color-2: #5e544d;
    --color-bg: #FDFDFD;
    --color-text: #222;
    --color-dark: #222;
    --color-overlay: rgb(0 0 0 / 0%);

    /* transitions */
    --transition: all 0.3s ease;

    --content-margin: calc(0 * var(--gap-m));
    --slider-text-width: 850px;
    
    /* Theme defined variables from PHP */
    --content-width: initial;
    --sidebar-width: initial;
    /* END Theme defined variables from PHP */
}


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


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

/* Fonts */
@font-face {
    font-family: "GT-America";
    src: url("./fonts/GT_America/GT-America-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "GT-America";
    src: url("./fonts/GT_America/GT-America-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "GT-America";
    src: url("./fonts/GT_America/GT-America-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "GT-America";
    src: url("./fonts/GT_America/GT-America-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* Generel */
body {
	background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--h-fam);
	font-weight: 400;
	transition: var(--transition);
}

html, body, input, select, optgroup, textarea {
	font-family: var(--p-fam);
	/* font-weight: 300; */
	line-height: 1.5;
	transition: var(--transition);
}

p {
	margin: 0 0 .65em;
}

p + .stom-button {
	margin-top: 1.25em;
}

span.sub-heading {
	display: block;
	font-size: 14px;
	font-weight: 600;
	font-family: 'GT-America', sans-serif;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.stom-button a {
	display: inline-block;
	font-size: 14px;
	font-family: "GT-America", sans-serif;
	text-transform: uppercase;
	letter-spacing: .850723px;
	border: 1px solid var(--color-dark);
	background-color: #fff;
	color: var(--color-text);
	border-radius: 25rem;
	padding: 10px 20px;
}

.stom-button a:hover,
.stom-button a:focus {
	background-color: var(--color-dark);
	color: #fff;
}

.stom-button.white a {
	border-color: #fff;
	color: #222;
}

.stom-button.white a:hover {
	background-color: #000;
	border-color: #000;
	color: #fff;
}

.stom-button.inline:not(:last-of-type) {
	margin-right: 25px;
}

body.menu-open {
	overflow: hidden;
}

#main-content {
	position: relative;
}

#main-content::before {
	content: '';
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 9;
}

body.menu-open #main-content::before {
	opacity: 1;
	pointer-events: auto;
}

/* Sections */
.section-wrap.clear.narrow-section {
	margin-top: calc(var(--gap-l) * 2);
}

.section-wrap.clear.narrow-section .section {
	max-width: 1200px;
}

.section-wrap.clear.narrow-section .section > h2:first-child,
.section-wrap.clear.narrow-section .section > h3:first-child {
	margin-top: 0;
}

.section-wrap.clear.narrow-section .section > h2,
.section-wrap.clear.narrow-section .section > h3 {
	margin-top: 40px;
	margin-bottom: 5px;
}

.section-wrap.clear.narrow-section .section > p + .stom-button {
	margin-top: .5em;
}

.stom-billede-sektion .stom-picture {
	width: 45%;
}

.stom-billede-sektion .stom-cols-6 {
	/*min-height: 900px;*/
	min-height: 900px;
	width: 55%;
}

.home .stom-billede-sektion .stom-cols-6 .stom-center-box > p {
	font-size: var(--p-sans-serif);
	font-family: var(--h-fam);
	line-height: 1.25;
	transition: var(--transition);
}

.section-wrap.clear.has-background + .section-wrap.clear.has-background,
.section-wrap.clear.has-background + .stomFEE-edit-cta + .section-wrap.clear.has-background {
	margin-top: 0;
}

.section-wrap.clear.stom-billede-sektion.has-background {
	padding-block: var(--gap-l);
}

.section-wrap.clear.stom-billede-sektion.has-background .section {
	padding-block: 0;
}

.section-wrap.clear.category-slider-section {
	margin-top: calc(-1 * var(--gap-l));
	padding-inline: 0;
	padding-bottom: var(--gap-m);
}

.section-wrap.clear.category-slider-section .section {
	max-width: 100%;
}

.section-wrap.clear.category-slider-section .section .gallery-container {
	padding-inline: 0;
}

.section-wrap.clear.category-slider-section .section .gallery-container .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.section-wrap.clear.category-slider-section .section .gallery-container .content > .sub-heading {
	font-weight: 400;
	margin-bottom: 15px;
	letter-spacing: .06em;
}

.section-wrap.clear.category-slider-section .section .gallery-container .content > p {
	/* font-size: var(--p-sans-serif); */
	font-size: var(--h1);
	font-family: var(--h-fam);
    line-height: 1.25;
	transition: var(--transition);
}

.section-wrap.clear.category-slider-section .section .gallery-container .slick-list {
	margin-left: 45px;
	margin-right: 45px;
}

.section-wrap.clear.category-slider-section .section .gallery-container .slick-list .slick-track:before,
.section-wrap.clear.category-slider-section .section .gallery-container .slick-list .slick-track:after {
	display: none;
}

.section-wrap.clear.category-slider-section .section .gallery-container .slick-list .slick-track .slick-slide {
	margin: 0 45px;
	max-height: 100%;
	height: 750px;
}

.section-wrap.clear.category-slider-section .section .gallery-container .slick-list .slick-track .slick-slide > img {
	max-height: 750px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.section-wrap.clear.category-slider-section .section .slider-arrows {
	display: flex;
	align-items: center;
	padding-inline: var(--gap-l);
	column-gap: 20px;
	margin-top: 20px;
}

.section-wrap.clear.category-slider-section .section .slider-arrows .slick-arrow {
	position: static;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	width: auto;
	height: auto;
}

.section-wrap.clear.category-slider-section .section .slider-arrows .slick-arrow.slick-disabled .stom-custom-svg {
	opacity: .5;
}

.section-wrap.clear.category-slider-section .section .slider-arrows .slick-arrow .stom-custom-svg {
	line-height: 0;
	font-size: 24px;
	color: var(--color-text);
}

#main-content .section-wrap.clear.department-section:not(:first-of-type) {
	margin-top: var(--gap-m);
}

.section-wrap.clear.department-section .section {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.section-wrap.clear.department-section .section .content {
	display: grid;
	grid-column: span 3;
	background-color: #eaeaea;
	padding: 70px;
}

.section-wrap.clear.department-section .section .content .stom-center-box > h2,
.section-wrap.clear.department-section .section .content .stom-center-box > h3 {
	font-size: var(--h2);
	/*
	border-bottom: 1px solid #000;
	padding-bottom: 12px;
    margin-bottom: 30px;
	*/
}

.section-wrap.clear.department-section .section .content .stom-center-box > p {
	font-weight: 300;
}

.section-wrap.clear.department-section .section .content .stom-center-box > ul li:not(:last-of-type) {
	margin-bottom: 5px;
}

.section-wrap.clear.department-section .section .stom-department-picture > img {
	height: 100%;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

/* Logo + Menu */
.site-header .header-wrapper {
	max-width: 100%;
}

.site-branding {
	display: flex;
	column-gap: 30px;
}

.site-branding .menu-toggle {
	background-color: transparent;
	border: none;
	padding: 0;
}

.site-branding #logo {
	padding: 20px 0;
}

header#masthead.header-visible .site-branding #logo {
	padding: 20px 0;
}

.site-branding #logo img, 
.site-branding #logo svg {
	max-width: 20px;
	max-height: 24px;
	width: auto;
	height: auto;
	filter: brightness(0) invert(1);
	transition: var(--transition);
}

header#masthead.header-visible .site-branding #logo img:not(.logo-landscape), 
header#masthead.header-visible .site-branding #logo svg {
	max-height: 24px;
	filter: none;
}

header#masthead.header-transparent .site-branding #logo img:not(.logo-landscape), 
header#masthead.header-transparent .site-branding #logo svg {
	filter: brightness(0) invert(1);
}

.style-header-03 #site-navigation {
	/* justify-content: flex-start; */
	justify-content: space-between;
}

header .main-navigation ul.menu a {
	font-size: 12px;
	font-weight: 300;
	font-family: 'GT-America', sans-serif;
	text-transform: uppercase;
	letter-spacing: .05em;
	padding: .7em 1em;
	color: #fff;
	transition: var(--transition);	
}

header#masthead.header-visible .main-navigation ul.menu a {
	color: var(--color-text);
}

header#masthead.header-transparent .main-navigation ul.menu a {
	color: #fff;
}

.hover-style-bold ul.menu li:hover > a, 
.hover-style-bold ul.menu li.focus > a, 
.hover-style-bold ul.menu .current-menu-item > a, 
.hover-style-bold ul.menu .current-menu-ancestor > a {
	font-weight: 400;
	color: var(--color-1);
}

header .main-navigation ul.menu a:focus {
	outline: none;
}

#woo-icons .site-header-cart .stom-custom-svg,
header#masthead.header-sticky-active #woo-icons .site-header-cart .stom-custom-svg {
	color: #fff;
}

header#masthead.header-visible #woo-icons .site-header-cart .stom-custom-svg {
	color: var(--color-dark);
}

header#masthead.header-transparent #woo-icons .site-header-cart .stom-custom-svg {
	color: #fff;
}

#woo-icons .site-header-cart .cart-contents span.count {
	color: #fff;
	background-color: var(--color-1);
}

body.woocommerce-page .icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--color-dark);
	padding-bottom: 10px;
	margin-bottom: 60px;
}

body.woocommerce-page .icon-wrapper .shopinfo ul {
	display: flex;
	align-items: center;
	padding-left: 0;
}

body.woocommerce-page .icon-wrapper .shopinfo ul li {
	font-size: 16px;
	list-style-type: none;
}

body.woocommerce-page .icon-wrapper .shopinfo ul li:not(:last-of-type):after {
	content: '|';
	margin: 0 10px;
}

body.woocommerce-page .icon-wrapper .shopinfo ul li a {
	font-weight: 600;
	text-decoration: none;
}


/* Mega Menu */
#primary-menu > li.menu-item > a {
	z-index: 999;
	color: #fff;
}

#primary-menu li.menu-item-has-children:not(.mega-menu) ul.sub-menu li.menu-item a {
	color: #000;
	width: 260px;
}

#primary-menu li.menu-item-has-children:not(.mega-menu) ul.sub-menu li.menu-item a .hidden-menu-item {
	/* justify-content: flex-start; */
	/* padding: .7em 1.25em; */
}

/* VIGTIGT: Deaktiver hover-funktionalitet på mega-menu */
#primary-menu > li.menu-item-has-children.mega-menu:hover > ul.sub-menu {
	display: none !important;
}

/* Skjul submenus som standard */
#primary-menu > li.menu-item-has-children.mega-menu > ul.sub-menu {
	display: none;
	
	padding: 35px var(--gap-m) 35px;
	column-gap: 35px;
	position: absolute;
	border-top: none;
	left: 0;
	right: 0;
}

/* Vis submenu når åben */
#primary-menu > li.menu-item-has-children.mega-menu.menu-open > ul.sub-menu {
	display: flex !important;
}

/* Cursor pointer på mega menu links */
#primary-menu > li.menu-item-has-children.mega-menu > a {
	cursor: pointer;
	letter-spacing: 0.06em;
}

/* Deaktiver hover på andre items når en menu er åben */
#primary-menu.click-mode > li.mega-menu:not(.menu-open) {
	/*pointer-events: none;*/
	opacity: 0.5;
}

#primary-menu > li.menu-item-has-children.mega-menu > ul.sub-menu > li.menu-item:not(:last-of-type) {
	border-right: 1px solid rgba(0, 0, 0, 0.3);
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.menu-item a {
	font-size: 12px;
	color: #000;
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.menu-item > a .hidden-menu-item {
	font-size: 12px;
	opacity: .5;
	justify-content: flex-start;
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.menu-item-heading > a {
	font-weight: 400;
	pointer-events: none;
	height: auto;
	margin-bottom: 10px;
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.menu-item-preview {
	min-width: 920px;
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.menu-item-news > a {
	display: none;
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.menu-item-news .news-list .news > a,
#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.actual ul.sub-menu li.menu-item > a {
	text-align: left;
	font-size: 24px;
	font-family: var(--h-fam);
	text-transform: inherit;
	font-weight: 400;
	padding: 2px 20px 2px 0 !important;
	width: 100%;
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.actual ul.sub-menu li.menu-item > a .hidden-menu-item {
font-size: 24px;
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.menu-item-news .news-list .news > a[href="#"][data-title]:empty {
	display: none;
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.menu-item-has-children:not(.menu-item-news) > ul.sub-menu li.menu-item a {
	padding: 5px 0;
	font-weight: 300;
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.menu-item-has-children:not(.menu-item-news) > ul.sub-menu li.menu-item a .hidden-menu-item {
	opacity: 1;
	letter-spacing: 0.06em;
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.preview-container > a:first-of-type {
	display: none;
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.preview-container .stom-featured-menu-items .hidden-menu-item {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 26px;
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.preview-container .stom-featured-menu-items .hidden-menu-item .menu-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	height: 220px;
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.preview-container .stom-featured-menu-items .hidden-menu-item .menu-item:before {
	content:"";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .25);
	z-index: 2;
	pointer-events: none;
	transition: var(--transition);
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.preview-container .stom-featured-menu-items .hidden-menu-item .menu-item:hover:before {
	background-color: rgba(0, 0, 0, .40);
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.preview-container .stom-featured-menu-items .hidden-menu-item .menu-item > a.full-element-link {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	color: transparent;
	z-index: 5;
	display: flex;
	align-items: center;
	padding-block: 0;
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.preview-container .stom-featured-menu-items .hidden-menu-item .menu-item > a.full-element-link:before {
	display: none;
}

#primary-menu > li.menu-item-has-children.mega-menu ul.sub-menu li.preview-container .stom-featured-menu-items .hidden-menu-item .menu-item > a.full-element-link .menu-title {
	font-size: 20px;
	font-family: 'GT-America-Regular', serif;
	text-transform: initial;
	color: #fff;
}

#primary-menu > li.menu-item-icon {
	margin-right: .5em;
}

#primary-menu li.menu-item-icon > a {
	padding-inline: 2em;
}

#primary-menu li.menu-item-icon > a:before,
#primary-menu li.menu-item-icon > a .stom-menu-item-arrow {
	display: none;
}

#primary-menu li.menu-item-icon > a .hidden-menu-item .stom-custom-svg {
	font-size: 30px;
	display: flex;
}

#primary-menu > li.menu-item-icon ul.sub-menu li.menu-item-11518 > a:first-of-type,
#primary-menu > li.menu-item-icon ul.sub-menu li.menu-item-11519 > a:first-of-type {
	visibility: hidden;
}

.stom-menu-item-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.stom-menu-item-arrow.arrow-rotated {
  transform: rotate(-180deg); /* Drej pilen opad */
}





/* Header */
header#masthead {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: transparent;
    box-shadow: none;
    /* transform: translateY(0); */
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease !important;
}

body.admin-bar header#masthead {
	top: 32px;
}

header#masthead.header-visible {
	background-color: #fff;
}

header#masthead.header-transparent {
	background-color: transparent;
}

#masthead .stom-button a {
	font-size: 14px;
	background-color: transparent;
	border-color: #fff;
	color: #fff;
}

#masthead .stom-button a:hover {
	background-color: #fff;
	border-color: #fff;
	color: #000;
}

header#masthead.header-visible .stom-button a {
	color: #000;
	border-color: #000;
}

header#masthead.header-visible .stom-button a:hover {
	background-color: #000;
	color: #fff;
}

header#masthead.header-transparent .stom-button a {
	color: #fff;
	border-color: #fff;
}

header#masthead.header-transparent .stom-button a:hover {
	background-color: #fff;
	color: #000;
}
  
/* Skjul header */
header#masthead.header-hidden {
    transform: translateY(-100%);
}

header.site-header .section-wrap .section {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-right: 0;
}

header.site-header .section-wrap .section:after {
	display: none;
}

header.site-header .section-wrap .section .instantsearch {
	position: relative;
	padding-bottom: 8px;
}

header.site-header .section-wrap .section .instantsearch:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	/*background-color: #afaaa6;*/
	background-color: #fff;
	transition: opacity 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
}

header.site-header .section-wrap .section .instantsearch > a.instantsearch-trigger {
	display: inline-block;
	min-width: 180px;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 14px;
	font-family: 'GT-America-Regular', sans-serif;
	color: #fff;
}

header#masthead.header-transparent .section-wrap .section .instantsearch > a.instantsearch-trigger {
	color: #fff !important;
}

header#masthead.header-visible .section-wrap .section .instantsearch > a.instantsearch-trigger {
	color: var(--color-dark);
}

header#masthead.header-visible .section-wrap .section .instantsearch:after {
	background-color: var(--color-dark);
}

header#masthead.header-transparent .section-wrap .section .instantsearch:after {
	background-color: #fff !important;
}

header.site-header .section-wrap .section .instantsearch > a.instantsearch-trigger .stom-custom-svg {
	font-size: 16px;
	margin-right: .25em;
}

body:not(.woocommerce-cart):not(.woocommerce-checkout) .header-sticky-active.scrolled #masthead {
	box-shadow: none;
	background-color: var(--color-bg);
}

body:not(.woocommerce-cart):not(.woocommerce-checkout) .header-sticky-active.scrolled #masthead .main-navigation ul.menu a {
	color: var(--color-text);
}

.page-slider-section {
	position: relative;
}

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

#navigateDown {
	position: absolute;
	bottom: var(--gap-m);
	right: var(--gap-m);
	width: 48px;
	height: 48px;
	border: 1px solid #fff;
	background-color: transparent;
	border-radius: 50rem;
	transition: var(--transition);
	cursor: pointer;
	z-index: 999;

	display: flex;
	align-items: center;
	justify-content: center;
}

.page-id-1996 #navigateDown {
	position: fixed;
	bottom: var(--gap-m);
	right: var(--gap-m);
	width: 48px;
	height: 48px;
	border: 1px solid #fff;
	background-color: transparent;
	border-radius: 50rem;
	transition: var(--transition);
	cursor: pointer;
	z-index: 999;

	display: flex;
	align-items: center;
	justify-content: center;
}

.page-slider-section > #navigateDown:hover {
	background-color: #fff;
}

.page-slider-section > #navigateDown .stom-custom-svg {
	line-height: 0;
	font-size: 28px;
	color: #fff;
	transition: var(--transition);
}

.page-slider-section > #navigateDown:hover .stom-custom-svg {
	color: #000;
}

.page-slider-section .slide-element .video-aligner {
	padding-top: 0 !important;
	line-height: 0;
}

.page-slider-section .slide-element video {
	min-height: calc(100svh - var(--header-height));
	max-height: calc(100svh - var(--header-height));
}

.admin-bar .page-slider-section .slide-element video {
	min-height: calc(100svh - 32px);
	max-height: calc(100svh - 32px);
}

.page-slider-section .image-aligner img {
	min-height: 100svh;
	max-height: 100svh;
}

body.admin-bar.page-slider-section .image-aligner img {
	max-height: calc(100svh - 32px);
}

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

.page-slider-section .slider-text {
	align-items: flex-end;
}

body:not(.home) .page-slider-section .slider-text {
	align-items: center;
	background-color: rgba(0, 0, 0, .25);
}

.home .page-slider-section .slider-text-inner .slider-text-inner-wrapper h1 {
	margin-bottom: 0;
}

body:not(.home) .page-slider-section .slider-text-inner .slider-text-inner-wrapper {
	max-width: 100%;
}

body:not(.home) .page-slider-section .slider-text-inner .slider-text-inner-wrapper h1,
body:not(.home) .page-slider-section .slider-text-inner .slider-text-inner-wrapper h2 {
	position: relative;
	font-size: 85px;
	line-height: 1;
	margin-bottom: 0;
}

body:not(.home) .page-slider-section .slider-text-inner .slider-text-inner-wrapper h3 {
	font-size: var(--h1);
}

body:not(.home) .page-slider-section .slider-text-inner .slider-text-inner-wrapper h1:after {
	content: "—";
    display: inline-block;
	margin-left: .25em;
}

body:not(.home) .page-slider-section .slider-text-inner .slider-text-inner-wrapper h2,
body:not(.home) .page-slider-section .slider-text-inner .slider-text-inner-wrapper h3 {
	font-style: italic;
	margin-left: 100px;
}

body:not(.home) .page-slider-section .slider-text-inner .slider-text-inner-wrapper h2 + p:first-of-type {
	margin-top: var(--gap-l);
	/* max-width: 850px; */
}

body:not(.home) .page-slider-section .slider-text-inner .slider-text-inner-wrapper p {
	margin-left: 100px;
	font-size: 14px;
	font-family: 'GT-America-Regular', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .85px;
	line-height: 1.3;
	max-width: 425px;
}

body:not(.home) .page-slider-section .slider-text-inner .slider-text-inner-wrapper .stom-button {
	margin-left: 100px;
}

body:not(.home) .page-slider-section .slider-text-inner .slider-text-inner-wrapper .stom-button a {
	color: #000;
	border-color: #000;
}

body.new-header-layout .page-slider-section .slider-text {
	align-items: flex-end;
}

body.new-header-layout .page-slider-section .slider-text-inner .slider-text-inner-wrapper .white-text {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

body.new-header-layout .page-slider-section .slider-text-inner .slider-text-inner-wrapper {
	max-width: 100%;
	padding-block: 20px;
	border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

body.new-header-layout .page-slider-section .slider-text-inner .slider-text-inner-wrapper h1 {
	font-size: var(--h1);
	line-height: 1.3;
	margin-bottom: 0;
}

body.new-header-layout .page-slider-section .slider-text-inner .slider-text-inner-wrapper h1:after {
	display: none;
}

body.new-header-layout .page-slider-section .slider-text-inner .slider-text-inner-wrapper .stom-button a {
	color: #222;
	padding: 16px 40px;	
}

body.new-header-layout .page-slider-section .slider-text-inner .slider-text-inner-wrapper .stom-button a:hover {
	background-color: #000;
	border-color: #000;
	color: #fff;
}

body.admin-bar.new-header-layout .page-slider-section .image-aligner img {
	max-height: calc(100vh - 32px);
}

/* Frontpage */
.section-wrap.clear.cards-section .section .grid-elements {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 100%;
	column-gap: 5px;
	max-height: 767px;
}
.section-wrap.clear.cards-section .section .grid-elements .grid-element {
	display: flex;
	width: calc(100% / 3);
	max-height: initial;
	/* height: 100%; */
	transition: width 0.4s ease;
}

.section-wrap.clear.cards-section .section .grid-elements .grid-element:hover {
	width: 50vw;
}

.section-wrap.clear.cards-section .section .grid-elements .grid-element .overlay {
	position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.section-wrap.clear.cards-section .section .grid-elements .grid-element .overlay > h2,
.section-wrap.clear.cards-section .section .grid-elements .grid-element .overlay > h3 {
	font-size: 60px;
	transition: transform 0.4s ease;
	transform: scale(1);
}

.section-wrap.clear.cards-section .section .grid-elements .grid-element:hover .overlay > h2,
.section-wrap.clear.cards-section .section .grid-elements .grid-element:hover .overlay > h3 {
	transform: scale(1.5);
}

.section-wrap.clear.showroom-section {
	position: relative;
	overflow: hidden;
	height: 100vh;
	background-size: cover;
	margin-top: var(--gap-l) !important;
}

/*
.section-wrap.clear.showroom-section:before {
	content:"";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .4);
	z-index: 2;
	pointer-events: none;
}
	*/

.section-wrap.clear.showroom-section .section {
	position: relative;
	z-index: 3;
	height: 100%;
    
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section-wrap.clear.showroom-section .section > h2,
.section-wrap.clear.showroom-section .section > h3 {
	display: block;
	font-size: 60px;
	margin-bottom: var(--gap-m);
}

.section-wrap.clear.annotion-section {
	height: 100vh;
	background-size: cover;

	display: none;
}

.section-wrap.clear.annotion-section .section {
	height: 100%;
}

.section-wrap.clear.annotion-section .section .grid-elements {
	position: relative;
	height: 100%;
}

/* Annotering sektion */
.section-wrap.clear.annotion-section .section .grid-elements .grid-element .annotion-container {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
}

.section-wrap.clear.annotion-section .section .grid-elements .grid-element .annotion-container .dot {
	display: block;
	width: 24px;
	height: 24px;
	background-color: rgba(0, 0, 0, .2);
	border: 1px solid transparent;
	border-radius: 50%;
	position: relative;
	transition: all 200ms ease-in;
	z-index: 1;
}

.section-wrap.clear.annotion-section .section .grid-elements .grid-element .annotion-container:hover .dot {
	border-color: #fff;
	background-color: rgba(0, 0, 0, 0);
}

.section-wrap.clear.annotion-section .section .grid-elements .grid-element .annotion-container .dot::before {
  content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;        
    height: 12px;
    border-radius: 50%;
    background-color: #fff; 
    border: 1px solid #fff;
    transform: translate(-50%, -50%);
    z-index: 2; 
}

.section-wrap.clear.annotion-section .section .grid-elements .grid-element .annotion-container .dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0);
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
    z-index: 0;
    
    animation: bounceRipple 1.5s ease-out infinite;
}

/* Keyframes for continuous bounce/ripple */
@keyframes bounceRipple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.section-wrap.clear.annotion-section .section .grid-elements .grid-element .annotion-container .text {
	font-size: 12px;
	font-weight: 600;
	font-family: 'GT-America', sans-serif;
	text-transform: uppercase;
	color: #fff;
	/* text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.4),  
        0 2px 4px rgba(0, 0, 0, 0.2);   */
	white-space: nowrap;
}

.annotion-container .tooltip-text {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    color: var(--color-text);
    padding: 10px 10px;
    border-radius: 4px;
    font-size: 12px;
	font-family: 'GT-America', sans-serif;
	font-weight: 400;
    z-index: 10;
    pointer-events: none;

	width: 250px;     
    white-space: normal;  
    word-wrap: break-word;
    text-align: center;   
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.annotion-container:hover .tooltip-text {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.annotion-container:hover .dot::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0); 
}

/* Subpages */
body:not(.home) #main-content {
	/*margin-top: 0;*/
}

body:not(.home):not(.single-post):not(.woocommerce-page) .entry-content,
body:not(.home) .page-header {
	max-width: 50%;
}

body:not(.home) .entry-content > p,
body:not(.home) .page-header  p {
	/* font-family: "GT-America", serif; */
	font-family: var(--h-fam);
	font-size: var(--p-sans-serif);
    line-height: 1.25;
}

body:not(.home) .entry-content > p a,
body:not(.home) .page-header p a {
	color: var(--color-1);
	text-decoration: none;
	white-space: nowrap;
	transition: var(--transition);
}

body:not(.home) .entry-content > p a:hover,
body:not(.home) .page-header p a:hover {
	color: var(--color-text);
}

body.page-template-page-blog .entry-header .entry-title {
	font-size: var(--h2);
}

body.page-template-page-blog .entry-header .entry-meta {
	display: none;
}

body.page-template-page-blog .entry-content  {
	max-width: 100%;
}

body.page-template-page-blog .entry-content > p {
	font-family: "GT-America", sans-serif;
	font-size: var(--p);
}

body.seo-page .entry-content {
	max-width: 60%;
}

body.seo-page #main-content section.section-wrap.clear.has-background:last-child {
    margin-bottom: calc(-1 * var(--gap-l) * 2);
}

body.seo-page #main-content .section-wrap.clear.stom-billede-sektion {
	margin-top: calc(var(--gap-l) * 2);
}

body.seo-page .section-wrap.clear.stom-billede-sektion .section .stom-cols-6 {
	align-items: flex-start;
	padding-top: 0;
	min-height: 550px;
	width: 60%;
}

body.seo-page .section-wrap.clear.stom-billede-sektion .section .stom-cols-6 .stom-center-box > p {
	font-size: 21px;
}

body.seo-page .section-wrap.clear.stom-billede-sektion .section .stom-cols-6 .stom-center-box > h2:not(:first-child) {
	margin-top: 40px;
}

body.seo-page .section-wrap.clear.stom-billede-sektion .section .stom-picture {
	width: 40%;
}

.section-wrap.clear.sitemap-section .section ul {
	column-count: 3;
}

.section-wrap.clear.sitemap-section .section ul li a {
	text-decoration: none;
	color: var(--color-1);
}

.section-wrap.clear.sitemap-section .section ul li a:hover {
	text-decoration: underline;
}

/* body:not(.home) #main-content .section-wrap.clear.has-background:first-child {
    margin-top: calc(-1 * var(--gap-l));
} */

.section-wrap.clear.category-section.has-background {
	margin-top: calc(-1 * var(--gap-l));
}

.section-wrap.clear.category-section .section .grid-elements .grid-element:not(.heading) {
	position: relative;
	max-height: 680px;
}

.section-wrap.clear.category-section .section .grid-elements .grid-element:not(.heading) > img {
	max-height: 680px;
}

.section-wrap.clear.category-section .section .grid-elements .grid-element:not(.heading):before {
	content:"";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .25);
	transition: var(--transition);
	pointer-events: none;
}

.section-wrap.clear.category-section .section .grid-elements .grid-element:not(.heading):hover:before {
	background-color: rgba(0, 0, 0, .40);
}

.section-wrap.clear.category-section .section .grid-elements .grid-element:not(.heading) .overlay {
	position: relative;
	justify-content: center;
	align-items: center;
}

.section-wrap.clear.category-section .section .grid-elements .grid-element:not(.heading) .overlay > * {
	color: #fff;
}

.section-wrap.clear.category-section .section .grid-elements .grid-element:not(.heading) .overlay > h2 {
	font-size: 60px;
}

.section-wrap.clear.category-section .section .grid-elements .grid-element:not(.heading) .overlay > p {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	font-family: 'GT-America', sans-serif;
	letter-spacing: .85px;
	margin-bottom: 8px;
	text-align: center;
}

body.stom-terms-page .section-wrap.clear.narrow-section .section {
	max-width: 950px;
}

body.stom-terms-page .section-wrap.clear.narrow-section .section,
body.stom-terms-page .section-wrap.clear.narrow-section .section > p {
	font-size: 16px;
}

body.stom-terms-page .section-wrap.clear.narrow-section .section > ul li:not(:last-of-type) {
	margin-bottom: 10px;
}

body.price-page .section-wrap.clear.department-section .section {
	grid-template-columns: repeat(5, 1fr);
}

body.price-page .section-wrap.clear.department-section .section:after {
	display: none;
}

body.price-page .section-wrap.clear.department-section .section .content {
	grid-column: span 2;
}

body.price-page .section-wrap.clear.department-section .section .stom-department-picture {
	display: grid;
	grid-column: span 3;
}

body.price-page .section-wrap.clear.department-section .section .stom-department-picture img {
	width: 100%;
	aspect-ratio: unset;
	max-height: 560px;
}

.section-wrap.clear.booking-section .section {
	background-color: #eaeaea;
	border: 1px solid var(--color-dark);
	padding: var(--gap-l);
}

.section-wrap.clear.booking-section .section .gform_wrapper {
	display: block !important;
}

.section-wrap.clear.booking-section .section .gform_wrapper form .gform_body .gform_fields .gfield.gf-title-break > h5 {
	font-size: var(--h3);
}

.section-wrap.clear.booking-section .section .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container > * {
	border-radius: 5px;
	border-color: var(--color-dark);
}

.section-wrap.clear.booking-section .section .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container > *::placeholder {
	font-size: 14px;
}

.section-wrap.clear.booking-section .section .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container:not(.ginput_container_consent) > input,
.section-wrap.clear.booking-section .section .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container > select {
	height: 50px;
}

.section-wrap.clear.booking-section .section .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container > textarea,
.section-wrap.clear.booking-section .section .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container > input {
	padding: 5px 10px;
}

.section-wrap.clear.booking-section .section .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container > textarea {
	height: 150px;
}

.section-wrap.clear.booking-section .section .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container_fileupload > input {
	width: auto;
}

.section-wrap.clear.booking-section .section .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container_radio .gfield_radio .gchoice label {
	margin: 0;
}

.section-wrap.clear.booking-section .section .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container_radio .gfield_radio .gchoice > input,
.section-wrap.clear.booking-section .section .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox .gchoice .gfield-choice-input {
	margin-top: 0;
}

.section-wrap.clear.booking-section .section .gform_wrapper form .gform_footer {
	margin: 40px 0 0 !important;
}

.section-wrap.clear.booking-section .section .gform_wrapper form .gform_footer .gform_button {
	border-radius: 25rem;
	padding: 12px 20px;
}

/* Sidebar */
.widget-area .widget:not(.widget_search):not(.widget_instagram-feed-widget):not(.widget-no-border) {
	font-size: 14px;
	background-color: #eaeaea;
}

/* Colophon */
#colophon .widget-title {
	font-size: var(--h3);
	font-weight: 400;
	font-family: var(--h-fam);
	color: var(--color-bg);
	margin-bottom: 15px;
}

#colophon.footer-setting-02 {
	font-size: 16px;
	font-weight: 300;
	font-family: 'GT-America', sans-serif;
	line-height: 1.4;
	letter-spacing: .06em;
}

body:not(.home) #colophon.footer-setting-02 {
	margin-top: calc(var(--gap-l) * 2);
}

#colophon .footer-widget-area.stom-grid-section .grid-element .overlay .footer-widgets .widget .textwidget ul.menu {
	margin-bottom: 1.5em;
}

#colophon .footer-widget-area.stom-grid-section .grid-element .overlay .footer-widgets .widget .textwidget ul.menu li.menu-item:not(:last-of-type) {
	margin-bottom: 10px;
}

#colophon .widget .textwidget > p a,
#colophon .widget .textwidget > ul li a {
	color: #fff;
	padding: 0;
}

.footer-setting-02 .footer-widget-area .section {
	padding: 40px 0;
}

.footer-setting-02 .footer-widget-area .section .newsletter-section {
	display: grid;
	grid-template-columns: 1fr 750px;
	align-items: flex-start;
	justify-content: space-between;
	border-bottom: 1px solid #fff;
	padding-bottom: 40px;
}

.footer-setting-02 .footer-widget-area .section .newsletter-section .newsletter > p {
	font-size: 16px;
}

.footer-setting-02 .footer-widget-area .section .newsletter-section .newsletter .mc4wp-form {
	margin-bottom: 0;
}

.footer-setting-02 .footer-widget-area .section .newsletter-section .newsletter .mc4wp-form .mc4wp-form-fields .mform_wrapper .field-inline {
	display: inline-block;
	width: 48.5%;
}

.footer-setting-02 .footer-widget-area .section .newsletter-section .newsletter .mc4wp-form .mc4wp-form-fields .mform_wrapper .field-inline input {
	width: 100%;
	border: none;
	padding: 8px 10px;
}

.footer-setting-02 .footer-widget-area .section .newsletter-section .newsletter .mc4wp-form .mc4wp-form-fields .mform_wrapper .field-inline input::placeholder {
	font-size: 16px;
	font-family: 'GT-America', sans-serif;
	color: #000;
}

.footer-setting-02 .footer-widget-area .section .newsletter-section .newsletter .mc4wp-form .mc4wp-form-fields .mform_wrapper .field-inline:nth-child(2) {
	float: right;
}

.footer-setting-02 .footer-widget-area .section .newsletter-section .newsletter .mc4wp-form .mc4wp-form-fields .mform_wrapper .field-choices label {
	font-size: 16px;
}

.footer-setting-02 .footer-widget-area .section .newsletter-section .newsletter .mc4wp-form .mc4wp-form-fields .mform_wrapper .field-agree {
	display: inline-block;
}

.footer-setting-02 .footer-widget-area .section .newsletter-section .newsletter .mc4wp-form .mc4wp-form-fields .mform_wrapper .submit_button {
	border-radius: 50rem;
	border: 1px solid #fff;
	background-color: #fff;
	color: #000;
}

.footer-setting-02 .footer-widget-area .section .link-section {
	display: flex;
	align-items: flex-start;
	column-gap: calc(var(--gap-l) * 1.75);
	border-top: 1px solid #fff;
	padding-top: 40px;
    margin-top: 40px;
}

.footer-setting-02 .footer-widget-area .section .link-section .column ul li:not(:last-of-type) {
	margin-bottom: 5px;
}

.footer-setting-02 .footer-widget-area .section .link-section .column ul li a {
	padding: 0 !important;
}

.footer-setting-02 .footer-widget-area .section .grid-elements {
	gap: var(--gap-l);
	margin-top: 40px;
}

#colophon .footer-widget-area.stom-grid-section .grid-element .overlay .footer-widgets .widget .textwidget p {
	margin: 0 0 1.5em;
}

#colophon .footer-widget-area.stom-grid-section .grid-element .overlay .footer-widgets .widget .textwidget p:last-of-type {
	margin-bottom: 0;
}

.home #colophon.footer-setting-02 {
	margin-top: 0;
}

.footer-setting-02 .footer-widget-area-site-info .section {
	
}

#colophon .copyright .section .footer-widgets .widget .textwidget {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#colophon .copyright .section .footer-widgets .widget .textwidget ul {
	display: flex;
	align-items: center;
	padding-left: 0;
}

#colophon .copyright .section .footer-widgets .widget .textwidget ul li {
	font-size: 14px;
	font-weight: 400;
	font-family: 'GT-America-Regular', sans-serif;
	list-style-type: none;
}

#colophon .copyright .section .footer-widgets .widget .textwidget ul li:not(:last-of-type):after {
	content: '|';
	margin: 0 10px;
}

#colophon .copyright .section .footer-widgets .widget .textwidget ul li a {
	padding: 0;
}

/*  */


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


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


/* woocommerce style goes here */


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

/* Products */
.products-container {
	/*
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: var(--gap-l) var(--gap-l);
	*/
}

.products-container .products-post {
	position: relative;
	width: calc(50% - 45px); 
	margin-bottom: var(--gap-l);
}

.products-container .products-post > a.full-element-link {
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: transparent;
    z-index: 5;
}

.products-container .products-post .products-image {
	position: relative;
	line-height: 0;
	margin-bottom: 20px;
}

.products-container .products-post .products-image:before {
	content:"";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
	transition: var(--transition);
	pointer-events: none;
}

.products-container .products-post:hover .products-image:before {
	background-color: rgba(0, 0, 0, .25);
}

.products-container .products-post .products-image > .category {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 9;
	line-height: 1.5;
}

.products-container .products-post .products-image > .category a {
	font-size: 14px;
	font-weight: 400;
	font-family: 'GT-America', sans-serif;
	letter-spacing: 6%;
	text-transform: uppercase;
	background-color: #fff;
	border-radius: 50rem;
	padding: 12px 20px;
	transition: var(--transition);
	z-index: 9;
	text-decoration: none;
	display: inline-block;
	width: 100%;
	height: 100%;
}

.products-container .products-post .products-image > .category a:hover {
	background-color: #000;
	color: #fff;
}

.products-container .products-post .products-image > img {
	width: 100%;
	/* height: 100%; */
	object-fit: cover;
	/* max-height: 817px; */
	aspect-ratio: 1 / 1;
}

.products-container .products-post .products-info > h3 {
	font-size: 32px;
	width: 100%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	margin-bottom: 0;
}

.products-container .products-post .products-info .content > p {
	width: 100%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-family: 'GT-America-Regular', sans-serif;
	line-height: 1.3;
}

/* Gallery */
.product-gallery-grid {
	position: relative;
	display: block;
	width: 100%;
	clear: both;
}

.entry-content + .product-gallery-grid {
	margin-top: calc(var(--gap-l) * 1.5);
}

.product-gallery-grid .product-gallery-grid-gutter {
    width: 4%;
}

.product-gallery-grid .product-gallery-grid-sizer {
	width: 48%;
}

.product-gallery-grid-item {
    width: 48%;
	box-sizing: border-box;
}

.product-gallery-grid .product-gallery-grid-item:not(:last-of-type) {
	margin-bottom: 10%;
}

.product-gallery-grid .product-gallery-grid-item .img-description {
	margin-top: 20px;
	letter-spacing: 0.476px;
}

/* Single product */
.single-kva_produkter .produkt-slide-image {
	position: relative;
	display: grid;
    grid-template-columns: 100%;
	height: 100%;
	min-height: 100svh;
	max-height: 100svh;
	width: 100%;
	background-size: cover;
}

.single-kva_produkter .produkt-slide-image:before {
	content:"";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .25);	
	pointer-events: none;
}

.single-kva_produkter .produkt-slide-image .entry-header {
	position: relative;
	display: flex;
	padding: var(--gap-m);
	align-items: flex-end;
}

.single-kva_produkter .produkt-slide-image .entry-header .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	padding-block: 20px;
}

.single-kva_produkter .produkt-slide-image .entry-header .content .entry-title {
	font-size: var(--h1);
	color: #fff;
}

.single-kva_produkter .produkt-slide-image .entry-header .content .interaction > .stom-button a {
	border-color: #fff;
	padding: 16px 40px;
}

.single-kva_produkter .produkt-slide-image .entry-header .content .interaction > .stom-button a:hover {
	border-color: #000;
}

.single-kva_produkter #main-content #content {
	margin-top: calc(var(--gap-l) * 1.5);
}

.single-kva_produkter .entry-content {
	max-width: 50%;
}

.single-kva_produkter .entry-content > p {
	font-size: 32px;
	line-height: 1.4;
}

/* Alternative colors picker */
.color-wrap {
	margin-top: calc(var(--gap-l) * 1.5);
}

.color-wrap .sub-heading {
	margin-bottom: 0;
}

/*
.color-wrap .color-list {
    display: none;
}

.color-wrap .color-list:nth-of-type(1),
.color-wrap .color-list:nth-of-type(2) {
    display: block;
}

.color-wrap.expanded .color-list {
    display: block;
}
*/

.show-more-colors {
	cursor: pointer;
    font-weight: 600;
    display: none;
    display: flex;
	justify-content: space-between;
    align-items: center;
	border-bottom: 1px solid #000;
	padding-block: 25px;
    gap: 5px;
}

.show-more-colors .show-more-text {
	font-size: 52px;
	font-weight: 400;
	font-family: var(--h-fam);
	transition: var(--transition);
}

.show-more-colors:hover .show-more-text {
	color: var(--color-1);
}

.show-more-colors .stom-custom-svg {
	font-size: 36px;
	line-height: 0;
}

.show-more-colors .stom-custom-svg svg {
    transition: transform 0.3s ease;
}

.color-wrap .color-list {
	border-bottom: 1px solid #000;
}

.color-wrap .color-heading {
	border-bottom: 1px solid #000;
}

.color-wrap .color-list .box-link-heading > h3 {
	font-size: 52px;
	margin-bottom: 0;
	transition: var(--transition);
}

.color-wrap .color-list:hover .box-link-heading > h3 {
	color: var(--color-1);
}

.color-wrap .color-list .color-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding-block: 25px;
	cursor: pointer;
}

.color-wrap .color-list .color-row .color-round {
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 50rem;
}

.color-wrap .color-list .color-row .color-round > img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.color-wrap .color-list .color-row .color-round.color-ask-renhvid {
	border: 1px solid #000;
}

.color-wrap .color-list > .color-sample {
    display: flex;
	align-items: flex-start;
	justify-content: space-between;
	
	max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.color-wrap .color-list > .color-sample > img {
	max-width: 800px;
	max-height: 635px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.color-wrap .color-list > .color-sample.color-ask-renhvid > img {
	border: 1px solid #000;
	border-bottom: none;
}

.color-wrap .color-list > .color-sample.active {
	max-height: 500px;
    opacity: 1;
/*	margin-top: 20px;*/
}

/* Cupboard */
.cupboard-wrapper {
	display: inline-block;
	margin-top: calc(var(--gap-l) * 2);
}

.cupboard-wrapper .sub-heading {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .06em;
	margin-bottom: 35px;
}

.cupboard-wrapper .cupboard-content {
	display: grid;
	grid-template-columns: 1fr 450px;
	column-gap: calc(var(--gap-l) * 2);
}

.cupboard-wrapper .cupboard-content .cupboard-desc > p {
	font-size: 32px;
	/* font-family: 'GT-America-Regular', serif; */
	font-family: var(--h-fam);
	line-height: 1.3;
}

.cupboard-wrapper .cupboard-content .cupboard-img {
	text-align: right;
}

/* Filters */
.filters-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	column-gap: 40px;
}

.filters-container > .page-title {
	margin-right: auto;
	margin-bottom: 0;
}

.filters-container + .products-container {
	margin-top: var(--gap-m);
}

.filters-container .filters {
	position: relative;
}

.filters-container .filters span.toggle-text {
	font-size: 14px;
	font-family: 'GT-America', sans-serif;
	font-weight: 400;
	letter-spacing: .85px;
	text-transform: uppercase;
	cursor: pointer;
}

.filters-container .filters ul.filter {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.3s ease, opacity 0.3s ease;

	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.15);
	padding: 35px;
	z-index: 1000;

	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/* gap: 10px; */
	min-width: 1000px;
	pointer-events: none;
}

.filters-container .filters ul.filter.active {
	max-height: 1000px;
	opacity: 1;
	pointer-events: auto;
}

.filters-container .filters ul.filter li {
	list-style-type: none;
}

.filters-container .filters ul.filter li a {
	font-size: 14px;
	font-family: 'GT-America-Regular', sans-serif;
	text-transform: uppercase;
	color: #7f7f7f;
	text-decoration: none;
	letter-spacing: .05em;
	white-space: nowrap;
	display: inline-block;
	width: 100%;
	padding-block: 5px;
	transition: var(--transition);

	display: flex;
	align-items: center;
	column-gap: 8px;
}

.filters-container .filters ul.filter li a > img {
	width: 15px;
	height: 15px;
	border-radius: 50rem;
	border: 2px solid #fff;
}

.filters-container .filters ul.filter li a > .door-color {
	width: 15px;
	height: 15px;
	border-radius: 50rem;
	border: 2px solid #000;
}

.filters-container .filters ul.filter li a.active > .door-color {
	background-color: #eaeaea;
}

.filters-container .filters ul.filter li.ask-renhvid a > img {
	border: 2px solid #000;
}

.filters-container .filters ul.filter li a.active > img {
	border-color: #000;
}

.filters-container .filters ul.filter li a.active {
	color: var(--color-text);
}

.filters-container .filters ul.filter li a:hover {
	color: var(--color-text);
}


.filter-count {
    display: none;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    margin-right: 6px;
    display: inline-block;
}

.filter-count:empty,
.filter-count[style*="display: none"] {
    display: none;
}

/* Kataloger */
.section-wrap.clear.catalogue-section.film {
	margin-inline: 0;
}

.section-wrap.clear.catalogue-section.film .section {
	max-width: 100%;
}

.section-wrap.clear.catalogue-section .section > .sub-heading {
	margin-bottom: 40px;
}

.section-wrap.clear.catalogue-section.film .section > .sub-heading {
	max-width: var(--content-width);
	margin-inline: auto;
}

.section-wrap.clear.catalogue-section .section .katalog-liste {
	padding-left: 0;
	border-top: 1px solid #000;
}

.section-wrap.clear.catalogue-section .section .katalog-liste .katalog {
	list-style-type: none;
}

.section-wrap.clear.catalogue-section .section .katalog-liste .katalog::marker {
	display: none;
}

.section-wrap.clear.catalogue-section .section .katalog-liste .katalog a {
	text-decoration: none;
	display: inline-block;
	width: 100%;
	font-family: var(--h-fam);
	font-size: 40px;
	border-bottom: 1px solid #000;
	padding-block: 25px;
	transition: var(--transition);
}

.section-wrap.clear.catalogue-section .section .katalog-liste .katalog:hover a {
	color: var(--color-1);
}

.section-wrap.clear.catalogue-section .section .film-liste {
	padding-inline: 0;
}

.section-wrap.clear.catalogue-section .section .film-liste .slick-list {
	margin-left: -15px;
	margin-right: -15px;
}

.section-wrap.clear.catalogue-section .section .film-liste .film {
	height: auto;
}

.section-wrap.clear.catalogue-section .section .film-liste .film .sub-heading {
	margin-bottom: 12px;
	font-weight: 400;
}

.section-wrap.clear.catalogue-section .section .film-liste + .film-liste-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--content-width);
	margin-inline: auto;
	margin-top: var(--gap-l);
}

.section-wrap.clear.catalogue-section .section .film-liste + .film-liste-footer .film-liste-counter {
	font-size: 14px;
	font-weight: 600;
	font-family: 'GT-America-Regular', sans-serif;
	color: #000;
}

.section-wrap.clear.catalogue-section .section .film-liste + .film-liste-footer .film-liste-nav {
	position: relative;
	display: flex;
	gap: 10px;
}

.section-wrap.clear.catalogue-section .section .film-liste + .film-liste-footer .film-liste-nav .slick-arrow {
	position: static;
}


/* Medarbejdere */
.stom-medarbejdere {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: var(--gap-m) var(--gap-m);
}

.stom-medarbejdere .stom-medarbejder .content {
	background-color: #eaeaea;
	border-bottom: 1px solid var(--color-1);
	padding: 20px;
}

.stom-medarbejdere .stom-medarbejder .content .medarbejder-title {
	font-size: 24px;
	margin-bottom: 2px;
}

.stom-medarbejdere .stom-medarbejder .content .medarbejder-stilling {
	font-weight: 300;
}

.stom-medarbejdere .stom-medarbejder .medarbejder-thumbnail {
	line-height: 0;
}

.stom-medarbejdere .stom-medarbejder .medarbejder-thumbnail > img {
	width: 100%;
	height: 428px;
	object-fit: cover;
}

.stom-medarbejdere .stom-medarbejder .content .medarbejder-info .medarbejder-mail {
	display: flex;
	align-items: center;
	column-gap: 8px;
}

.stom-medarbejdere .stom-medarbejder .content .medarbejder-info .medarbejder-mail .stom-custom-svg {
	font-size: 14px;
	line-height: 0;
	color: var(--color-1);
}

.stom-medarbejdere .stom-medarbejder .content .medarbejder-info .medarbejder-mail a {
	color: var(--color-1);
	font-size: 16px;
	text-transform: lowercase;
	text-decoration: none;
}

.stom-medarbejdere .stom-medarbejder .content .medarbejder-info .medarbejder-mail a:hover {
	text-decoration: underline;
}

.section-wrap.clear.interactive-section .section .grid-elements .grid-element.iframe {
	grid-column: span 2;
}

.section-wrap.clear.interactive-section .section .grid-elements .grid-element .overlay {
	justify-content: flex-start;
}

.section-wrap.clear.interactive-section .section .grid-elements .grid-element.iframe .overlay p iframe {
	width: 100%;
	height: 600px;
}


/* EMIL KODE */

.page-id-1996::-webkit-scrollbar {
	display: none;
}

.page-id-1996 .section{
	margin: 0;
}

.page-id-1996 .section .stom-cols-6 .stom-center-box h2{
	font-size: 14px;
	letter-spacing: 0.06em;
	line-height: 1.33;
}

.page-id-1996 .stom-billede-sektion .stom-picture img{
	width: 100%;
    height: 100%;
    max-width: 650px;
    max-height: 811px;
	margin-left: 90px;
}

.page-id-1996 .stom-billede-sektion .stom-cols-6 .stom-center-box{
	width: 100%;
	max-width: 780px;
}

.page-id-1996 .billede-tekst-section .stom-cols-6{
	padding-right: var(--gap-l);
}



#navigateDown.hidden {
	opacity: 0;
	pointer-events: none;
}

.page-id-1996 .billede-tekst-section .section{
	margin-block: 110px;
}

.page-id-1996 .billede-tekst-section .stom-picture{
	margin-top: 3%;
	height: auto;
    max-height: none;
    padding: 0 15rem 0 0;
}

.page-id-1996{
	scroll-snap-type: y mandatory;
	overflow-y: scroll;
	height: 100vh;
}

.page-id-1996 .billede-tekst-section,
.page-id-1996 .slider-inner {
  scroll-snap-align: start;
  height: 100%;
}

/*.page-id-1996 .billede-tekst-section:not(:last-of-type) {
	padding-bottom: 100px;
}*/

.page-id-1996 .billede-tekst-section .stom-cols-6 .stom-center-box > p{
	font-family: var(--h-fam);
    font-size: var(--h3);
    line-height: 1.3;
}

.page-id-1996 .stom-billede-sektion .section{
	margin-left: 0;
	padding-left: 90px;
}

#fp-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

#fp-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    transition: opacity 0.3s;
}

#fp-nav ul li {
    display: flex;
	gap: 5px;
	justify-content: flex-end;
	align-items: center;
	padding: 16px 0 16px 0;
	font-family: arial, helvetica, sans-serif;
}

#fp-nav ul li a {
	display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.5);
    order: 2;
}

#fp-nav ul li a.active {
    background: transparent !important;
    border: 1px solid var(--nav-color, #fff) !important;
}

#fp-nav ul li.active::after {
	opacity: 0.2;
    background: rgba(0, 0, 0, 0.2) !important;
}

#fp-nav ul li div{
	font-size: 12px;
}

#fp-nav ul li {
    position: relative;
}

#fp-nav ul li::after {
	content: '';
    position: absolute;
    right: 2px;
    top: 50%;
    width: 2px;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

#fp-nav ul li {
    opacity: 0.2;
    transition: opacity 0.3s;
}

#fp-nav ul li.active {
    opacity: 1;
}

#fp-nav ul li.active div {
    color: #000;
}

#fp-nav ul li:last-child::after {
    display: none;
}

#fp-nav.white ul li{
	opacity: 1;
}

#fp-nav.white ul li a {
    background: white;
    border-color: white;
}

#fp-nav.white ul li.active a {
    background: #fff;
    border-color: #fff;
}

#fp-nav.white ul li div {
    color: white;
}

#fp-nav.white ul li.active div {
    color: #fff;
}

#fp-nav.white ul li::after {
	opacity: 1;
    background: white !important;
}

#navigateDown {
	border-color: #fff;
}

#navigateDown .stom-custom-svg {
	color: #fff;
}

/* Når ikke på top-section (sort tema) */
.page-id-1996 #navigateDown:not(.white) {
	border-color: #000;
}

.page-id-1996 #navigateDown:not(.white) .stom-custom-svg {
	color: #000;
}

.page-id-1996 #navigateDown:not(.white):hover {
	background-color: #000;
}

.page-id-1996 #navigateDown:not(.white):hover .stom-custom-svg {
	color: #fff;
}

/* WooCommerce Category */
body.woocommerce-page .page-slider-section .slider-text-inner .slider-text-inner-wrapper h2 {
	position: relative;
	margin-left: 0;
}

body.woocommerce-page .page-slider-section .slider-text-inner .slider-text-inner-wrapper h2:after {
	content: "—";
    display: inline-block;
    margin-left: .25em;
}

body.woocommerce-page #main-content #content {
	max-width: 1440px;
}

body.woocommerce-page .page-slider-section .image-aligner img {
	min-height: auto;
	max-height: 30vh;
}

body.woocommerce-page .page-slider-section .slider-text-inner .slider-text-inner-wrapper .stom-button a {
	color: #fff;
	border-color: #fff;
	background-color: transparent;
}

body.woocommerce-page .page-slider-section .slider-text-inner .slider-text-inner-wrapper .stom-button a:hover {
	background-color: #fff;
	border-color: #fff;
	color: #000;
}

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

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

#woo-icons .stom-off-canvas-wrapper .buttons a:not(:first-child) {
	background-color: var(--color-1);
}

.woocommerce ul.cart_list li dl dt, 
.woocommerce ul.product_list_widget li dl dt,
.woocommerce ul.cart_list li dl dd, 
.woocommerce ul.product_list_widget li dl dd {
	font-size: 14px;
}

/* WooCommerce Archive */
.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product {
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	padding: 20px;
}

.woocommerce ul.products li.product .button {
	display: inline-block;
    font-size: 14px;
    font-family: "GT-America", sans-serif;
	font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .850723px;
    border: 1px solid var(--color-dark);
    background-color: #fff;
    color: var(--color-text);
    border-radius: 25rem;
    padding: 10px 20px;
}

.woocommerce ul.products li.product .button:hover {
	background-color: var(--color-dark);
    color: #fff;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	margin-bottom: 5px;
}

.woocommerce ul.products li.product .price {
	color: var(--color-1);
	font-weight: 600;
}

/* Single product */
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
	margin-bottom: calc(var(--gap-l) * 2);
}

.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
	margin-bottom: calc(var(--gap-l) * 2);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	font-size: var(--h4);
	padding: 10px 20px;
}

.woocommerce div.product .woocommerce-tabs .panel {
	max-width: 100%;
}

.woocommerce div.product .woocommerce-tabs .panel > p {
	font-size: var(--p);
	font-family: var(--p-fam);
	line-height: 1.5;
}

.single-product-fullwidth #primary > .product section.related {
	margin-top: calc(var(--gap-l) * 2);
}

.single-product-fullwidth #primary > .product section.related ul.products li.product .price {
	margin-top: 0;
}

.single-product-fullwidth #primary .product_title {
	font-size: var(--h1);
	font-family: var(--h-fam);
	padding-bottom: 0;
	margin-bottom: 10px;
}

.single-product-fullwidth #primary .price {
	margin-top: 0;
	color: var(--color-1);
}

.single-product-fullwidth #primary nav.woocommerce-breadcrumb {
	font-size: var(--p);
	text-transform: inherit;
}

.woocommerce div.product .product_meta {
	display: none;
}

.woocommerce div.product form.cart .variations tr:not(:last-of-type) {
	margin-bottom: 10px;
}

.woocommerce div.product form.cart .variations select {
	height: 40px;
	min-width: 100%;
	background-color: #f5f5f5;
	border-color: #eaeaea;
}

.woocommerce div.product .price + form.cart {
	margin-top: var(--gap-m);
}

.woocommerce .stom-input-wrap button {
	height: 40px;
}

.woocommerce .stom-input-wrap input, .woocommerce .product .cart .quantity .stom-input-wrap input, .woocommerce .cart_item .stom-input-wrap input {
	height: 40px;
}

.woocommerce div.product form.cart .button.single_add_to_cart_button {
	height: 40px;
	border-radius: 25rem;
	background-color: #666;
	padding: 5px 40px;
	color: #fff;
}

.woocommerce-pagination + .woocommerce-products-footer .term-description {
	margin-top: var(--gap-l);
}

.woocommerce nav.woocommerce-pagination ul li a {
	background-color: #eaeaea;
}





#number-three-sticky-mobile-cta .cta-container .stom-button a {
	border-radius: 0;
	background-color: var(--color-1);
	color: #fff;
	flex-direction: row;
	gap: 8px;
	font-size: 14px;
}

#number-three-sticky-mobile-cta .cta-container .stom-button:not(:last-child) a {
	border-right-color: #fff;
}

#number-three-sticky-mobile-cta .cta-container .stom-button a .stom-custom-svg {
	font-size: 14px;
	/* line-height: 0; */
	color: #fff;
}



/* Custom sidebar */
.side-panel {
	position: fixed;
	top: 0;
	right: 0;
	width: 50%;
	max-width: 90vw;
	height: 100%;
	background: #fff;
	box-shadow: -2px 0 8px rgba(0,0,0,0.15);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 9999;
	overflow-y: auto;
	padding: 2rem;
}

.side-panel p {
	font-size: 16px;
}

.side-panel .gform_wrapper form .gform_body .gform_fields .gfield.gf-title-break > h5 {
	font-size: 24px;
}

.side-panel .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container > * {
	border-radius: 5px;
    border-color: var(--color-dark);
}

.side-panel .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container > *::placeholder {
	font-size: 16px;
	color: var(--color-text);
}

.side-panel .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container:not(.ginput_container_consent) > input, 
.side-panel .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container > select {
	height: 50px;
}

.side-panel .gform_wrapper form .gform_footer .gform_button {
	border-radius: 25rem;
	padding: 12px 20px;
}

.side-panel.is-open {
  	transform: translateX(0);
}

.side-panel-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.4);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}

.side-panel-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

