/* nordisk-rormarkning-text-on-image-overlay-css */
/**
 * Statiskt "DIN TEXT HAR"-overlagg pa produktbilder utanfor produktsidan.
 *
 * Speglar overlagget som pluginet ES WC Text on Image ritar pa produktsidan,
 * men renderat statiskt for kort i rutnat och pa startsidan. Ramen far bildens
 * proportion och blir en container, sa att 1cqw motsvarar 1 % av den renderade
 * bildytan - da ger --nr-toi-font samma teckenstorlek som produktsidans JS
 * raknar fram (overlaggets bredd x textstorleken).
 *
 * Radernas scaleX satts av assets/js/text-on-image-overlay.js.
 */
.nr-toi-frame {
    container-type: inline-size;
    display: block;
    position: relative;
}

.nr-toi {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-family: "ArialNarrow-Bold", "Arial Narrow", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    line-height: 1;
    overflow: hidden;
    padding: 1em 0;
    pointer-events: none;
    position: absolute;
    text-align: center;
    transform: translate(-50%, -50%);
}

@supports (container-type: inline-size) {
    .nr-toi {
        font-size: calc(var(--nr-toi-font, 15) * 1cqw);
    }
}

.nr-toi span {
    display: block;
    transform-origin: center;
    white-space: nowrap;
}

/* Overlay pa Elementors egna produktkort (relaterade/populara produkter).
 *
 * Bilden ar placerad som grid-item i lanken (grid-row: 1) och far sin hojd ur
 * mallens CSS. Wrappern tar over exakt samma plats, annars krymper bilden och
 * hamnar i ovre vanstra hornet.
 *
 * Mallen saknar object-fit, sa motivet strackts fran 300 till 230 px. Contain
 * later det behalla sina proportioner - samma varde som produktkorten pa
 * ovriga sajten anvander.
 *
 * .nr-toi-art ligger i samma grid-cell som bilden, far bildfilens proportion
 * och bildens hojd. Den blir darmed exakt det brevladade motivet, vilket ar
 * vad overlaggets procentvarden mats mot. Ingen hojd upprepas harifran, sa
 * mallens brytpunkter foljer med av sig sjalva. */
.woocommerce-LoopProduct-link .nr-toi-inline,
.woocommerce-loop-product__link .nr-toi-inline {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 1;
    line-height: 0;
    margin: 0;
    place-items: center;
    width: 100%;
}

.nr-toi-inline > img {
    grid-area: 1 / 1;
}

.nr-toi-art {
    grid-area: 1 / 1;
    height: 100%;
    max-width: 100%;
}

.elementor-element-368fbb3b ul.products li.product img,
.elementor-element-248ff50 ul.products li.product img {
    object-fit: contain;
}

/* nordisk-rormarkning-card-image-frame-css */
/*
 * Normalising frame for card images. See inc/woocommerce/card-image-frame.php.
 *
 * Real height rather than a transform: the layout width then matches the visual
 * size, so the browser picks a big enough srcset candidate. Overflow is clipped
 * by the box, which only removes empty margin because subjects are centred.
 */
.nr-card-frame {
	aspect-ratio: var(--nr-card-img-ar, 1);
	container-type: inline-size;
	display: block;
	flex: 0 0 auto;
	height: calc(100% * var(--nr-card-img-fit, 1));
	max-width: none;
	position: relative;
}

/* Box the renderer puts the frame in. It must have a definite height of its
   own - the frame's height is relative to it. */
.nr-card-frame-box {
	align-items: center;
	display: flex;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

/* nr-es-wc-text-on-image-selector-all-products-css */
.es-wc-text-on-image-text {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-family: "ArialNarrow-Bold", "Arial Narrow", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    overflow: hidden;
    padding: 1em 0;
    position: absolute;
    text-align: center;
    transform: translate(-50%, -50%);
}

.es-wc-text-on-image-text span {
    display: block;
    transform-origin: center;
    white-space: nowrap;
}

.es_wc_text_on_image_other_products_wrap {
    --es-preview-accent: var(--e-global-color-primary, #0866bd);
    --es-preview-ink: #171717;
    --es-preview-line: #b8bdc3;
    background: #f1f1f1;
    display: grid;
    gap: 12px 20px;
    grid-template-columns: 120px minmax(0, 1fr);
    margin: 0 0 20px;
    padding: 16px 18px;
}

.es_wc_text_on_image_other_products_label {
    align-self: start;
    color: var(--es-preview-ink);
    font-size: 16px;
    line-height: 48px;
}

.es_wc_text_on_image_colour_selector {
    min-width: 0;
    position: relative;
    z-index: 20;
}

.es_wc_text_on_image_colour_current {
    align-items: center;
    background: #fff;
    border: 1px solid #737980;
    box-sizing: border-box;
    color: var(--es-preview-ink);
    cursor: pointer;
    display: flex;
    gap: 10px;
    min-height: 48px;
    overflow: hidden;
    padding: 4px 44px 4px 8px;
    position: relative;
}

.es_wc_text_on_image_colour_current::-webkit-details-marker {
    display: none;
}

.es_wc_text_on_image_colour_current::marker {
    content: "";
}

.es_wc_text_on_image_colour_current::after {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
    height: 8px;
    position: absolute;
    right: 17px;
    top: 17px;
    transform: rotate(45deg);
    transition: transform 160ms ease-out;
    width: 8px;
}

.es_wc_text_on_image_colour_current:hover {
    border-color: var(--es-preview-accent);
}

.es_wc_text_on_image_colour_current:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--es-preview-accent) 35%, transparent);
    outline-offset: 2px;
}

.es_wc_text_on_image_colour_selector[open] .es_wc_text_on_image_colour_current {
    border-color: var(--es-preview-accent);
}

.es_wc_text_on_image_colour_selector[open] .es_wc_text_on_image_colour_current::after {
    top: 21px;
    transform: rotate(225deg);
}

.es_wc_text_on_image_other_products {
    background: #fff;
    border: 1px solid var(--es-preview-line);
    box-shadow: 0 4px 8px rgba(13, 27, 48, 0.16);
    box-sizing: border-box;
    left: 0;
    max-height: 360px;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
}

.es_wc_text_on_image_other_product {
    align-items: center;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #d6dade;
    box-sizing: border-box;
    color: var(--es-preview-ink);
    display: flex;
    gap: 10px;
    min-height: 48px;
    padding: 4px 40px 4px 8px;
    position: relative;
    text-decoration: none;
    transition: border-color 160ms ease-out, background-color 160ms ease-out;
}

.es_wc_text_on_image_other_product:hover {
    background: #f8fbff;
    color: var(--es-preview-ink);
}

.es_wc_text_on_image_other_product:last-child {
    border-bottom: 0;
}

.es_wc_text_on_image_other_product:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--es-preview-accent) 35%, transparent);
    outline-offset: 2px;
}

.es_wc_text_on_image_other_product.active {
    background: #eef6ff;
    color: var(--es-preview-ink);
}

.es_wc_text_on_image_other_product.active::after {
    align-items: center;
    background: var(--es-preview-accent);
    border-radius: 50%;
    color: #fff;
    content: "✓";
    display: flex;
    font-size: 12px;
    font-weight: 700;
    height: 20px;
    justify-content: center;
    position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
}

.es_wc_text_on_image_other_product_image {
    align-items: center;
    display: flex;
    flex: 0 0 62px;
    height: 38px;
    justify-content: center;
}

.es_wc_text_on_image_other_product_image img {
    height: 38px;
    object-fit: contain;
    width: 62px;
}

.es_wc_text_on_image_colour_current .es_wc_text_on_image_other_product_image {
    flex-basis: 58px;
    height: 32px;
    overflow: hidden;
}

.es_wc_text_on_image_colour_current .es_wc_text_on_image_other_product_image img {
    display: block !important;
    height: 32px !important;
    margin: 0 !important;
    max-height: 32px !important;
    max-width: 58px !important;
    object-fit: contain;
    width: 58px !important;
}

.es_wc_text_on_image_other_product_name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
}

.es_wc_text_on_image_input_wrapper {
    background: #f1f1f1;
    margin-bottom: 16px;
    padding: 16px 18px;
}

.es_wc_text_on_image_description {
    color: #3f4449;
    line-height: 1.55;
    margin-bottom: 8px;
}

.es_wc_text_on_image_textarea {
    box-sizing: border-box;
    margin: 8px 0 16px;
    min-height: 84px;
    resize: vertical;
    width: 100%;
}

.es_wc_text_on_image_special_character_label {
    display: block;
    margin-bottom: 8px;
}

.es_wc_text_on_image_special_characters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.es_wc_text_on_image_special_character_button {
    align-items: center;
    background: #fff;
    border: 1px solid #737980;
    border-radius: 3px;
    color: #171717;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    height: 44px;
    justify-content: center;
    min-width: 44px;
    padding: 6px 10px;
}

.single-product .es_wc_text_on_image_input_wrapper .es_wc_text_on_image_special_character_button {
    background: #fff !important;
    border: 1px solid #aeb4ba !important;
    border-radius: 3px !important;
    box-shadow: none !important;
    color: #27313a !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    height: 36px !important;
    line-height: 1 !important;
    min-height: 36px !important;
    min-width: 36px !important;
    padding: 4px 8px !important;
}

.es_wc_text_on_image_special_character_button:hover,
.es_wc_text_on_image_special_character_button:focus-visible {
    border-color: var(--e-global-color-primary, #0866bd);
    color: var(--e-global-color-primary, #0866bd);
}

.single-product .es_wc_text_on_image_input_wrapper .es_wc_text_on_image_special_character_button:hover,
.single-product .es_wc_text_on_image_input_wrapper .es_wc_text_on_image_special_character_button:focus-visible {
    background: #f3f7fb !important;
    border-color: var(--e-global-color-primary, #0866bd) !important;
    color: var(--e-global-color-primary, #0866bd) !important;
}

.es_wc_text_on_image_price_before_cart {
    margin: 20px 0 10px;
}

.es_wc_text_on_image_price_before_cart:empty {
    margin: 0;
}

@media (max-width: 600px) {
    .es_wc_text_on_image_other_products_wrap {
        grid-template-columns: 1fr;
    }

    .es_wc_text_on_image_other_products_label {
        line-height: 1.4;
    }
}

@media (prefers-reduced-motion: reduce) {
    .es_wc_text_on_image_other_product {
        transition: none;
    }
}

/* nrps-search-css */
.nrps-live-form {
	position: relative;
	overflow: visible !important;
}

/* The theme's expandable header search clips content below the input. */
.nr-header-search-popover.is-open {
	overflow: visible !important;
}

.nrps-results[hidden] {
	display: none !important;
}

.nrps-results {
	position: absolute;
	z-index: 99999;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	min-width: min(100%, 320px);
	max-height: min(68vh, 620px);
	overflow-y: auto;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 4px;
	box-shadow: 0 14px 34px rgba(19, 38, 63, .16);
	color: #1a1a1a;
	font-family: Inter, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	text-align: left;
	-webkit-overflow-scrolling: touch;
}

.nrps-result,
.nrps-category-result,
.nrps-show-all {
	display: flex;
	width: 100%;
	box-sizing: border-box;
	color: #1a1a1a;
	text-decoration: none;
}

.nrps-result {
	align-items: center;
	gap: 14px;
	min-height: 92px;
	padding: 10px 14px;
	border-bottom: 1px solid #eee;
}

.nrps-result:hover,
.nrps-result[aria-selected="true"],
.nrps-category-result:hover,
.nrps-category-result[aria-selected="true"],
.nrps-show-all:hover,
.nrps-show-all[aria-selected="true"] {
	background: #f5f5f5;
	color: #0061ae;
}

.nrps-result:focus-visible,
.nrps-category-result:focus-visible,
.nrps-show-all:focus-visible {
	outline: 2px solid #1565c0;
	outline-offset: -2px;
}

.nrps-result__image {
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
	object-fit: contain;
	background: #fff;
	border-radius: 4px;
}

.nrps-result__copy {
	display: flex;
	min-width: 0;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
}

.nrps-result__kicker,
.nrps-results__heading {
	color: #0061ae;
	font-family: Oswald, Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .025em;
	line-height: 1.35;
	text-transform: uppercase;
}

.nrps-result__title {
	margin-top: 2px;
	color: #252a32;
	font-family: Oswald, Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
}

.nrps-result__price {
	margin-top: 5px;
	color: #252a32;
	font-size: 13px;
	font-weight: 600;
}

.nrps-results__heading {
	padding: 12px 14px 6px;
}

.nrps-category-result {
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 14px;
}

.nrps-category-result__count {
	color: #6b7280;
	font-size: 12px;
}

.nrps-show-all {
	justify-content: center;
	padding: 13px 14px;
	border-top: 1px solid #eee;
	color: #0061ae;
	font-weight: 700;
}

.nrps-message {
	padding: 18px 16px;
	color: #6b7280;
	text-align: center;
}

.nrps-message--loading::before {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: 8px;
	border: 2px solid #cdcdcd;
	border-top-color: #0061ae;
	border-radius: 50%;
	content: "";
	vertical-align: -2px;
	animation: nrps-spin .7s linear infinite;
}

@keyframes nrps-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
	.nrps-results {
		left: 0;
		right: 0;
		max-height: min(70vh, 520px);
	}

	.nrps-result {
		min-height: 82px;
		padding: 8px 11px;
	}

	.nrps-result__image {
		flex-basis: 62px;
		width: 62px;
		height: 62px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nrps-message--loading::before { animation: none; }
}

/* nordisk-rormarkning-cart-drawer-css */
:root {
	--nr-cart-blue: #0061ae;
	--nr-cart-ink: #0d1b30;
	--nr-cart-muted: #5b6678;
	--nr-cart-line: rgba(13, 27, 48, 0.12);
	--nr-cart-soft: #f5f8fc;
	--nr-cart-shadow: 0 18px 42px rgba(13, 27, 48, 0.22);
}

body.nr-cart-drawer-open {
	overflow: hidden;
}

.elementor-element-ec7ad89,
.e-ec7ad89-35a3d6b,
[data-id="ec7ad89"] {
	cursor: pointer;
}

.nr-cart-drawer {
	inset: 0;
	pointer-events: none;
	position: fixed;
	z-index: 99999;
}

.nr-cart-drawer.is-open {
	pointer-events: auto;
}

.nr-cart-drawer__overlay {
	background: rgba(13, 27, 48, 0.24);
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity 200ms ease;
}

.nr-cart-drawer.is-open .nr-cart-drawer__overlay {
	opacity: 1;
}

.nr-cart-drawer__panel {
	display: flex;
	height: 100%;
	inset-inline-end: 0;
	max-width: min(100vw, 370px);
	position: absolute;
	top: 0;
	transform: translateX(100%);
	transition: transform 220ms ease;
	width: min(100vw, 370px);
}

.nr-cart-drawer.is-open .nr-cart-drawer__panel {
	transform: translateX(0);
}

.nr-cart-drawer__panel-inner {
	background: #fff;
	box-shadow: var(--nr-cart-shadow);
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 100%;
	padding: 22px 18px 16px;
}

.nr-cart-drawer__close {
	align-self: flex-start;
	appearance: none;
	background: transparent;
	border: 0;
	cursor: pointer;
	height: 34px;
	margin: 0 0 18px;
	padding: 0;
	position: relative;
	width: 34px;
}

.nr-cart-drawer__close span,
.nr-cart-drawer__close span::before {
	background: var(--nr-cart-ink);
	border-radius: 999px;
	content: "";
	height: 2px;
	inset: 16px 5px auto;
	position: absolute;
	transform: rotate(45deg);
}

.nr-cart-drawer__close span::before {
	inset: 0;
	transform: rotate(-90deg);
}

.nr-cart-drawer__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
}

.nr-cart-drawer__items {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 14px;
	min-height: 0;
	overflow-y: auto;
	padding-inline-end: 2px;
}

.nr-cart-drawer__item {
	border-bottom: 1px solid var(--nr-cart-line);
	display: grid;
	gap: 12px;
	grid-template-columns: 58px minmax(0, 1fr);
	padding: 0 0 14px;
}

.nr-cart-drawer__item-media img {
	border: 1px solid rgba(13, 27, 48, 0.08);
	display: block;
	height: 58px;
	object-fit: cover;
	width: 58px;
}

.nr-cart-drawer__item-main {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.nr-cart-drawer__item-head {
	display: grid;
	gap: 4px 12px;
	grid-template-columns: minmax(0, 1fr) auto auto;
}

.nr-cart-drawer__item-title,
.nr-cart-drawer__item-title a,
.nr-cart-drawer__recommendation-name,
.nr-cart-drawer__recommendation-name a {
	color: var(--nr-cart-ink);
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	text-decoration: none;
}

.nr-cart-drawer__item-price,
.nr-cart-drawer__total-value,
.nr-cart-drawer__recommendation-price {
	color: var(--nr-cart-blue);
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
}

.nr-cart-drawer__item-price .amount,
.nr-cart-drawer__total-value .amount,
.nr-cart-drawer__recommendation-price .amount {
	color: inherit;
}

.nr-cart-drawer__remove {
	align-self: start;
	appearance: none;
	background: #3b4048;
	border: 0;
	border-radius: 3px;
	cursor: pointer;
	height: 24px;
	padding: 0;
	position: relative;
	width: 24px;
}

.nr-cart-drawer__remove span,
.nr-cart-drawer__remove span::before {
	background: #fff;
	content: "";
	height: 2px;
	inset: 11px 5px auto;
	position: absolute;
	transform: rotate(45deg);
}

.nr-cart-drawer__remove span::before {
	inset: 0;
	transform: rotate(-90deg);
}

.nr-cart-drawer__qty {
	align-items: center;
	display: inline-flex;
	gap: 2px;
	justify-content: flex-end;
	margin-inline-start: auto;
}

.nr-cart-drawer__qty-button,
.nr-cart-drawer__recommendation-button {
	appearance: none;
	background: var(--nr-cart-blue) !important;
	border: 0;
	color: #fff;
	cursor: pointer;
	font-family: Inter, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	padding: 0;
	transition: background-color 200ms ease;
}

.nr-cart-drawer__qty-button:hover,
.nr-cart-drawer__qty-button:focus,
.nr-cart-drawer__recommendation-button:hover,
.nr-cart-drawer__recommendation-button:focus {
	background: #234C79 !important;
}

.nr-cart-drawer__qty-button {
	height: 24px;
	width: 24px;
}

.nr-cart-drawer__qty-input {
	-moz-appearance: textfield;
	appearance: textfield;
	border: 1px solid rgba(13, 27, 48, 0.18);
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-weight: 500;
	height: 24px;
	padding: 0;
	text-align: center;
	width: 38px;
}

.nr-cart-drawer__qty-input::-webkit-outer-spin-button,
.nr-cart-drawer__qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.nr-cart-drawer__recommendation {
	border-top: 1px solid var(--nr-cart-line);
	margin-top: 14px;
	padding-top: 16px;
}

.nr-cart-drawer__recommendation-title,
.nr-cart-drawer__total-label {
	color: var(--nr-cart-ink);
	font-family: Oswald, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 12px;
}

.nr-cart-drawer__recommendation-card {
	align-items: start;
	display: grid;
	gap: 10px;
	grid-template-columns: 56px minmax(0, 1fr);
}

.nr-cart-drawer__recommendation-media img {
	border: 1px solid rgba(13, 27, 48, 0.08);
	display: block;
	height: 56px;
	object-fit: cover;
	width: 56px;
}

.nr-cart-drawer__recommendation-copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.nr-cart-drawer__recommendation-text {
	color: var(--nr-cart-muted);
	font-family: Inter, sans-serif;
	font-size: 12px;
	line-height: 1.35;
	margin: 0;
}

.nr-cart-drawer__recommendation-button {
	align-self: flex-start;
	font-size: 12px;
	height: 28px;
	margin-top: 4px;
	padding: 0 12px;
}

.nr-cart-drawer__footer {
	border-top: 1px solid var(--nr-cart-line);
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 16px;
	padding-top: 14px;
}

.nr-cart-drawer__total {
	align-items: baseline;
	display: flex;
	gap: 8px;
	justify-content: space-between;
}

.nr-cart-drawer__checkout,
.nr-cart-drawer__empty-link {
	align-items: center;
	align-self: flex-start;
	background: #1565c0 !important;
	border: 0;
	border-radius: 5px;
	color: #ffffff !important;
	display: inline-flex;
	font-family: Inter, sans-serif;
	font-size: 18px;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	min-height: 0;
	padding: 15px 25px;
	fill: #fff;
	text-decoration: none;
	transition: background-color 200ms ease, color 200ms ease;
}

.nr-cart-drawer__checkout:hover,
.nr-cart-drawer__checkout:focus,
.nr-cart-drawer__empty-link:hover,
.nr-cart-drawer__empty-link:focus {
	background: #234C79 !important;
	color: #ffffff !important;
}

.nr-cart-drawer__empty {
	align-items: flex-start;
	background: var(--nr-cart-soft);
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 18px 16px;
}

.nr-cart-drawer__empty-title {
	color: var(--nr-cart-ink);
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
}

/* Brand-polish overrides restored after header/cart trigger refactor. */
.nr-cart-drawer__item-main {
	align-items: start;
	column-gap: 14px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) max-content auto;
	row-gap: 12px;
}

.nr-cart-drawer__item-head {
	display: contents;
}

.nr-cart-drawer__item-title,
.nr-cart-drawer__item-title a {
	color: #2c2f35;
	display: block;
	font-size: 18px;
	line-height: 1.28;
}

.nr-cart-drawer__item-title {
	grid-column: 1;
}

.nr-cart-drawer__item-price,
.nr-cart-drawer__item-price .amount,
.nr-cart-drawer__item-price .woocommerce-Price-currencySymbol {
	align-self: center;
	color: var(--nr-cart-blue);
	font-size: 18px;
	justify-self: end;
	margin: 0;
	white-space: nowrap;
}

.nr-cart-drawer__qty {
	gap: 4px;
	grid-column: 2 / 4;
	justify-self: end;
	margin-inline-start: 0;
}

.nr-cart-drawer__total-label {
	color: #2c2f35;
	font-size: 20px;
	letter-spacing: 0.02em;
	margin: 0;
}

.nr-cart-drawer__total-value,
.nr-cart-drawer__total-value .amount,
.nr-cart-drawer__total-value .woocommerce-Price-currencySymbol {
	color: var(--nr-cart-blue);
	font-size: 20px;
}

.nr-cart-drawer__recommendation-name,
.nr-cart-drawer__recommendation-name a {
	color: #2c2f35;
	font-size: 16px;
}

.nr-cart-drawer__recommendation-price,
.nr-cart-drawer__recommendation-price .amount,
.nr-cart-drawer__recommendation-price .woocommerce-Price-currencySymbol {
	color: var(--nr-cart-blue);
	font-size: 16px;
}

.nr-cart-drawer__recommendation-text {
	color: #2c2f35;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.45;
}

.nr-cart-drawer__close,
.nr-cart-drawer__remove {
	background: transparent;
	border: 0;
	box-shadow: none;
}

.nr-cart-drawer__close {
	align-items: center;
	display: inline-flex;
	justify-content: center;
}

.nr-cart-drawer__close:hover,
.nr-cart-drawer__close:focus,
.nr-cart-drawer__remove:hover,
.nr-cart-drawer__remove:focus {
	background: rgba(0, 97, 174, 0.08);
}

.nr-cart-drawer__close span,
.nr-cart-drawer__close span::before {
	background: var(--nr-cart-blue);
}

.nr-cart-drawer__close span {
	inset: auto;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 20px;
}

.nr-cart-drawer__close span::before {
	inset: 0;
	width: 20px;
}

.nr-cart-drawer__remove {
	align-self: center;
	grid-column: 3;
	justify-self: end;
}

.nr-cart-drawer__remove span {
	background: center / contain no-repeat
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230061AE' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4h8v2'/%3E%3Cpath d='M19 6l-1 14H6L5 6'/%3E%3Cpath d='M10 11v5'/%3E%3Cpath d='M14 11v5'/%3E%3C/svg%3E");
	height: 16px;
	inset: auto;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 14px;
}

.nr-cart-drawer__remove span::before {
	content: none;
}

.nr-cart-drawer__qty-button {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	min-width: 34px;
	width: 34px;
	height: 28px;
}

.nr-cart-drawer__qty-input {
	color: #2c2f35;
	font-weight: 600;
	height: 28px;
	width: 56px;
}

.nr-cart-drawer__checkout,
.nr-cart-drawer__empty-link,
.nr-cart-drawer__recommendation-button {
	font-family: Inter, sans-serif;
}

.nr-cart-drawer.is-busy .nr-cart-drawer__panel-inner {
	cursor: progress;
}

.single_add_to_cart_button.nr-add-to-cart-is-loading,
.add_to_cart_button.nr-add-to-cart-is-loading,
.ajax_add_to_cart.nr-add-to-cart-is-loading {
	align-items: center;
	cursor: progress !important;
	display: inline-flex !important;
	justify-content: center;
	min-width: var(--nr-add-to-cart-loading-width, auto);
	pointer-events: none;
}

.nr-add-to-cart-spinner {
	animation: nr-add-to-cart-spin 700ms linear infinite;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	border-top-color: #ffffff;
	box-sizing: border-box;
	display: block;
	height: 20px;
	width: 20px;
}

@keyframes nr-add-to-cart-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.nr-add-to-cart-spinner {
		animation-duration: 1400ms;
	}
}

@media (max-width: 767px) {
	.nr-cart-drawer__panel {
		max-width: 100vw;
		width: 100vw;
	}

	.nr-cart-drawer__panel-inner {
		padding: 18px 24px calc(22px + env(safe-area-inset-bottom, 0px));
	}

	.nr-cart-drawer__panel-inner .nr-cart-drawer__close {
		block-size: 44px !important;
		height: 44px;
		inline-size: 44px !important;
		margin: 0 0 12px -4px;
		min-width: 44px !important;
		width: 44px;
	}

	.nr-cart-drawer__items {
		gap: 16px;
		padding-inline-end: 0;
	}

	.nr-cart-drawer__item {
		gap: 14px;
		grid-template-columns: 56px minmax(0, 1fr);
		padding-bottom: 16px;
	}

	.nr-cart-drawer__item-media img {
		height: 56px;
		width: 56px;
	}

	.nr-cart-drawer__item-main {
		align-items: start;
		column-gap: 8px;
		grid-template-columns: minmax(0, 1fr) 40px;
		grid-template-areas:
			"title remove"
			"price remove"
			"qty qty";
		row-gap: 8px;
	}

	.nr-cart-drawer__item-title,
	.nr-cart-drawer__item-title a {
		font-size: 15px;
		line-height: 1.2;
	}

	.nr-cart-drawer__item-title {
		grid-area: title;
	}

	.nr-cart-drawer__item-price,
	.nr-cart-drawer__item-price .amount,
	.nr-cart-drawer__item-price .woocommerce-Price-currencySymbol {
		font-size: 17px;
		grid-area: price;
		justify-self: start;
		line-height: 1.1;
	}

	.nr-cart-drawer__item-main .nr-cart-drawer__remove {
		align-self: start;
		block-size: 40px !important;
		height: 40px;
		inline-size: 40px !important;
		grid-area: remove;
		justify-self: end;
		min-width: 40px !important;
		margin-top: -2px;
		width: 40px;
	}

	.nr-cart-drawer__qty {
		display: grid;
		gap: 8px;
		grid-area: qty;
		grid-template-columns: 44px minmax(0, 1fr) 44px;
		justify-self: stretch;
		margin-top: 2px;
		width: 100%;
	}

	.nr-cart-drawer__qty .nr-cart-drawer__qty-button {
		block-size: 44px !important;
		display: inline-flex !important;
		height: 44px;
		inline-size: 44px !important;
		min-width: 44px;
		width: 44px;
	}

	.nr-cart-drawer__qty .nr-cart-drawer__qty-input {
		block-size: 44px !important;
		font-size: 18px;
		height: 44px;
		min-width: 0;
		width: auto;
	}

	.nr-cart-drawer__recommendation-card {
		gap: 12px;
		grid-template-columns: 52px minmax(0, 1fr);
	}

	.nr-cart-drawer__recommendation-media img {
		height: 52px;
		width: 52px;
	}

	.nr-cart-drawer__footer {
		gap: 14px;
		margin-top: 14px;
		padding-top: 16px;
	}

	.nr-cart-drawer__total-label {
		font-size: 18px;
	}

	.nr-cart-drawer__total-value,
	.nr-cart-drawer__total-value .amount,
	.nr-cart-drawer__total-value .woocommerce-Price-currencySymbol {
		font-size: 18px;
	}

	.nr-cart-drawer__checkout,
	.nr-cart-drawer__empty-link {
		align-self: stretch;
		justify-content: center;
		min-height: 52px;
		padding: 16px 20px;
		width: 100%;
	}
}

.elementor-element-37110c4 .elementor-menu-cart__container { display: none !important; }
.elementor-element-37110c4 .elementor-menu-cart__toggle_button { cursor: pointer; }

/* =====================================================================
   Radlayout omgjord: titeln svalt pa bredd.

   Priset lag pa samma rad som titeln, med white-space: nowrap och
   max-content-bredd. Panelen ar 370px; minus padding och produktbild
   blir huvudkolumnen 264px - sa ett stort belopp ("210 000,00 kr")
   lamnade ~80px till produktnamnet, och svenska sammansattningar
   avstavades till olasbarhet ("Ror-markn-ings-skylt").

   Losning: priset flyttas till egen rad tillsammans med antalsvaljaren.
   Titeln far hela bredden minus soptunnan.
   ===================================================================== */

/* Avstavningen tvingas fram av Elementor-mallen post 24 med
   "hyphens: auto !important" och "word-break: break-word !important".
   Den maste slas med hogre specificitet an "body #id .class", darav
   html-prefixet. hyphens: manual lamnar mjuka bindestreck i produktnamn
   intakta men slutar leta egna brytpunkter mitt i ord; break-word later
   ett omojligt langt ord brytas i stallet for att spilla ut. */
html body #nr-cart-drawer-root .nr-cart-drawer__item-title,
html body #nr-cart-drawer-root .nr-cart-drawer__item-title a {
	hyphens: manual !important;
	overflow-wrap: break-word !important;
	word-break: normal !important;
}

/* Storlek och vikt kommer ocksa fran post 24 och lamnas dar - titeln far
   plats i 18px sa fort kolumnen ar bred nog. */
.nr-cart-drawer__item-title,
.nr-cart-drawer__item-title a {
	line-height: 1.35;
}

/* Avstand pa skala: 4 / 8 / 16. */
.nr-cart-drawer__items {
	gap: 16px;
}

.nr-cart-drawer__item {
	gap: 16px;
	grid-template-columns: 56px minmax(0, 1fr);
	padding-bottom: 16px;
}

.nr-cart-drawer__item-media img {
	height: 56px;
	width: 56px;
}

/* Priset bar sin vikt med fetstil och farg i stallet for storlek, sa att
   det aldrig konkurrerar om titelns bredd igen. */
.nr-cart-drawer__item-price,
.nr-cart-drawer__item-price .amount,
.nr-cart-drawer__item-price .woocommerce-Price-currencySymbol {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

@media (min-width: 768px) {
	.nr-cart-drawer__item-main {
		align-items: center;
		column-gap: 8px;
		display: grid;
		grid-template-areas:
			"title remove"
			"meta  meta";
		grid-template-columns: minmax(0, 1fr) 32px;
		row-gap: 8px;
	}

	.nr-cart-drawer__item-title {
		align-self: center;
		grid-area: title;
	}

	/* Soptunnan mot titelns forsta rad, inte mot mitten av en flerradig titel. */
	.nr-cart-drawer__item-main .nr-cart-drawer__remove {
		align-self: start;
		grid-area: remove;
		height: 32px;
		justify-self: end;
		min-width: 32px;
		width: 32px;
	}

	.nr-cart-drawer__item-price,
	.nr-cart-drawer__item-price .amount,
	.nr-cart-drawer__item-price .woocommerce-Price-currencySymbol {
		align-self: center;
		grid-area: meta;
		justify-self: end;
	}

	.nr-cart-drawer__qty {
		display: inline-flex;
		gap: 4px;
		grid-area: meta;
		justify-self: start;
		margin: 0;
		width: auto;
	}

	.nr-cart-drawer__qty .nr-cart-drawer__qty-button {
		block-size: 32px !important;
		height: 32px;
		inline-size: 32px !important;
		min-width: 32px !important;
		width: 32px;
	}

	/* 52px racker till fyra siffror i 16px halvfet utan att klippa. */
	.nr-cart-drawer__qty .nr-cart-drawer__qty-input {
		block-size: 32px !important;
		font-size: 16px;
		height: 32px;
		min-width: 0;
		padding: 0 4px;
		width: 52px;
	}
}

@media (max-width: 767px) {
	/* Full bredd pa panelen: priset far egen rad under titeln och
	   antalsvaljaren behaller 44px trycklador. */
	.nr-cart-drawer__item-main {
		column-gap: 8px;
		grid-template-areas:
			"title remove"
			"price remove"
			"qty   qty";
		grid-template-columns: minmax(0, 1fr) 40px;
		row-gap: 8px;
	}

	.nr-cart-drawer__item-price,
	.nr-cart-drawer__item-price .amount,
	.nr-cart-drawer__item-price .woocommerce-Price-currencySymbol {
		font-size: 16px;
		justify-self: start;
	}

	.nr-cart-drawer__qty {
		gap: 8px;
		margin-top: 0;
	}
}


/* Delsumma och frakt ovanfor totalen, plus momsetikett pa totalen.
 * Ladan ar for de flesta enda platsen dar summan visas innan kassan. */
.nr-cart-drawer__lines {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.nr-cart-drawer__line {
	align-items: baseline;
	display: flex;
	font-family: Inter, sans-serif;
	font-size: 13px;
	gap: 8px;
	justify-content: space-between;
	line-height: 1.3;
}

.nr-cart-drawer__line-label {
	color: var(--nr-cart-ink);
	opacity: 0.75;
}

.nr-cart-drawer__line-value,
.nr-cart-drawer__line-value .amount {
	color: var(--nr-cart-ink);
	font-weight: 600;
}

.nr-cart-drawer__line-note {
	font-weight: 400;
	opacity: 0.75;
}

.nr-cart-drawer__total-value .nr-cart-drawer__tax-label {
	color: var(--nr-cart-ink);
	display: block;
	font-family: Inter, sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.2;
	opacity: 0.7;
	text-align: right;
}

/* nordisk-rormarkning-responsive-fixes-css */
/* Scoped fixes for Elementor layouts that were wider than the viewport. */
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

html {
	scroll-behavior: auto !important;
}

.elementor-location-header,
.elementor-location-header .e-con,
.elementor-location-header .elementor-element {
	max-width: 100%;
}

.ail-marquee-container,
.elementor-24 .elementor-element.elementor-element-4f3917d {
	max-width: 100%;
	overflow: hidden;
	contain: paint;
}

.elementor .e-6ef414b {
	box-sizing: border-box !important;
	width: min(1280px, calc(100% - 48px)) !important;
	max-width: 100% !important;
	margin-inline: auto !important;
}

.elementor-33 .elementor-element.elementor-element-c673c75 p,
.elementor-33 .elementor-element.elementor-element-93241e1 p,
.elementor-33 .elementor-element.elementor-element-3f7bcdd p {
	color: #fff;
}

.elementor .g-5e7bfce .g-8696c8d.e-paragraph-base {
	color: #fff;
}

.elementor-33 .elementor-element.elementor-element-da68e0a,
.elementor-33 .elementor-element.elementor-element-96f86e5,
.elementor-33 .elementor-element.elementor-element-ab12164,
.elementor-33 .elementor-element.elementor-element-5dd4c92 {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	background-image: none !important;
	background-color: #0d1b30;
}

.elementor-33 .elementor-element.elementor-element-da68e0a::before,
.elementor-33 .elementor-element.elementor-element-96f86e5::before,
.elementor-33 .elementor-element.elementor-element-ab12164::before,
.elementor-33 .elementor-element.elementor-element-5dd4c92::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(0, 97, 174, 0.28) 0%, rgba(7, 46, 76, 0.95) 78%);
}

.elementor-33 .nr-category-card-image {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	margin: 0 !important;
}

.elementor-33 .nr-category-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.elementor-33 .elementor-element.elementor-element-da68e0a > .elementor-widget:not(.nr-category-card-image),
.elementor-33 .elementor-element.elementor-element-96f86e5 > .elementor-widget:not(.nr-category-card-image),
.elementor-33 .elementor-element.elementor-element-ab12164 > .elementor-widget:not(.nr-category-card-image),
.elementor-33 .elementor-element.elementor-element-5dd4c92 > .elementor-widget:not(.nr-category-card-image) {
	position: relative;
	z-index: 2;
}

.price .nr-tax-label,
.woocommerce-Price-amount + .nr-tax-label {
	display: block;
	margin-top: 2px;
	color: #0061ae;
	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
	text-transform: none;
}

.single-product div.product form.variations_form .woocommerce-variation-price .price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	margin: 0;
	padding: 0;
	border: 0;
	color: #252a32;
	font-family: Oswald, sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.01em;
}

.single-product div.product form.variations_form .woocommerce-variation-price .price .amount,
.single-product div.product form.variations_form .woocommerce-variation-price .price .woocommerce-Price-amount,
.single-product div.product form.variations_form .woocommerce-variation-price .price .woocommerce-Price-currencySymbol {
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.single-product .woocommerce-variation-price .woocommerce-Price-amount.amount,
.single-product .woocommerce-variation-price .woocommerce-Price-amount.amount bdi,
.single-product .woocommerce-variation-price .woocommerce-Price-amount.amount .woocommerce-Price-currencySymbol {
	color: #0067bc !important;
	font-family: Oswald, sans-serif !important;
	font-size: 34px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	letter-spacing: -0.01em !important;
}

.single-product div.product form.variations_form .woocommerce-variation-price .price .nr-tax-label {
	margin-top: 0;
	color: #0061ae;
	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
}

.single-product div.product form.variations_form .woocommerce-variation-price {
	margin: 0 0 20px;
}

.single-product .nr-lagkrav-montering {
	max-width: 820px;
	color: #1a1a1a;
	font-family: Inter, sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

.single-product .nr-lagkrav-montering p {
	margin: 0 0 18px;
}

.single-product .nr-product-support-guides {
	margin-top: 24px;
	padding: 24px;
	border: 1px solid #dad7d7;
	border-radius: 8px;
	background: #f7fbfd;
}

.single-product .nr-product-support-guides h3 {
	margin: 0 0 14px;
	color: #0d1b30;
	font-family: Oswald, sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.single-product .nr-product-support-guides ul {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.single-product .nr-product-support-guides li {
	margin: 0;
}

.single-product .nr-product-support-guides a {
	color: #0061ae;
	font-family: Inter, sans-serif;
	font-weight: 700;
	text-decoration: none;
}

.single-product .nr-product-support-guides a:hover,
.single-product .nr-product-support-guides a:focus-visible {
	color: #234c79;
	text-decoration: underline;
}

.single-product .nr-product-support-guides span {
	display: block;
	margin-top: 3px;
	color: #4d5a66;
	font-size: 14px;
	line-height: 1.5;
}

.single-product .product_meta .tagged_as {
	display: none !important;
}

.nr-category-faq {
	padding: clamp(56px, 5vw, 82px) 20px clamp(70px, 6vw, 96px);
	background: #f3f3f3;
}

.nr-category-faq__inner {
	width: min(100%, 980px);
	margin: 0 auto;
}

.nr-category-faq__eyebrow {
	margin: 0 0 10px;
	color: #0061ae;
	font-family: Inter, sans-serif;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nr-category-faq h2 {
	margin: 0 0 28px;
	color: #252a32;
	font-family: Oswald, sans-serif;
	font-size: clamp(38px, 4vw, 54px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
}

.nr-category-faq__items {
	display: grid;
	gap: 12px;
}

.nr-category-faq__item {
	border: 1px solid #dad7d7;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.nr-category-faq__item summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	padding: 20px 22px;
	color: #0d1b30;
	font-family: Inter, sans-serif;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.35;
	cursor: pointer;
}

.nr-category-faq__item summary::after {
	content: "+";
	flex: 0 0 auto;
	color: #0061ae;
	font-family: Oswald, sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
}

.nr-category-faq__item[open] summary::after {
	content: "-";
}

.nr-category-faq__item summary::-webkit-details-marker {
	display: none;
}

.nr-category-faq__item div {
	padding: 0 22px 22px;
}

.nr-category-faq__item p {
	margin: 0;
	color: #4d5a66;
	font-family: Inter, sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

.single-product div.product form.variations_form .woocommerce-variation-price .price del {
	opacity: 0.55;
	font-size: 22px;
	line-height: 1;
}

.single-product div.product form.variations_form .woocommerce-variation-price .price ins {
	text-decoration: none;
}

body.search.post-type-archive-product .elementor-3301 .elementor-element.elementor-element-22a5ad6 {
	display: none;
}

body.search.post-type-archive-product .elementor-3301 .elementor-element.elementor-element-dbc0c45 {
	padding-top: clamp(40px, 4vw, 56px);
	padding-bottom: clamp(24px, 2.6vw, 32px);
}

body.search.post-type-archive-product .elementor-3301 .elementor-element.elementor-element-ec85078 {
	padding-top: 0 !important;
	padding-bottom: clamp(56px, 5.6vw, 86px) !important;
}

.kategori-produkter-wrapper-be8ffe31 .product-toolbar-be8ffe31 {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	gap: 15px !important;
	flex-wrap: wrap !important;
	margin-bottom: 20px;
	padding: 10px 15px !important;
	border: 1px solid #eeeeee !important;
	border-radius: 4px !important;
	background: #f9f9f9 !important;
}

.kategori-produkter-wrapper-be8ffe31 .nr-butik-search-wrap {
	display: flex !important;
	align-items: stretch !important;
	width: 100% !important;
	max-width: 380px !important;
	flex: 1 1 280px !important;
	order: 1;
}

.kategori-produkter-wrapper-be8ffe31 .product-search-form-be8ffe31,
.kategori-produkter-wrapper-be8ffe31 .nr-butik-search-inner {
	display: flex !important;
	align-items: stretch !important;
	width: 100% !important;
	height: auto !important;
	min-height: 48px !important;
	border: 1px solid #cfd7e3 !important;
	border-radius: 8px !important;
	background: #ffffff !important;
	box-shadow: none !important;
	overflow: hidden !important;
	position: relative !important;
}

.kategori-produkter-wrapper-be8ffe31 .product-search-form-be8ffe31:focus-within,
.kategori-produkter-wrapper-be8ffe31 .nr-butik-search-inner:focus-within {
	border-color: #0067bc !important;
}

.kategori-produkter-wrapper-be8ffe31 .product-search-input-be8ffe31 {
	flex: 1 1 auto !important;
	width: 100% !important;
	min-width: 0 !important;
	height: auto !important;
	min-height: 48px !important;
	padding: 0 16px !important;
	border: 0 !important;
	border-radius: 8px 0 0 8px !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #233444 !important;
	font-family: Inter, sans-serif !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	outline: none !important;
}

.kategori-produkter-wrapper-be8ffe31 .product-search-input-be8ffe31::placeholder {
	color: #9aa6b2 !important;
	opacity: 1 !important;
}

.kategori-produkter-wrapper-be8ffe31 .product-search-btn-be8ffe31,
.kategori-produkter-wrapper-be8ffe31 .nr-butik-search-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex: 0 0 auto !important;
	gap: 10px !important;
	width: auto !important;
	min-width: 96px !important;
	min-height: 48px !important;
	padding: 0 14px !important;
	border: 0 !important;
	border-left: 1px solid rgba(255, 255, 255, 0.18) !important;
	border-radius: 0 8px 8px 0 !important;
	background: #0067bc !important;
	box-shadow: none !important;
	color: #ffffff !important;
	font-family: Inter, sans-serif !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	cursor: pointer !important;
	white-space: nowrap;
}

.kategori-produkter-wrapper-be8ffe31 .product-search-btn-be8ffe31::after,
.kategori-produkter-wrapper-be8ffe31 .nr-butik-search-btn::after {
	content: "Sök";
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}

.kategori-produkter-wrapper-be8ffe31 .product-search-btn-be8ffe31:hover,
.kategori-produkter-wrapper-be8ffe31 .product-search-btn-be8ffe31:focus-visible,
.kategori-produkter-wrapper-be8ffe31 .nr-butik-search-btn:hover,
.kategori-produkter-wrapper-be8ffe31 .nr-butik-search-btn:focus-visible {
	background: #234C79 !important;
	color: #ffffff !important;
}

.kategori-produkter-wrapper-be8ffe31 .nr-butik-search-btn svg {
	width: 15px !important;
	height: 15px !important;
	flex: 0 0 auto !important;
}

.kategori-produkter-wrapper-be8ffe31 .kp-result-count-wrap-4b7a2c91 {
	display: flex;
	justify-content: center;
	flex: 1 1 160px;
	order: 2;
}

.kategori-produkter-wrapper-be8ffe31 .product-sort-form-be8ffe31 {
	width: 100%;
	flex: 0 1 310px;
	max-width: 310px;
	order: 3;
}

.kategori-produkter-wrapper-be8ffe31 .product-sort-select-be8ffe31 {
	width: 100% !important;
	min-width: 0 !important;
	min-height: 48px !important;
	padding: 0 16px !important;
	border: 1px solid #bcbcbc !important;
	border-radius: 5px !important;
	background-color: #ffffff !important;
	color: #222222 !important;
	font-family: Inter, sans-serif !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	outline: none !important;
}

.kategori-produkter-wrapper-be8ffe31 .product-grid-be8ffe31 {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
	gap: 20px !important;
}

.kategori-produkter-wrapper-be8ffe31 .nr-product-card-4b7a2c91 {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	min-height: 0;
	padding: 15px !important;
	border: 1px solid #eeeeee !important;
	border-radius: 4px !important;
	background: #ffffff !important;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important;
	box-sizing: border-box;
	color: inherit;
	overflow: visible !important;
	transition: all 0.2s ease;
	word-break: break-word;
}

.kategori-produkter-wrapper-be8ffe31 .nr-product-card-4b7a2c91:hover {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

.kategori-produkter-wrapper-be8ffe31 .nr-product-image-link-4b7a2c91 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: auto !important;
	min-height: 0 !important;
	margin-bottom: 15px !important;
	padding: 0 !important;
	border-radius: 4px;
	background: transparent !important;
	color: inherit !important;
	overflow: hidden;
	text-decoration: none !important;
}

.kategori-produkter-wrapper-be8ffe31 .nr-product-image-link-4b7a2c91 img {
	display: block !important;
	width: auto !important;
	height: auto !important;
	max-width: 100% !important;
	max-height: none !important;
	margin: 0 !important;
	padding: 0 !important;
	filter: none !important;
	object-fit: contain !important;
	transform: none !important;
}

.kategori-produkter-wrapper-be8ffe31 .nr-product-card-body-4b7a2c91 {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0 !important;
}

.kategori-produkter-wrapper-be8ffe31 .nr-product-title-4b7a2c91 {
	display: block;
	width: 100%;
	margin: auto 0 0 !important;
	padding: 0 !important;
	color: #0067bc !important;
	font-family: Inter, sans-serif !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
	letter-spacing: 0 !important;
	text-align: center !important;
	text-decoration: none !important;
	text-transform: none !important;
	text-wrap: auto;
}

.kategori-produkter-wrapper-be8ffe31 .nr-product-kicker-4b7a2c91,
.kategori-produkter-wrapper-be8ffe31 .nr-product-description,
.kategori-produkter-wrapper-be8ffe31 .nr-product-card-footer-4b7a2c91 {
	display: none !important;
}

.kategori-produkter-wrapper-be8ffe31 .product-toolbar-be8ffe31 {
	margin-bottom: 20px;
}

.kategori-produkter-wrapper-be8ffe31 .kp-result-count-4b7a2c91 {
	margin: 0;
	color: #4b5563;
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-weight: 400;
}

.kategori-produkter-wrapper-be8ffe31 .nr-no-products-4b7a2c91 {
	margin: 0;
	color: #1a1a1a;
	font-family: Inter, sans-serif;
	font-size: 16px;
}

@media (min-width: 768px) {
	.kategori-produkter-wrapper-be8ffe31 {
		display: grid !important;
		grid-template-columns: 250px minmax(0, 1fr) !important;
		align-items: flex-start !important;
		gap: 30px !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .cat-nav-be8ffe31 {
		display: block !important;
		grid-column: 1 !important;
		width: 250px !important;
		min-width: 250px !important;
		position: sticky !important;
		top: calc(124px + var(--wp-admin--admin-bar--height, 0px)) !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .cat-nav-toggle-be8ffe31 {
		display: none !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .cat-nav-content-be8ffe31 {
		display: block !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .product-main-be8ffe31 {
		grid-column: 2 !important;
		min-width: 0 !important;
		width: 100% !important;
	}
}

@media (max-width: 1024px) {
	.kategori-produkter-wrapper-be8ffe31 .product-toolbar-be8ffe31 {
		align-items: stretch !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .product-sort-form-be8ffe31 {
		max-width: none;
	}

	.kategori-produkter-wrapper-be8ffe31 .product-grid-be8ffe31 {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
	}
}

@media (max-width: 767px) {
	.kategori-produkter-wrapper-be8ffe31 {
		gap: 14px !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .cat-nav-be8ffe31 {
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .cat-nav-toggle-be8ffe31 {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		width: 100% !important;
		min-height: 48px !important;
		padding: 0 12px !important;
		border: 0 !important;
		border-radius: 5px !important;
		background: #0067bc !important;
		color: #ffffff !important;
		font-family: Inter, sans-serif !important;
		font-size: 16px !important;
		font-weight: 700 !important;
		line-height: 1.2 !important;
		box-shadow: none !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .cat-nav-toggle-be8ffe31 i {
		color: currentColor !important;
		font-size: 14px !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .cat-nav-content-be8ffe31 {
		margin-top: 6px !important;
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .cat-nav-content-be8ffe31 > .accordion-content {
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .cat-nav-content-be8ffe31 .accordion-header,
	.kategori-produkter-wrapper-be8ffe31 .cat-nav-content-be8ffe31 .accordion-link {
		border: 0 !important;
		box-shadow: none !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .nr-butik-search-wrap {
		flex: 0 0 auto !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .nr-butik-search-inner,
	.kategori-produkter-wrapper-be8ffe31 .product-search-form-be8ffe31 {
		align-items: stretch !important;
		flex-direction: row !important;
		height: 52px !important;
		min-height: 52px !important;
		max-height: 52px !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .product-search-input-be8ffe31 {
		flex: 1 1 0 !important;
		width: 0 !important;
		height: 52px !important;
		min-height: 52px !important;
		max-height: 52px !important;
		padding: 0 16px !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .product-search-btn-be8ffe31,
	.kategori-produkter-wrapper-be8ffe31 .nr-butik-search-btn {
		flex: 0 0 auto !important;
		width: auto !important;
		min-width: 96px !important;
		height: 52px !important;
		min-height: 52px !important;
		max-height: 52px !important;
		padding: 0 16px !important;
	}

	body.search.post-type-archive-product .elementor-3301 .elementor-element.elementor-element-dbc0c45 {
		padding-top: 32px;
		padding-bottom: 20px;
	}

	.kategori-produkter-wrapper-be8ffe31 .product-toolbar-be8ffe31 {
		display: flex !important;
		align-items: stretch !important;
		flex-direction: column;
		justify-content: flex-start !important;
		gap: 10px !important;
		min-height: 0 !important;
		margin-bottom: 14px !important;
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .nr-butik-search-wrap,
	.kategori-produkter-wrapper-be8ffe31 .product-search-form-be8ffe31,
	.kategori-produkter-wrapper-be8ffe31 .product-sort-form-be8ffe31 {
		max-width: none !important;
		width: 100% !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .kp-result-count-wrap-4b7a2c91 {
		justify-content: flex-start;
		flex: 0 0 auto;
		order: 2;
	}

	.kategori-produkter-wrapper-be8ffe31 .kp-result-count-4b7a2c91 {
		font-size: 15px;
		line-height: 1.25;
	}

	.kategori-produkter-wrapper-be8ffe31 .product-sort-form-be8ffe31 {
		flex: 0 0 auto !important;
		order: 3;
	}

	.kategori-produkter-wrapper-be8ffe31 .product-sort-select-be8ffe31 {
		min-height: 48px !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .product-grid-be8ffe31 {
		gap: 14px !important;
	}

		.kategori-produkter-wrapper-be8ffe31 .nr-product-image-link-4b7a2c91 {
		height: auto !important;
		padding: 0 !important;
	}

		.kategori-produkter-wrapper-be8ffe31 .nr-product-title-4b7a2c91 {
		font-size: 16px;
	}
}

.woocommerce-page:not(.woocommerce-account) .woocommerce-notices-wrapper {
	width: min(1280px, calc(100vw - 48px)) !important;
	max-width: calc(100vw - 48px) !important;
	margin: clamp(20px, 2.2vw, 28px) auto !important;
}

.woocommerce-notices-wrapper + .elementor.elementor-3185 .elementor-element.elementor-element-7d588d18 {
	--padding-top: 24px;
}

.woocommerce-page .woocommerce-message {
	display: flow-root;
	padding: 16px 18px 16px 52px;
	border: 1px solid #dbe3ec;
	border-top: 3px solid #7aa51d;
	border-radius: 8px;
	background: #ffffff;
	color: #233444;
	font-family: Inter, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	position: relative;
}

.woocommerce-page .woocommerce-message::before {
	top: 18px;
	left: 18px;
	width: 18px;
	height: 18px;
	margin: 0;
	border-radius: 999px;
	background: #7aa51d;
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
	position: absolute;
}

.woocommerce-page .woocommerce-message .button.wc-forward {
	margin: -4px 0 -4px 16px;
	padding: 10px 16px;
	border: 0;
	border-radius: 5px;
	background: #0067bc;
	color: #ffffff;
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}

.woocommerce-page .woocommerce-message .button.wc-forward:hover,
.woocommerce-page .woocommerce-message .button.wc-forward:focus {
	background: #00539a;
	color: #ffffff;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) {
	--nr-ink: #252a32;
	--nr-blue: #0061ae;
	--nr-blue-dark: #00539a;
	--nr-muted: #1a1a1a;
	--nr-line: #2d3748;
	--nr-surface: #ffffff;
}

.single-product .nr-related-products > section > h2 {
	display: none !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .woocommerce,
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .woocommerce.columns-4 {
	width: 100%;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 40px 20px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) ul.products::before,
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) ul.products::after,
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) ul.products li.product::after {
	display: none !important;
	content: none !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) ul.products li.product {
	display: block !important;
	width: auto !important;
	min-width: 0;
	float: none !important;
	clear: none !important;
	margin: 0 !important;
	overflow: hidden;
	border-radius: 5px;
	background: var(--nr-surface);
	box-shadow: 0 3px 7px rgba(17, 24, 39, 0.3);
	transform: none !important;
	transition: none !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .woocommerce-loop-product__link {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-rows: auto auto auto 1fr 1px auto;
	min-height: 100%;
	color: inherit;
	text-decoration: none !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .woocommerce-loop-product__link img {
	grid-column: 1 / -1;
	grid-row: 1;
	width: 100% !important;
	height: clamp(214px, 17vw, 230px) !important;
	max-width: 100% !important;
	margin: 0 !important;
	object-fit: contain !important;
	object-position: center center !important;
	display: block;
	background: transparent;
	filter: none;
	transform: none !important;
	transition: none !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .woocommerce-loop-product__title {
	grid-column: 1 / -1;
	grid-row: 4;
	margin: 0 !important;
	color: var(--nr-ink) !important;
	font-family: Oswald, sans-serif !important;
	font-size: clamp(22px, 1.65vw, 26px) !important;
	font-weight: 800 !important;
	line-height: 1.25 !important;
	letter-spacing: -0.018em !important;
	text-transform: uppercase;
	text-align: left !important;
	text-wrap: balance;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .woocommerce-loop-product__title::before {
	content: none !important;
	display: none !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .nr-product-category-label {
	grid-column: 1 / -1;
	grid-row: 3;
	margin: 0 !important;
	padding: 18px 22px 2px !important;
	color: var(--nr-blue);
	font-family: Oswald, sans-serif;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .nr-product-description {
	grid-column: 1 / -1;
	grid-row: 5;
	margin: 0 !important;
	padding: 0 22px 20px !important;
	color: var(--nr-muted) !important;
	font-family: Inter, sans-serif !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	line-height: 1.28 !important;
	letter-spacing: 0.01em;
	text-align: left !important;
	text-wrap: pretty;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .nr-product-description > :first-child {
	margin-top: 0;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .nr-product-description > :last-child {
	margin-bottom: 0;
}

.elementor-33 .elementor-element.elementor-element-1dccf5a .woocommerce-loop-product__link {
	grid-template-rows: auto auto auto 1fr 1px auto !important;
}

.elementor-33 .elementor-element.elementor-element-1dccf5a .nr-product-category-label {
	grid-column: 1 / -1 !important;
	grid-row: 2 !important;
	display: block !important;
	margin: 0 !important;
	padding: 14px 22px 4px !important;
	line-height: 1.05 !important;
}

.elementor-33 .elementor-element.elementor-element-1dccf5a .woocommerce-loop-product__title {
	grid-column: 1 / -1 !important;
	grid-row: 3 !important;
	margin: 0 !important;
	padding: 2px 22px 9px !important;
}

.elementor-33 .elementor-element.elementor-element-1dccf5a .nr-product-description {
	grid-column: 1 / -1 !important;
	grid-row: 4 !important;
}

.single-product :where(.nr-related-products, .elementor-nr-popular-inline-products) .nr-product-description,
.single-product :where(.nr-related-products, .elementor-nr-popular-inline-products) .angie-loop-short-desc-6e9acfe9,
.single-product :where(.nr-related-products, .elementor-nr-popular-inline-products) .product-short-description-46f2c76d {
	display: none !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .woocommerce-loop-product__link::before {
	content: "";
	grid-column: 1 / -1;
	grid-row: 5;
	display: block;
	height: 1px;
	margin: 0 22px;
	background: var(--nr-line);
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .price {
	grid-column: 1;
	grid-row: 6;
	align-self: center;
	display: block !important;
	margin: 0 !important;
	padding: 12px 0 16px 22px !important;
	border: 0 !important;
	color: var(--nr-ink) !important;
	font-family: Oswald, sans-serif !important;
	font-size: 0 !important;
	font-weight: 800 !important;
	line-height: 1.05 !important;
	letter-spacing: -0.01em !important;
	text-align: left !important;
	white-space: nowrap;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .price .woocommerce-Price-amount {
	font-size: 16px !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .price .nr-price-prefix {
	margin-right: 4px;
	display: inline;
	font-size: 16px !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .price .woocommerce-Price-amount + .woocommerce-Price-amount {
	display: none !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .price .amount,
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .price .nr-price-line {
	color: var(--nr-ink) !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .price::before,
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .price::after {
	content: none !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .price .nr-tax-label {
	display: block;
	margin-top: 1px;
	color: var(--nr-blue);
	font-family: Inter, sans-serif !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	letter-spacing: -0.01em !important;
	text-transform: none !important;
}

/* Konfiguratornotisen ersätter priset och är för lång för nowrap-kolumnen:
   utan detta flyter texten in under "Se produkt"-knappen i kolumn 2. */
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .price .nrm-konfig-price-note {
	display: block;
	max-width: 100%;
	white-space: normal;
	overflow-wrap: anywhere;
	font-size: 12px !important;
	line-height: 1.25 !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .woocommerce-loop-product__link::after {
	content: "Se produkt";
	grid-column: 2;
	grid-row: 6;
	align-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 96px;
	min-height: 34px;
	margin: 10px 18px 14px 12px;
	padding: 0 14px;
	border-radius: 5px;
	background: var(--nr-blue);
	color: #fff;
	font-family: Inter, sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	letter-spacing: 0.01em !important;
	text-transform: none !important;
	box-shadow: none;
	transition: background-color 150ms ease;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) ul.products li.product:hover,
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) ul.products li.product:focus-within {
	box-shadow: 0 3px 7px rgba(17, 24, 39, 0.3) !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) ul.products li.product:hover .woocommerce-loop-product__link::after,
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) ul.products li.product:focus-within .woocommerce-loop-product__link::after {
	background: var(--nr-blue-dark);
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .woocommerce-loop-product__buttons,
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .woocommerce-loop-product__buttons .button,
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) ul.products li.product a.add_to_cart_button,
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) ul.products li.product a.product_type_simple,
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) ul.products li.product a.product_type_variable,
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .star-rating,
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .onsale {
	display: none !important;
}

/* Keep curated product-card content in fixed rows across Elementor contexts. */
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .woocommerce-loop-product__link {
	grid-template-rows: auto auto auto minmax(0, 1fr) 1px auto !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .woocommerce-loop-product__link img {
	grid-row: 1 !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .nr-product-category-label {
	grid-row: 2 !important;
	display: block !important;
	margin: 0 !important;
	padding: 14px 22px 4px !important;
	line-height: 1.05 !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .woocommerce-loop-product__title {
	grid-row: 3 !important;
	margin: 0 !important;
	padding: 2px 22px 9px !important;
}

.single-product .elementor .elementor-element .nr-related-products ul.products li.product .woocommerce-loop-product__title,
.single-product .elementor .elementor-element .elementor-nr-popular-inline-products ul.products li.product .woocommerce-loop-product__title,
.single-product .elementor .elementor-widget-woocommerce-product-related.elementor-wc-products ul.products li.product .woocommerce-loop-product__title {
	padding: 2px 22px 9px !important;
}

.elementor-33 .elementor-element.elementor-element-07ecdd1 .elementor-element-1dccf5a ul.products li.product .woocommerce-loop-product__title {
	padding: 2px 22px 9px !important;
}


:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .nr-product-description,
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .angie-loop-short-desc-6e9acfe9,
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) div[class*="loop-short-desc"],
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) div[class*="nr-product-description"] {
	grid-row: 4 !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .woocommerce-loop-product__link::before {
	grid-row: 5 !important;
}

:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .price,
:where(
	body.home .elementor-nr-featured-products-dynamic,
	.single-product .nr-related-products,
	.single-product .elementor-nr-popular-inline-products
) .woocommerce-loop-product__link::after {
	grid-row: 6 !important;
}

@media (max-width: 1024px) {
	:where(
		body.home .elementor-nr-featured-products-dynamic,
		.single-product .nr-related-products,
		.single-product .elementor-nr-popular-inline-products
	) ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 767px) {
	.woocommerce-page .woocommerce-notices-wrapper {
		width: calc(100% - 24px) !important;
		margin: 16px auto 20px !important;
	}

	.woocommerce-notices-wrapper + .elementor.elementor-3185 .elementor-element.elementor-element-7d588d18 {
		--padding-top: 18px;
	}

	.woocommerce-page .woocommerce-message {
		padding: 14px 14px 14px 46px;
	}

	.woocommerce-page .woocommerce-message .button.wc-forward {
		float: none;
		display: inline-flex;
		width: 100%;
		margin: 12px 0 0;
		justify-content: center;
		text-align: center;
	}

	.woocommerce-page .woocommerce-message::before {
		top: 16px;
		left: 14px;
	}

	:where(
		body.home .elementor-nr-featured-products-dynamic,
		.single-product .nr-related-products,
		.single-product .elementor-nr-popular-inline-products
	) ul.products {
		grid-template-columns: 1fr !important;
		gap: 22px !important;
	}

	:where(
		body.home .elementor-nr-featured-products-dynamic,
		.single-product .nr-related-products,
		.single-product .elementor-nr-popular-inline-products
	) .woocommerce-loop-product__link img {
		height: 216px !important;
	}

	:where(
		body.home .elementor-nr-featured-products-dynamic,
		.single-product .nr-related-products,
		.single-product .elementor-nr-popular-inline-products
	) .price {
		padding-left: 22px !important;
	}

	:where(
		body.home .elementor-nr-featured-products-dynamic,
		.single-product .nr-related-products,
		.single-product .elementor-nr-popular-inline-products
	) .woocommerce-loop-product__link::after {
		min-width: 122px;
		min-height: 40px;
		margin-right: 22px;
	}
}

/* Align secondary search fields with the approved homepage search styling. */
.product-search-form-be8ffe31,
.elementor-2989 .docs-search-shell {
	display: flex;
	align-items: stretch;
	gap: 0;
	width: 100%;
}

.product-search-form-be8ffe31 {
	position: static;
	max-width: 380px;
	gap: 0;
	border: 1px solid #cfd7e3;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: none;
	background: #ffffff;
}

.product-search-input-be8ffe31,
.elementor-2989 .docs-search-shell input {
	width: 100%;
	min-width: 0;
	min-height: 60px;
	padding: 0 24px;
	border: 0;
	font-family: Inter, sans-serif;
	font-size: 16px;
	color: #233444;
	outline: none;
}

.elementor-2989 .docs-search-shell {
	border: 1px solid #cfd7e3;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: none;
	background: #ffffff;
}

.product-search-input-be8ffe31 {
	border-radius: 8px 0 0 8px;
	box-shadow: none;
	min-height: 48px;
	padding: 0 16px;
	font-size: 15px;
	background: transparent;
}

.elementor-2989 .docs-search-shell input {
	border-radius: 5px 0 0 5px;
	box-shadow: none;
	background: transparent;
	font-family: Inter, sans-serif;
	font-weight: 400;
}

.product-search-input-be8ffe31::placeholder,
.elementor-2989 .docs-search-shell input::placeholder {
	color: #9aa6b2;
	opacity: 1;
}

.product-search-input-be8ffe31:focus {
	box-shadow: none;
}

.elementor-2989 .docs-search-shell input:focus {
	box-shadow: none;
}

.product-search-btn-be8ffe31,
.elementor-2989 .docs-search-shell button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 118px;
	min-height: 60px;
	padding: 0 22px;
	border: 0;
	background: #0067bc;
	color: #ffffff;
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
}

.elementor-2989 .docs-search-shell button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 0 5px 5px 0;
	box-shadow: none;
	font-family: Inter, sans-serif;
}

.elementor-2989 .docs-search-shell button::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background-color: currentColor;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='black' d='M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='black' d='M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.product-search-btn-be8ffe31 {
	position: relative;
	top: auto;
	right: auto;
	transform: none;
	gap: 10px;
	min-width: 96px;
	min-height: 48px;
	padding: 0 14px;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 0 8px 8px 0;
	box-shadow: none;
	white-space: nowrap;
}

.product-search-form-be8ffe31 > .kp-loading-indicator-be8ffe31 {
	position: absolute;
	top: 50%;
	right: 12px;
	display: none;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
	transform: translateY(-50%);
	background: transparent;
	color: #233444;
	pointer-events: none;
	z-index: 2;
}

.product-search-btn-be8ffe31 .kp-loading-indicator-be8ffe31 {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: currentColor;
	pointer-events: none;
}

.product-search-btn-be8ffe31 .kp-loading-indicator-be8ffe31 .eicon-loading {
	font-size: 18px;
}

.product-search-btn-be8ffe31.is-loading > .eicon-search,
.product-search-btn-be8ffe31.is-loading::after {
	opacity: 0;
}

.product-search-btn-be8ffe31.is-loading .kp-loading-indicator-be8ffe31 {
	display: flex !important;
	color: #ffffff;
}

.product-search-btn-be8ffe31::after {
	content: "Sök";
	font-family: Inter, sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
}

.product-search-btn-be8ffe31:hover,
.elementor-2989 .docs-search-shell button:hover {
	background: #234C79;
}

@media (max-width: 767px) {
	.elementor-2989 .docs-search-shell {
		flex-direction: column;
	}

	.product-search-form-be8ffe31 {
		flex-direction: row;
		max-width: 100%;
		height: 52px;
		min-height: 52px;
		max-height: 52px;
	}

	.product-search-input-be8ffe31 {
		flex: 1 1 0;
		width: 0;
		height: 52px;
		min-height: 52px;
		max-height: 52px;
	}

	.elementor-2989 .docs-search-shell button {
		width: 100%;
	}

	.product-search-btn-be8ffe31 {
		width: auto;
		min-width: 96px;
		height: 52px;
		min-height: 52px;
		max-height: 52px;
	}
}

@media (max-width: 1024px) {
	.elementor-24 .elementor-element.elementor-element-7972b32 .e-n-menu-wrapper {
		max-width: 100vw;
		overflow-x: hidden;
		contain: paint;
		z-index: 2147483646;
	}

	body:has(.elementor-24 .elementor-element.elementor-element-7972b32 .e-n-menu-toggle[aria-expanded="true"])::before {
		content: none !important;
		display: none !important;
	}

	.elementor .e-401ee94 {
		height: auto !important;
		min-height: min(860px, calc(100svh - 0px)) !important;
		overflow: hidden !important;
	}

	.elementor .e-6ef414b {
		box-sizing: border-box !important;
		width: 100% !important;
		max-width: 100% !important;
		padding: 44px 24px 54px !important;
		flex-direction: column !important;
		align-items: stretch !important;
		justify-content: center !important;
		gap: 28px !important;
	}

	.elementor .e-5173d01-8bbd65a,
	.elementor .e-2aec2fe-0efc493 {
		width: 100% !important;
		max-width: 100% !important;
	}

	.elementor .e-29b40ac-0f3899e {
		max-width: 100% !important;
		font-size: clamp(48px, 8vw, 64px) !important;
		line-height: 1.02 !important;
		text-wrap: balance;
	}
}

@media (max-width: 767px) {
	.elementor .e-401ee94 {
		min-height: 792px !important;
		background-position: 58% center !important;
	}

	.elementor .e-6ef414b {
		padding: 34px 20px 46px !important;
		gap: 22px !important;
	}

	.elementor .e-29b40ac-0f3899e {
		font-size: clamp(36px, 10vw, 42px) !important;
		line-height: 0.98 !important;
	}
}

/* Force Inter wherever older Elementor/global styles try to use another font. */
body,
button,
input,
select,
textarea,
.elementor-kit-8,
.elementor-widget-button .elementor-button,
.elementor-button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	font-family: Inter, sans-serif !important;
}


/* =========================================================
   Centraliserade globala produkt- och formulärregler
   Flyttat från Anpassa > Extra CSS 2026-08-05
   ========================================================= */
h2 {
	font-family: 'Oswald';
}

/* Extra Product Options - matcha sidans typografi */
.tc-epo-label.tm-epo-element-label {
  font-size: 18px !important;
  font-weight: 600 !important;
}
.tc-price.price {
  font-size: 20px !important;
  color: #252a32 !important;
  font-weight: 700 !important;
}

/* Tillaggskostnad-pris: matcha totalprisets farg och font, mindre storlek */
.price.amount.fees {
  color: #252a32 !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

/* Dölj "10 års garanti på märkning" enbart på Ventilationsetiketter / Special (post 10336) */
body.postid-10336 .elementor-element-3cdcb6e1 .elementor-icon-list-item:first-child {
  display: none !important;
}

/* Produktgrid: visa bara det lagsta priset, inte hela intervallet */
.nr-product-price-4b7a2c91 .woocommerce-Price-amount.amount ~ .woocommerce-Price-amount.amount {
  display: none !important;
}

/* Dolj "10 ars garanti pa markning" for alla produkter i kategorin Rormarkningsdekaler */
.product_cat-rormarkningsdekaler-2 .elementor-element-3cdcb6e1 .elementor-icon-list-item:first-child {
  display: none !important;
}

/* Dolj "10 ars garanti pa markning" for alla produkter i kategorin Rormarkningsdekaler */
.product_cat-ziro .elementor-element-3cdcb6e1 .elementor-icon-list-item:first-child {
  display: none !important;
}

/* Gemensam design för Extra Product Options - dropdowns och textfält */
.tc-container.cpf-element:is(.cpf-type-select, .cpf-type-textfield, .cpf-type-variations) > .tc-element-inner-wrap > .tc-row,
body.postid-11527 .tc-container.cpf-element.cpf-type-radio > .tc-element-inner-wrap > .tc-row {
  display: grid !important;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 16px !important;
  margin: 0 0 14px !important;
  padding: 15px !important;
  background: rgba(128, 128, 128, 0.07);
}
.tc-container.cpf-element:is(.cpf-type-select, .cpf-type-textfield, .cpf-type-variations) > .tc-element-inner-wrap > .tc-row > .tc-epo-label,
.tc-container.cpf-element:is(.cpf-type-select, .cpf-type-textfield, .cpf-type-variations) > .tc-element-inner-wrap > .tc-row > .tc-element-container,
body.postid-11527 .tc-container.cpf-element.cpf-type-radio > .tc-element-inner-wrap > .tc-row > .tc-epo-label,
body.postid-11527 .tc-container.cpf-element.cpf-type-radio > .tc-element-inner-wrap > .tc-row > .tc-element-container {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.tc-container.cpf-element:is(.cpf-type-select, .cpf-type-textfield, .cpf-type-variations) .tc-epo-label.tm-epo-element-label,
body.postid-11527 .tc-container.cpf-element.cpf-type-radio .tc-epo-label.tm-epo-element-label {
  color: #1a1a1a !important;
  font-family: Inter, sans-serif !important;
  font-size: 14.4px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}
.tc-container.cpf-element:is(.cpf-type-select, .cpf-type-textfield, .cpf-type-variations) :is(.tmcp-field-wrap, .tmcp-field-wrap-inner, .tc-field-label-wrap, .tm-epo-field-label) {
  width: 100% !important;
  max-width: none !important;
}
.tc-container.cpf-element:is(.cpf-type-select, .cpf-type-textfield, .cpf-type-variations) :is(.tmcp-select, .tmcp-textfield) {
  box-sizing: border-box;
  width: 100% !important;
  min-height: 42px;
  margin: 0 !important;
  border: 1.25px solid #666 !important;
  border-radius: 3px !important;
  background: #fff !important;
  color: #000 !important;
  font-family: Inter, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.5;
}
.tc-container.cpf-element:is(.cpf-type-select, .cpf-type-variations) .tmcp-select {
  padding: 8px 48px 8px 16px !important;
}
.tc-container.cpf-element.cpf-type-textfield .tmcp-textfield {
  padding: 8px 16px !important;
}
.tc-container.cpf-element:is(.cpf-type-select, .cpf-type-textfield, .cpf-type-variations) :is(.tmcp-select, .tmcp-textfield):focus {
  border-color: #0067bc !important;
  outline: 2px solid rgba(0, 103, 188, 0.2);
  outline-offset: 1px;
}
@media (max-width: 767px) {
  .tc-container.cpf-element:is(.cpf-type-select, .cpf-type-textfield, .cpf-type-variations) > .tc-element-inner-wrap > .tc-row,
  body.postid-11527 .tc-container.cpf-element.cpf-type-radio > .tc-element-inner-wrap > .tc-row {
    grid-template-columns: 1fr;
    gap: 8px !important;
  }
}


/* SJUKHUS MÄRKN. SPECIAL TEXT - produktfält */
.nr-hospital-special-fields { display: grid; gap: 14px; margin: 0 0 16px; }
            .nr-hospital-special-field { display: grid; grid-template-columns: 120px minmax(0, 1fr); align-items: center; gap: 16px; margin: 0; padding: 15px; background: rgba(128, 128, 128, 0.07); }
            .nr-hospital-special-field label { display: block; margin: 0; color: #1a1a1a; font-family: Inter, sans-serif; font-size: 14.4px; font-weight: 700; line-height: 1.35; }
            .nr-hospital-special-field input, .nr-hospital-special-field select { box-sizing: border-box; width: 100%; min-height: 42px; margin: 0; padding: 8px 16px; border: 1.25px solid #666; border-radius: 3px; background: #fff; color: #000; font-family: Inter, sans-serif; font-size: 16px; font-weight: 400; line-height: 1.5; }
            .nr-hospital-special-field input:focus, .nr-hospital-special-field select:focus { border-color: #0067bc; outline: 2px solid rgba(0, 103, 188, 0.2); outline-offset: 1px; }
            @media (max-width: 767px) {
                .nr-hospital-special-field { grid-template-columns: 1fr; gap: 8px; }
            }
            .nr-hospital-special-price { margin: 0 0 14px; }
            .nr-hospital-special-price .price { display: block !important; margin: 0 !important; color: #252a32 !important; font-family: Oswald, sans-serif !important; font-size: 34px !important; font-weight: 700 !important; line-height: 34px !important; }
            .nr-hospital-special-price .price .woocommerce-Price-amount,
            .nr-hospital-special-price .price .woocommerce-Price-amount bdi { color: #0067bc !important; font-family: Oswald, sans-serif !important; font-size: 34px !important; font-weight: 700 !important; line-height: 34px !important; }
            .nr-hospital-special-price .nr-tax-label { display: block; margin-top: 1px; color: #0061ae; font-family: Inter, sans-serif; font-size: 12px; font-weight: 700; line-height: 13.2px; }


/* Enhetlig produktfärgväljare */
/* nr-shared-colour-selector-layout */
form.variations_form:has(.nr-shared-colour-selector) > table.variations,
            form.variations_form:has(.nr-shared-colour-selector) > .reset_variations_alert {
                display: none !important;
            }

/* nr-variation-colour-selector-style */
tr.nr-native-colour-row {
                display: none !important;
            }
            .nr-variation-colour-selector .es_wc_text_on_image_other_product[aria-disabled="true"] {
                display: none !important;
            }

/* nr-unified-colour-dedupe-style */
form.nr-unified-colour-form tr.nr-native-colour-row,
            form.nr-unified-colour-form .ivpa-opt[data-attribute="pa_valj-farg"],
            form.nr-unified-colour-form .ivpa-opt[data-attribute="pa_vald-farg"],
            form.nr-unified-colour-form .ivpa-opt[data-attribute="pa_bandfarg"],
            form.nr-unified-colour-form .ivpa-opt[data-attribute="pa_mini-tip-fargalternativ"],
            form.nr-unified-colour-form .woocommerce-variation-description.nr-old-colour-description {
                display: none !important;
            }

/* Pricepep quantity table - migrated from Code Snippets #40 */
.rp_wcdpd_product_page {
            margin: 0 0 20px;
            font-family: inherit;
        }
        .rp_wcdpd_product_page_title {
            margin: 0 0 7px;
            font-family: inherit;
            font-weight: 700;
            font-size: 15px;
            line-height: 1.2;
            color: inherit;
        }
        .rp_wcdpd_pricing_table {
            max-width: 560px;
        }
        .rp_wcdpd_pricing_table table {
            width: 100%;
            border: 1px solid #d7dce2;
            border-radius: 5px;
            border-collapse: separate;
            border-spacing: 0;
            overflow: hidden;
            background: #ffffff;
            font-family: inherit;
            font-size: 14px;
            box-shadow: 0 1px 0 rgba(0,0,0,.02);
        }
        .rp_wcdpd_pricing_table td {
            padding: 7px 10px;
            border-right: 1px solid #d7dce2;
            border-bottom: 1px solid #d7dce2;
            font-family: inherit;
            line-height: 1.15;
            vertical-align: middle;
            transition: background-color .12s ease, color .12s ease;
        }
        .rp_wcdpd_pricing_table tr:first-child td {
            background: #f4f6f8;
            font-weight: 700;
            color: inherit;
        }
        .rp_wcdpd_pricing_table tr:last-child td {
            border-bottom: 0;
        }
        .rp_wcdpd_pricing_table td:last-child {
            border-right: 0;
        }
        .rp_wcdpd_pricing_table_quantity,
        .rp_wcdpd_pricing_table_product_price {
            display: block;
            cursor: pointer;
        }
        .rp_wcdpd_pricing_table td:hover {
            background: #eef5fc;
        }
        .rp_wcdpd_pricing_table td.nr-pricepep-active-range {
            background: #1565c0;
            color: #ffffff;
        }
        .rp_wcdpd_pricing_table td.nr-pricepep-active-range .woocommerce-Price-amount,
        .rp_wcdpd_pricing_table td.nr-pricepep-active-range .woocommerce-Price-currencySymbol {
            color: #ffffff;
        }


/* Packtejp eget tryck – uppladdning i samma fältlayout som övriga val */
body.postid-11521 .upload-css .uploader-div > .tc-element-inner-wrap > .tc-row {
  display: grid !important;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 8px 16px !important;
  margin: 0 0 14px !important;
  padding: 15px !important;
  background: rgba(128, 128, 128, 0.07);
}

body.postid-11521 .upload-css .uploader-div .tc-epo-label {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
}

body.postid-11521 .upload-css .uploader-div .tm-element-description,
body.postid-11521 .upload-css .uploader-div .tc-element-container {
  grid-column: 2;
}

body.postid-11521 .upload-css .uploader-div .tm-element-description {
  margin: 0;
}

body.postid-11521 .upload-css .uploader-div .tm-element-description p {
  margin: 0;
}

body.postid-11521 .upload-css .uploader-div .cpf-upload-container-basic,
body.postid-11521 .upload-css .uploader-div .cpf-upload-wrap {
  display: block;
  width: 100%;
}

body.postid-11521 .upload-css .uploader-div .cpf-upload-wrap {
  border: 1.25px solid #666;
  border-radius: 3px;
  background: #fff;
}

body.postid-11521 .upload-css .uploader-div .tmcp-upload {
  display: block;
  width: 100%;
  min-height: 42px;
  padding: 6px 10px;
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 16px;
}

body.postid-11521 .upload-css .uploader-div .tmcp-upload::file-selector-button {
  margin-right: 12px;
  padding: 7px 12px;
  border: 0;
  border-radius: 2px;
  background: #0067bc;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

body.postid-11521 .upload-css .uploader-div .tc-max-file-size {
  display: block;
  margin-top: 6px;
  color: #5d6269;
  font-size: 13px;
}

@media (max-width: 767px) {
  body.postid-11521 .upload-css .uploader-div > .tc-element-inner-wrap > .tc-row {
    grid-template-columns: 1fr;
  }

  body.postid-11521 .upload-css .uploader-div .tc-epo-label,
  body.postid-11521 .upload-css .uploader-div .tm-element-description,
  body.postid-11521 .upload-css .uploader-div .tc-element-container {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Packtejp – återställningslänk integrerad med variabelvalen */
body.postid-11521 #tm-extra-product-options .tc-section-fields > .tc-row > a.reset_variations {
  display: inline-flex !important;
  align-items: center;
  width: auto !important;
  min-height: 34px;
  margin: -7px 15px 14px 151px !important;
  padding: 7px 12px !important;
  border: 1px solid #0067bc;
  border-radius: 3px;
  background: #fff;
  color: #0067bc !important;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
}

body.postid-11521 #tm-extra-product-options .tc-section-fields > .tc-row > a.reset_variations:hover,
body.postid-11521 #tm-extra-product-options .tc-section-fields > .tc-row > a.reset_variations:focus {
  background: #0067bc;
  color: #fff !important;
}

@media (max-width: 767px) {
  body.postid-11521 #tm-extra-product-options .tc-section-fields > .tc-row > a.reset_variations {
    margin-left: 15px !important;
  }
}

/* EPO levererar denna etikett på engelska; visa den på svenska i produktens fältflöde. */
body.postid-11521 #tm-extra-product-options .tc-section-fields > .tc-row > a.reset_variations {
  font-size: 0 !important;
}

body.postid-11521 #tm-extra-product-options .tc-section-fields > .tc-row > a.reset_variations::after {
  content: "Återställ val";
  font-size: 14px;
}

/* Produktbilder – enhetligt något mindre utan att beskära produkten */
.kategori-produkter-wrapper-be8ffe31 .nr-product-image-link-4b7a2c91 img {
  max-width: 90% !important;
}

:where(
  body.home .elementor-nr-featured-products-dynamic,
  .single-product .nr-related-products,
  .single-product .elementor-nr-popular-inline-products
) .woocommerce-loop-product__link img {
  width: 90% !important;
  height: clamp(192px, 15vw, 207px) !important;
}

.single-product .woocommerce-product-gallery__image > a {
  display: flex;
  justify-content: center;
}

.single-product .woocommerce-product-gallery__image > a > img.wp-post-image {
  width: 90% !important;
  height: auto !important;
  margin-inline: auto !important;
}

@media (max-width: 767px) {
  :where(
    body.home .elementor-nr-featured-products-dynamic,
    .single-product .nr-related-products,
    .single-product .elementor-nr-popular-inline-products
  ) .woocommerce-loop-product__link img {
    height: 194px !important;
  }
}

/* NR: mobilanpassning av produktnatet (produktkategori, butik, produktarkiv) */
/* Elementor-mallarnas custom CSS (post-2984 / post-3301) satter align-items: flex-start
 * pa wrappern helt utan media query. Under 768px ar wrappern en kolumn-flex, sa
 * flex-start fick produktkolumnen att krympa till innehallets bredd (~224px) i stallet
 * for full bredd -- darav for smala produktkort och tom yta till hoger pa mobil.
 * Antalet kolumner styrs av mallarnas egna regler (1 kort i bredd under 768px).
 * Brytpunkten ar 767.98px for att aven tacka bradelsbredder kring 767-768px, dar
 * varken mallarnas mobil- eller desktopregler matchar. */
@media (max-width: 767.98px) {
	.kategori-produkter-wrapper-be8ffe31 {
		align-items: stretch !important;
		width: 100% !important;
	}

	.kategori-produkter-wrapper-be8ffe31 .cat-nav-be8ffe31,
	.kategori-produkter-wrapper-be8ffe31 .product-main-be8ffe31,
	.kategori-produkter-wrapper-be8ffe31 .product-grid-be8ffe31 {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		align-self: stretch !important;
	}
}

/* Klichékostnaden visas redan vid valet och ingår fortsatt i totalpriset. */
body.postid-11521 .tm-extra-product-options-totals .tm-fee-totals,
body.postid-11826 .tm-extra-product-options-totals .tm-fee-totals {
  display: none !important;
}

/* Håll pristexten intill radioknappen i klichévalen. */
body.postid-11521 .cpf-type-radio .tc-input-wrap + .tc-label .tc-price-wrap,
body.postid-11826 .cpf-type-radio .tc-input-wrap + .tc-label .tc-price-wrap {
  justify-self: start !important;
}

/* ---------------------------------------------------------------------------
   Produktfält (nr-product-fields) ska se ut som variationsraden, t.ex.
   "UV-laminat för utomhusbruk": grå rad, etikett till vänster, kontroll till
   höger. Måtten speglar table.variations th/td så raderna läses som en grupp.
   --------------------------------------------------------------------------- */
.woocommerce div.product form.cart .nrpf-product-fields {
	display: grid;
	gap: 14.4px;
	margin: 0 0 14.4px;
}

.woocommerce div.product form.cart .nrpf-product-fields .product-addon {
	display: grid;
	grid-template-columns: minmax(0, 47%) minmax(0, 1fr);
	align-items: center;
	margin: 0;
	padding: 0;
	background: rgba(128, 128, 128, 0.07);
}

.woocommerce div.product form.cart .nrpf-product-fields .product-addon > label:not(.nrpf-choice) {
	grid-column: 1;
	grid-row: 1;
	margin: 0;
	padding: 15px;
	font-size: 14.4px;
	font-weight: 700;
	line-height: 1.5;
	color: #1a1a1a;
}

.woocommerce div.product form.cart .nrpf-product-fields .product-addon > select,
.woocommerce div.product form.cart .nrpf-product-fields .product-addon > textarea,
.woocommerce div.product form.cart .nrpf-product-fields .product-addon > input {
	grid-column: 2;
	grid-row: 1;
	width: auto;
	max-width: none;
	min-height: 42px;
	margin: 15px 15px 15px 0;
	padding: 8px 48px 8px 16px;
	border: 1px solid #666;
	border-radius: 3px;
	background-color: transparent;
	background-position: calc(100% - 12px) 50%;
	background-size: 16px 16px;
	font-size: 16px;
	line-height: 1.5;
	color: #000;
}

/* Fält utan pilikon behöver inte plats för den. */
.woocommerce div.product form.cart .nrpf-product-fields .product-addon > textarea,
.woocommerce div.product form.cart .nrpf-product-fields .product-addon > input {
	padding-right: 16px;
}

.woocommerce div.product form.cart .nrpf-product-fields .product-addon > select:focus,
.woocommerce div.product form.cart .nrpf-product-fields .product-addon > textarea:focus,
.woocommerce div.product form.cart .nrpf-product-fields .product-addon > input:focus {
	outline: 2px solid rgba(0, 103, 188, 0.2);
	outline-offset: 1px;
	border-color: #0067bc;
}

/* Beskrivningstext löper över hela raden, valknappar hamnar i högerkolumnen. */
.woocommerce div.product form.cart .nrpf-product-fields .product-addon > .description {
	grid-column: 1;
	margin: 0;
	padding: 0 15px 15px;
}

.woocommerce div.product form.cart .nrpf-product-fields .product-addon > label.nrpf-choice {
	grid-column: 2;
	margin: 0 15px 0 0 !important;
}

@media (max-width: 767px) {
	/* På smala skärmar hamnar etiketten över fältet, i både variationsraden och
	   produktfälten. Annars delar de bredden och rullgardinen blir så smal att
	   alternativtexten kapas. */
	.woocommerce div.product form.cart table.variations,
	.woocommerce div.product form.cart table.variations tbody,
	.woocommerce div.product form.cart table.variations tr,
	.woocommerce div.product form.cart table.variations th.label,
	.woocommerce div.product form.cart table.variations td.value {
		display: block;
		width: 100%;
	}

	.woocommerce div.product form.cart table.variations th.label {
		padding: 15px 15px 0;
		text-align: left;
	}

	.woocommerce div.product form.cart table.variations td.value {
		padding: 8px 15px 15px;
	}

	.woocommerce div.product form.cart table.variations select {
		width: 100%;
		min-width: 0;
		margin-right: 0;
	}

	.woocommerce div.product form.cart .nrpf-product-fields .product-addon {
		grid-template-columns: minmax(0, 1fr);
	}

	.woocommerce div.product form.cart .nrpf-product-fields .product-addon > label:not(.nrpf-choice) {
		grid-column: 1;
		grid-row: auto;
		padding: 15px 15px 0;
	}

	.woocommerce div.product form.cart .nrpf-product-fields .product-addon > select,
	.woocommerce div.product form.cart .nrpf-product-fields .product-addon > textarea,
	.woocommerce div.product form.cart .nrpf-product-fields .product-addon > input {
		grid-column: 1;
		grid-row: auto;
		margin: 8px 15px 15px;
	}

	.woocommerce div.product form.cart .nrpf-product-fields .product-addon > .description {
		grid-column: 1;
		padding: 4px 15px 0;
	}

	.woocommerce div.product form.cart .nrpf-product-fields .product-addon > label.nrpf-choice {
		grid-column: 1;
		margin: 0 15px !important;
	}
}

/* Branschlistan: samma blå som remsan på varje post, så kontrastverktyg hittar bakgrunden även när listan rullat. */
.elementor-33 .elementor-element-191408b .ail-icon-item {
	background-color: var(--light-blue, #1565c0);
}

/* nordisk-rormarkning-pipe-marking-systems-css */
/* Keep the pipe marking systems section clean and readable on narrow screens. */
#rormarkningssystem {
	overflow: visible !important;
	background: transparent !important;
}

#rormarkningssystem::before,
#rormarkningssystem::after {
	content: none !important;
	display: none !important;
}

#rormarkningssystem,
#rormarkningssystem * {
	box-sizing: border-box;
}

#rormarkningssystem > .elementor-element-nrsy002,
#rormarkningssystem .elementor-element-nrsy003,
#rormarkningssystem .elementor-element-nrsy004,
#rormarkningssystem .nr-systems-panel,
#rormarkningssystem .nr-systems-body,
#rormarkningssystem .nr-systems-copy,
#rormarkningssystem .nr-systems-visuals,
#rormarkningssystem .nr-systems-spec-grid,
#rormarkningssystem .nr-systems-spec-card,
#rormarkningssystem .nr-systems-spec-list,
#rormarkningssystem .nr-systems-spec-list div,
#rormarkningssystem .nr-systems-spec-list dt,
#rormarkningssystem .nr-systems-spec-list dd {
	min-width: 0;
	max-width: 100%;
}

#rormarkningssystem .nr-systems-spec-list dt,
#rormarkningssystem .nr-systems-spec-list dd {
	overflow-wrap: anywhere;
	word-break: normal;
	hyphens: auto;
}

@media (max-width: 767px) {
	#rormarkningssystem {
		width: 100% !important;
		padding: 32px 12px 44px !important;
	}

	#rormarkningssystem > .elementor-element-nrsy002 {
		width: 100% !important;
		max-width: 100% !important;
	}

	#rormarkningssystem .elementor-element-nrsy003 {
		overflow: visible !important;
		border-radius: 4px;
	}

	#rormarkningssystem .elementor-element-nrsy004 {
		padding: 22px 18px 26px !important;
	}

	#rormarkningssystem .elementor-element-nrsy007 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	#rormarkningssystem .nr-systems-tab {
		min-width: 0;
		padding-inline: 8px !important;
	}

	#rormarkningssystem .nr-systems-body {
		gap: 22px !important;
		padding: 28px 18px 26px !important;
	}

	#rormarkningssystem .nr-systems-visual-row {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 14px !important;
		width: 100%;
	}

	#rormarkningssystem .nr-systems-label-image img {
		width: 100% !important;
		max-width: 150px !important;
		height: auto !important;
		aspect-ratio: 110 / 74;
	}

	#rormarkningssystem .nr-systems-custom-roll {
		width: min(104px, 32vw) !important;
		min-height: 104px;
	}

	#rormarkningssystem .nr-systems-spec-grid {
		gap: 20px !important;
		padding: 0 18px 32px !important;
	}

	#rormarkningssystem .nr-systems-spec-card {
		overflow: visible;
		padding: 20px 18px !important;
	}

	#rormarkningssystem .nr-systems-spec-list dl {
		gap: 10px;
	}

	#rormarkningssystem .nr-systems-spec-list div {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 2px !important;
	}

	#rormarkningssystem .nr-systems-spec-list dd {
		text-align: left !important;
	}
}

@media (max-width: 390px) {
	#rormarkningssystem {
		padding-inline: 10px !important;
	}

	#rormarkningssystem .nr-systems-body,
	#rormarkningssystem .nr-systems-spec-grid,
	#rormarkningssystem .nr-systems-spec-card {
		padding-inline: 16px !important;
	}
}

/* nordisk-rormarkning-base-typography-css */
/* Small global typography rules that should stay separate from layout fixes. */
h2 {
	font-family: 'Oswald';
}

/* nordisk-rormarkning-mobile-menu-css */
@media (min-width: 1025px) {
	.nr-mobile-menu,
	.nr-mobile-menu-overlay {
		display: none !important;
	}
}

@media (max-width: 1024px) {
	body.nr-mobile-menu-open {
		overflow: hidden;
		touch-action: none;
	}

	.elementor-24 .elementor-element.elementor-element-7972b32 .e-n-menu-wrapper {
		display: none !important;
	}

	.elementor-24 .elementor-element.elementor-element-7972b32 .e-n-menu-toggle {
		align-items: center !important;
		background: transparent !important;
		border: 0 !important;
		box-shadow: none !important;
		color: #0061ae !important;
		display: inline-flex !important;
		justify-content: center !important;
		min-height: 44px !important;
		min-width: 44px !important;
		padding: 8px !important;
		position: relative;
		z-index: 2147483647;
	}

	.nr-mobile-menu-overlay {
		background: rgba(8, 20, 38, 0.44);
		inset: 0;
		opacity: 0;
		pointer-events: none;
		position: fixed;
		transition: opacity 180ms ease;
		z-index: 2147483638;
	}

	body.nr-mobile-menu-open .nr-mobile-menu-overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.nr-mobile-menu {
		background: #ffffff;
		box-shadow: -12px 0 30px rgba(8, 20, 38, 0.18);
		color: #2c2f35;
		display: flex;
		flex-direction: column;
		font-family: Inter, sans-serif;
		height: 100svh;
		inset: 0 0 0 auto;
		max-width: 420px;
		opacity: 0;
		position: fixed;
		transform: translateX(105%);
		transition: transform 220ms ease, opacity 220ms ease;
		width: min(92vw, 420px);
		z-index: 2147483639;
	}

	body.nr-mobile-menu-open .nr-mobile-menu {
		opacity: 1;
		transform: translateX(0);
	}

	.nr-mobile-menu__inner {
		display: flex;
		flex: 1 1 auto;
		flex-direction: column;
		min-height: 0;
	}

	.nr-mobile-menu__top {
		align-items: center;
		background: #ffffff;
		border-bottom: 1px solid #e6edf4;
		display: flex;
		justify-content: space-between;
		padding: 18px 24px 16px;
	}

	.nr-mobile-menu__brand {
		align-items: center;
		display: inline-flex;
		min-width: 0;
		text-decoration: none;
	}

	.nr-mobile-menu__brand img {
		display: block;
		height: auto;
		max-height: 44px;
		max-width: 190px;
		width: auto;
	}

	.nr-mobile-menu__close {
		align-items: center;
		background: transparent !important;
		border: 0;
		border-radius: 4px;
		box-shadow: none !important;
		color: #0061ae !important;
		cursor: pointer;
		display: inline-flex;
		height: 38px;
		justify-content: center;
		padding: 0;
		width: 38px;
	}

	.nr-mobile-menu__close:focus-visible {
		background: transparent !important;
		color: #0061ae !important;
		outline: 2px solid rgba(35, 76, 121, 0.28) !important;
		outline-offset: 3px;
	}

	.nr-mobile-menu__close svg {
		height: 16px;
		width: 16px;
	}

	.nr-mobile-menu__body {
		flex: 1 1 auto;
		min-height: 0;
		overflow-y: auto;
		padding: 20px 24px 28px;
	}

	.nr-mobile-menu__actions {
		align-items: center;
		border-bottom: 1px solid #e6edf4;
		display: flex;
		gap: clamp(24px, 9vw, 38px);
		justify-content: center;
		margin-bottom: 18px;
		padding-bottom: 18px;
	}

	.nr-mobile-menu__action {
		align-items: center;
		background: transparent !important;
		border: 0 !important;
		border-radius: 4px;
		box-shadow: none;
		color: #0061ae !important;
		cursor: pointer;
		display: inline-flex;
		flex-direction: column;
		font-family: Inter, sans-serif;
		font-size: 13px;
		font-weight: 700;
		gap: 6px;
		justify-content: center;
		line-height: 1.1;
		min-height: 54px;
		min-width: 64px;
		padding: 4px 0;
		text-align: center;
		text-decoration: none;
	}

	.nr-mobile-menu__action svg {
		display: block;
		fill: currentColor;
		height: 25px;
		width: 25px;
	}

	.nr-mobile-menu__action:focus-visible {
		background: transparent !important;
		color: #0061ae !important;
		outline: 2px solid rgba(35, 76, 121, 0.22);
		outline-offset: 4px;
	}

	.nr-mobile-menu__search {
		background: #ffffff;
		border: 1px solid #cfd7e3;
		border-radius: 5px;
		box-shadow: none;
		display: none;
		gap: 0;
		margin: 0 0 18px;
		overflow: hidden;
	}

	.nr-mobile-menu__search.is-open {
		display: flex;
	}

	.nr-mobile-menu__search input {
		background: #ffffff;
		border: 0;
		color: #2c2f35;
		flex: 1 1 auto;
		font-family: Inter, sans-serif;
		font-size: 15px;
		min-height: 52px;
		min-width: 0;
		outline: none;
		padding: 0 14px;
	}

	.nr-mobile-menu__search button {
		align-items: center;
		background: #0061ae;
		border: 0;
		color: #ffffff;
		cursor: pointer;
		display: inline-flex;
		font-family: Inter, sans-serif;
		font-size: 15px;
		font-weight: 700;
		justify-content: center;
		min-height: 52px;
		padding: 0 16px;
	}

	.nr-mobile-menu__search button:focus-visible {
		background: #234C79;
	}

	.nr-mobile-menu__primary {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.nr-mobile-menu__link,
	.nr-mobile-menu__summary {
		align-items: center;
		background: #ffffff;
		border: 0;
		border-bottom: 1px solid #e6edf4;
		border-radius: 0;
		color: #0061ae !important;
		display: flex;
		font-family: Oswald, sans-serif !important;
		font-size: 22px !important;
		font-weight: 700 !important;
		justify-content: space-between;
		line-height: 1.1;
		letter-spacing: 0.015em;
		padding: 17px 0;
		text-decoration: none;
		text-transform: uppercase;
	}

	.nr-mobile-menu__link:focus-visible,
	.nr-mobile-menu__summary:focus-visible {
		color: #0061ae;
		outline: none;
	}

	.nr-mobile-menu__summary {
		cursor: pointer;
		list-style: none;
	}

	.nr-mobile-menu__summary::-webkit-details-marker {
		display: none;
	}

	.nr-mobile-menu__summary::after {
		border-bottom: 2px solid currentColor;
		border-right: 2px solid currentColor;
		content: "";
		height: 8px;
		transform: rotate(45deg);
		transition: transform 160ms ease;
		width: 8px;
	}

	.nr-mobile-menu details[open] > .nr-mobile-menu__summary::after {
		transform: rotate(225deg);
	}

	.nr-mobile-menu__product-content {
		display: flex;
		flex-direction: column;
		gap: 0;
		padding: 4px 0 8px;
	}

	.nr-mobile-menu__section {
		background: #ffffff;
		border: 0;
		border-bottom: 1px solid #e6edf4;
		border-radius: 0;
		overflow: hidden;
	}

	.nr-mobile-menu__section > summary {
		border: 0;
		border-radius: 0;
		color: #0061ae !important;
		font-family: Oswald, sans-serif !important;
		font-size: 22px !important;
		font-weight: 700 !important;
		letter-spacing: 0.015em;
		line-height: 1.1;
		padding: 15px 0;
		text-transform: uppercase;
	}

	.nr-mobile-menu__group {
		border-top: 1px solid #edf2f7;
		padding: 13px 0 14px;
	}

	.nr-mobile-menu__group-title {
		color: #2c2f35;
		font-family: Oswald, sans-serif;
		font-size: 17px;
		font-weight: 800;
		letter-spacing: 0.01em;
		line-height: 1.1;
		margin: 0 0 8px;
		text-transform: uppercase;
	}

	.nr-mobile-menu__items {
		display: flex;
		flex-direction: column;
		gap: 2px;
	}

	.nr-mobile-menu__items a {
		color: #2c2f35;
		display: block;
		font-family: Inter, sans-serif;
		font-size: 16px;
		font-weight: 600;
		line-height: 1.25;
		padding: 7px 0;
		text-decoration: none;
	}

	.nr-mobile-menu__items a:focus-visible {
		color: #0061ae;
		outline: none;
	}

	@media (hover: hover) and (pointer: fine) {
		.nr-mobile-menu__close:hover,
		.nr-mobile-menu__action:hover,
		.nr-mobile-menu__link:hover,
		.nr-mobile-menu__summary:hover,
		.nr-mobile-menu__items a:hover {
			color: #234C79 !important;
		}

		.nr-mobile-menu__search button:hover {
			background: #234C79;
		}
	}

	@media (prefers-reduced-motion: reduce) {
		.nr-mobile-menu-overlay,
		.nr-mobile-menu,
		.nr-mobile-menu__summary::after {
			transition: none !important;
		}
	}
}

/* nordisk-rormarkning-cookie-consent-css */
/**
 * CookieYes consent banner - centred modal restyle.
 *
 * Rebuilds the CookieYes notice as a centred popup with a dimmed backdrop,
 * hairline-separated header/body/footer bands and three equal-weight actions,
 * matching the Cookiebot dialog the site used previously. Colours, type and
 * radii follow the site design (Oswald headings, Inter body, #0061AE accent,
 * 4px cards / 5px controls).
 *
 * All three actions are given identical visual weight on purpose: reject must
 * be as prominent as accept for the banner to stay compliant.
 *
 * @package NordiskRormarkning
 */

:root {
	--nr-cky-surface: #ffffff;
	--nr-cky-line: #eeeeee;
	--nr-cky-ink: #1a1a1a;
	--nr-cky-ink-strong: #252a32;
	--nr-cky-accent: #0061ae;
	--nr-cky-accent-bright: #1565c0;
	--nr-cky-header: 84px;
	--nr-cky-pad: 32px;
}

/* ---------------------------------------------------------------------------
 * 1. Centre the notice and give it its own backdrop.
 * ------------------------------------------------------------------------ */

.cky-consent-container,
.cky-consent-container.cky-box-bottom-left,
.cky-consent-container.cky-box-bottom-right,
.cky-consent-container.cky-box-top-left,
.cky-consent-container.cky-box-top-right {
	/* Centred with auto margins rather than a transform: a transformed element
	 * becomes the containing block for its fixed-position children, which would
	 * shrink the backdrop below to the card itself. */
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	width: min(880px, calc(100vw - 48px)) !important;
	max-width: none !important;
	height: fit-content !important;
	max-height: calc(100vh - 48px) !important;
	margin: auto !important;
	transform: none !important;
	border-radius: 4px;
}

/* Dimmed backdrop. Sits inside the notice's own stacking context, so it
 * covers the page without needing the plugin's modal overlay markup. */
.cky-consent-container::before {
	position: fixed;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(26, 26, 26, 0.55);
	content: "";
}

/* Opacity only. A transform here would re-establish the containing block and
 * break the full-viewport backdrop. */
@keyframes nr-cky-enter {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.cky-consent-container:not(.cky-hide) {
	animation: nr-cky-enter 0.18s ease-out both;
}

/* ---------------------------------------------------------------------------
 * 2. The card itself.
 * ------------------------------------------------------------------------ */

.cky-consent-container .cky-consent-bar {
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 48px);
	padding: 0 !important;
	overflow: hidden;
	border: 1px solid var(--nr-cky-line) !important;
	border-radius: 4px !important;
	background: var(--nr-cky-surface) !important;
	box-shadow:
		0 24px 60px rgba(37, 42, 50, 0.26),
		0 2px 8px rgba(37, 42, 50, 0.1) !important;
}

/* Brand band, mirroring the logo header on the Cookiebot dialog. */
.cky-consent-container .cky-consent-bar::before {
	flex: 0 0 auto;
	height: var(--nr-cky-header);
	border-bottom: 1px solid var(--nr-cky-line);
	background-image: url("/wp-content/uploads/2026/06/NR_Logo_big.svg");
	background-repeat: no-repeat;
	background-position: right var(--nr-cky-pad) center;
	background-size: auto 34px;
	content: "";
}

.cky-consent-container .cky-notice {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
	padding: 0;
}

.cky-consent-container .cky-notice-group {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
}

/* ---------------------------------------------------------------------------
 * 3. Type.
 * ------------------------------------------------------------------------ */

.cky-consent-container .cky-notice .cky-title {
	flex: 0 0 auto;
	margin: 0 !important;
	padding: 24px var(--nr-cky-pad) 10px;
	color: var(--nr-cky-ink-strong) !important;
	font-weight: 700;
	font-size: 22px;
	font-family: "Oswald", "Arial Narrow", sans-serif;
	line-height: 1.15;
}

.cky-consent-container .cky-notice-des,
.cky-consent-container .cky-notice-group {
	color: var(--nr-cky-ink) !important;
	font-weight: 400;
	font-size: 15px;
	font-family: "Inter", -apple-system, blinkmacsystemfont, "Segoe UI", sans-serif;
	line-height: 1.6;
}

.cky-consent-container .cky-notice-des {
	flex: 1 1 auto;
	max-width: none;
	min-height: 0;
	padding: 0 var(--nr-cky-pad) 24px;
	overflow-y: auto;
}

.cky-consent-container .cky-notice-des * {
	font-size: 15px;
}

.cky-consent-container .cky-notice-des a.cky-policy,
.cky-consent-container .cky-notice-des button.cky-policy {
	color: var(--nr-cky-accent);
	font-size: 15px;
}

/* ---------------------------------------------------------------------------
 * 4. Actions. Equal weight, Cookiebot order: reject, customise, accept.
 * ------------------------------------------------------------------------ */

.cky-consent-container .cky-notice-btn-wrapper {
	flex: 0 0 auto;
	flex-wrap: nowrap;
	gap: 12px;
	margin-top: 0 !important;
	padding: 20px var(--nr-cky-pad);
	border-top: 1px solid var(--nr-cky-line);
}

.cky-consent-container .cky-notice-btn-wrapper .cky-btn {
	flex: 1 1 0;
	min-height: 52px;
	margin: 0 !important;
	padding: 12px 16px;
	border: 1px solid var(--nr-cky-accent) !important;
	border-radius: 5px;
	background: var(--nr-cky-accent) !important;
	color: var(--nr-cky-surface) !important;
	font-weight: 700;
	font-size: 15px;
	font-family: "Inter", -apple-system, blinkmacsystemfont, "Segoe UI", sans-serif;
	line-height: 1.25;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.cky-consent-container .cky-notice-btn-wrapper .cky-btn:hover {
	border-color: var(--nr-cky-accent-bright) !important;
	background: var(--nr-cky-accent-bright) !important;
	opacity: 1;
}

.cky-consent-container .cky-notice-btn-wrapper .cky-btn-reject {
	order: 1;
}

.cky-consent-container .cky-notice-btn-wrapper .cky-btn-customize {
	order: 2;
}

.cky-consent-container .cky-notice-btn-wrapper .cky-btn-accept {
	order: 3;
}

/* ---------------------------------------------------------------------------
 * 5. Preference centre and shared chrome, kept in the same language.
 * ------------------------------------------------------------------------ */

.cky-overlay {
	background: var(--nr-cky-ink) !important;
	opacity: 0.55 !important;
}

.cky-modal {
	border-radius: 4px;
	box-shadow:
		0 24px 60px rgba(37, 42, 50, 0.26),
		0 2px 8px rgba(37, 42, 50, 0.1);
}

.cky-modal .cky-preference-center {
	border-color: var(--nr-cky-line) !important;
	border-radius: 4px;
	font-family: "Inter", -apple-system, blinkmacsystemfont, "Segoe UI", sans-serif;
}

.cky-modal .cky-preference-header .cky-preference-title {
	color: var(--nr-cky-ink-strong) !important;
	font-weight: 700;
	font-size: 22px;
	font-family: "Oswald", "Arial Narrow", sans-serif;
	line-height: 1.15;
}

.cky-modal .cky-accordion-header .cky-accordion-btn {
	color: var(--nr-cky-ink-strong) !important;
	font-family: "Oswald", "Arial Narrow", sans-serif;
}

.cky-modal .cky-preference-content-wrapper .cky-show-desc-btn,
.cky-modal button.cky-show-desc-btn:not(:hover):not(:active) {
	color: var(--nr-cky-accent);
}

.cky-modal .cky-switch input[type="checkbox"]:checked {
	background: var(--nr-cky-accent);
}

.cky-modal .cky-audit-table {
	border-radius: 4px;
}

.cky-modal .cky-prefrence-btn-wrapper {
	gap: 12px;
	border-top-color: var(--nr-cky-line) !important;
}

.cky-modal .cky-prefrence-btn-wrapper .cky-btn {
	min-height: 52px;
	margin: 0 !important;
	border: 1px solid var(--nr-cky-accent) !important;
	border-radius: 5px;
	background: var(--nr-cky-accent) !important;
	color: var(--nr-cky-surface) !important;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.25;
}

.cky-modal .cky-prefrence-btn-wrapper .cky-btn:hover {
	border-color: var(--nr-cky-accent-bright) !important;
	background: var(--nr-cky-accent-bright) !important;
	opacity: 1;
}

.cky-btn-revisit-wrapper {
	background: var(--nr-cky-accent) !important;
}

/* Focus states follow the site accent rather than the plugin blue. */
.cky-consent-container .cky-btn:focus-visible,
.cky-modal .cky-btn:focus-visible,
.cky-consent-container .cky-notice-des a.cky-policy:focus-visible,
.cky-consent-container .cky-notice-des button.cky-policy:focus-visible,
.cky-modal .cky-accordion-header .cky-accordion-btn:focus-visible,
.cky-modal .cky-preference-header .cky-btn-close:focus-visible,
.cky-modal .cky-switch input[type="checkbox"]:focus-visible {
	outline: 2px solid var(--nr-cky-accent);
	outline-offset: 2px;
}

/* ---------------------------------------------------------------------------
 * 6. Small screens. Full-bleed card, stacked actions, order preserved.
 * ------------------------------------------------------------------------ */

@media (max-width: 700px) {
	:root {
		--nr-cky-header: 64px;
		--nr-cky-pad: 20px;
	}

	.cky-consent-container,
	.cky-consent-container.cky-box-bottom-left,
	.cky-consent-container.cky-box-bottom-right,
	.cky-consent-container.cky-box-top-left,
	.cky-consent-container.cky-box-top-right {
		width: calc(100vw - 24px) !important;
		max-height: calc(100vh - 24px) !important;
	}

	.cky-consent-container .cky-consent-bar {
		max-height: calc(100vh - 24px);
	}

	.cky-consent-container .cky-consent-bar::before {
		background-size: auto 26px;
	}

	.cky-consent-container .cky-notice .cky-title {
		padding-top: 20px;
		font-size: 19px;
	}

	.cky-consent-container .cky-notice-des {
		max-width: none;
		max-height: none;
		padding-bottom: 20px;
		overflow-y: auto;
	}

	.cky-consent-container .cky-notice-btn-wrapper {
		flex-direction: column;
		gap: 10px;
		padding: 16px var(--nr-cky-pad);
	}

	.cky-consent-container .cky-notice-btn-wrapper .cky-btn,
	.cky-consent-container .cky-notice-btn-wrapper .cky-btn-accept {
		width: 100%;
		margin: 0 !important;
	}
}

@media (max-width: 352px) {
	.cky-consent-container .cky-notice-des,
	.cky-consent-container .cky-notice-des *,
	.cky-consent-container .cky-notice-btn-wrapper .cky-btn {
		font-size: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cky-consent-container:not(.cky-hide) {
		animation: none;
	}

	.cky-consent-container .cky-notice-btn-wrapper .cky-btn,
	.cky-modal .cky-prefrence-btn-wrapper .cky-btn {
		transition: none;
	}
}

/* elementor-gf-local-oswald-css */
/* cyrillic-ext */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-9613d586.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-2fbd02b3.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-70f3c3fa.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-3afd3b5b.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-4b9949f8.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-9613d586.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-2fbd02b3.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-70f3c3fa.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-3afd3b5b.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-4b9949f8.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-9613d586.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-2fbd02b3.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-70f3c3fa.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-3afd3b5b.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-4b9949f8.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-9613d586.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-2fbd02b3.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-70f3c3fa.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-3afd3b5b.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-4b9949f8.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-9613d586.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-2fbd02b3.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-70f3c3fa.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-3afd3b5b.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-4b9949f8.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-9613d586.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-2fbd02b3.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-70f3c3fa.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-3afd3b5b.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/oswald-4b9949f8.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* elementor-gf-local-inter-css */
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-547c0a87.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-2c5c12ea.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b9c48815.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-e15a177c.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-5cd0dc1d.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-02076e7d.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-85a02229.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-a375c31d.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-13755630.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-da72a9f7.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-3b78c6fa.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-f059b71e.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-b6db4a06.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://rormarkning.se/wp-content/uploads/elementor/google-fonts/fonts/inter-6ab57b19.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

