@charset "UTF-8";
/* ❗❗⚠️⚠️⚠️⚠️⚠️⚠️❗❗ IMPORTANT IMPORTANT IMPORTANT IMPORTANT ❗❗⚠️⚠️⚠️⚠️⚠️⚠️❗❗ */
/* The main.css file may be overridden in the future please put your css changes in style.css */
/* The main.css file may be overridden in the future please put your css changes in style.css */
/* The main.css file may be overridden in the future please put your css changes in style.css */
/* The main.css file may be overridden in the future please put your css changes in style.css */
/* ❗❗⚠️⚠️⚠️⚠️⚠️⚠️❗❗ IMPORTANT IMPORTANT IMPORTANT IMPORTANT ❗❗⚠️⚠️⚠️⚠️⚠️⚠️❗❗ */
body {
  --primary: var(--wp--preset--color--primary);
  --light: var(--wp--preset--color--light);
  --dark: var(--wp--preset--color--dark);
  --h1: var(--wp--preset--font-size--h-1);
  --h2: var(--wp--preset--font-size--h-2);
  --h3: var(--wp--preset--font-size--h-3);
  --small: var(--wp--preset--font-size--small);
  --medium: var(--wp--preset--font-size--medium);
  --regular: var(--wp--preset--font-size--regular);
  --heading-font: var(--wp--preset--font-family--heading-font);
  --text-font: var(--wp--preset--font-family--text-font);
  --grid-gap: 1.5rem;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin-block-start: 0;
  margin-block-end: 0;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.no-gap {
  gap: 0 !important;
}

.relative {
  position: relative;
}

@media (max-width: 991px) {
  .hide-mobile {
    display: none;
  }
}

.cols-\3  {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
@media (max-width: 991px) {
  .cols-\3  {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cols-\3  {
    grid-template-columns: 1fr;
  }
}

.inspot-big-grid-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 30rem), 1fr));
  gap: var(--grid-gap);
}

.inspot-normal-grid-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  gap: var(--grid-gap);
}

.inspot-small-grid-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: var(--grid-gap);
}
@media (max-width: 1100px) {
  .inspot-small-grid-items {
    grid-template-columns: 1fr 1fr;
  }
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotating {
  animation: rotating 3s linear infinite;
}

.js-heart {
  height: 1rem;
  width: 1rem;
  fill: var(--primary);
}

.cursor-pointer {
  cursor: pointer;
}

.fast-bildstorlek-kort figure img {
  width: 100%;
  height: 400px;
}

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

.uppercase {
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/*                               Container start                              */
/* -------------------------------------------------------------------------- */
.wp-site-blocks .wp-block-group:has(> .alignwide), .wp-site-blocks .wp-block-group:has(> .alignfull), .wp-block-template-part .wp-block-group:has(> .alignwide), .wp-block-template-part .wp-block-group:has(> .alignfull) {
  --padding-inline: 3rem;
  --padding-auto: max(calc( (100vw - var(--wp--style--global--wide-size)) / 2), 1rem);
  --content-max-width: var(--wp--style--global--content-size);
  --breakout-max-width: var(--wp--style--global--wide-size);
  --breakout-size: calc((var(--breakout-max-width) - var(--content-max-width)) / 2);
  --container-tracks:
  [alignfull-start]
  var(--padding-auto) [alignwide-start]
  minmax(0, var(--breakout-size))
  [content-start] min(100% - (var(--padding-inline) * 2), var(--content-max-width)) [content-end]
  minmax(0, var(--breakout-size)) [alignwide-end]
  var(--padding-auto) [alignfull-end];
  display: grid;
  grid-template-columns: var(--container-tracks);
}
.wp-site-blocks .wp-block-group:has(> .alignwide) > :not(.alignwide, .alignfull), .wp-site-blocks .wp-block-group:has(> .alignfull) > :not(.alignwide, .alignfull), .wp-block-template-part .wp-block-group:has(> .alignwide) > :not(.alignwide, .alignfull), .wp-block-template-part .wp-block-group:has(> .alignfull) > :not(.alignwide, .alignfull) {
  grid-column: content;
  width: 100%;
}
.wp-site-blocks .wp-block-group:has(> .alignwide) > .alignwide, .wp-site-blocks .wp-block-group:has(> .alignfull) > .alignwide, .wp-block-template-part .wp-block-group:has(> .alignwide) > .alignwide, .wp-block-template-part .wp-block-group:has(> .alignfull) > .alignwide {
  grid-column: alignwide;
  width: 100%;
}
.wp-site-blocks .wp-block-group:has(> .alignwide) > .alignfull, .wp-site-blocks .wp-block-group:has(> .alignfull) > .alignfull, .wp-block-template-part .wp-block-group:has(> .alignwide) > .alignfull, .wp-block-template-part .wp-block-group:has(> .alignfull) > .alignfull {
  grid-column: alignfull;
  width: 100%;
}
.wp-site-blocks .wp-block-group:has(> .alignwide) > .is-style-full-bredd, .wp-site-blocks .wp-block-group:has(> .alignfull) > .is-style-full-bredd, .wp-block-template-part .wp-block-group:has(> .alignwide) > .is-style-full-bredd, .wp-block-template-part .wp-block-group:has(> .alignfull) > .is-style-full-bredd {
  grid-column: alignfull;
  width: 100%;
  margin-bottom: 0;
}
.wp-site-blocks .wp-block-group:has(> .alignwide) > .is-style-full-bredd img, .wp-site-blocks .wp-block-group:has(> .alignfull) > .is-style-full-bredd img, .wp-block-template-part .wp-block-group:has(> .alignwide) > .is-style-full-bredd img, .wp-block-template-part .wp-block-group:has(> .alignfull) > .is-style-full-bredd img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .wp-site-blocks .wp-block-group:has(> .alignwide), .wp-site-blocks .wp-block-group:has(> .alignfull), .wp-block-template-part .wp-block-group:has(> .alignwide), .wp-block-template-part .wp-block-group:has(> .alignfull) {
    --padding-inline: 1.5rem;
  }
}

@media (max-width: 767px) {
  .wp-block-post-content > .wp-block-group:not(.alignfull) {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
img.alignfull {
  width: 100%;
  max-height: 45vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.alignwide {
  margin-left: initial;
  margin-right: initial;
}

.woocommerce-page .wp-site-blocks, .wp-block-group.woocommerce > .wp-block-columns, .wp-block-group.woocommerce > .wp-block-columns > .wp-block-column:nth-child(2) {
  width: 100%;
}

.wp-block-group > .wp-block-list {
  padding-left: 1.5rem;
}

ol {
  list-style-type: decimal;
}

/* -------------------------------------------------------------------------- */
/*                               Container end                                */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                               Gutenberg end                                */
/* -------------------------------------------------------------------------- */
/* Columns Start */
@media (max-width: 1024px) {
  .wp-block-columns.col-count-4 > .wp-block-column {
    width: 45%;
    flex-basis: 45%;
  }
}
.has-background .wp-block-columns {
  margin-bottom: 0;
}

@media screen and (max-width: 781px) {
  .wp-block-columns:has(.rank-math-block) {
    gap: 0;
  }
}
.is-vertically-aligned-stretch > .wp-block-group {
  height: 100%;
}

.wp-block-column > figure:last-child {
  margin-bottom: 0;
}

.bordered-columns {
  gap: 1.5rem;
}
.bordered-columns.gap-3 {
  gap: 3rem;
}
@media screen and (max-width: 781px) {
  .bordered-columns.gap-3 {
    gap: 4rem;
  }
}
.bordered-columns.gap-3 .wp-block-column {
  padding-right: 3rem;
}
@media screen and (max-width: 781px) {
  .bordered-columns.gap-3 .wp-block-column {
    padding-right: 0;
  }
}
.bordered-columns .wp-block-column {
  padding-right: 1.5rem;
  border-right: 1px solid var(--primary);
}
@media screen and (max-width: 781px) {
  .bordered-columns .wp-block-column {
    padding-right: 0;
    border-right: none;
  }
}
.bordered-columns .wp-block-column:last-child {
  border-right: none;
  padding-right: 0;
}
.bordered-columns img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Columns End */
/* Buttons */
.btn,
.wp-block-button__link {
  color: var(--wp--preset--color--black);
  background-color: var(--wp--preset--color--white);
  padding: 0.5rem 2rem;
  display: inline-block;
  text-align: center;
  border-radius: 20px;
  cursor: pointer;
  transition: all ease 200ms;
  font-weight: 500;
  height: 40px;
}
.btn.has-glas-background-color,
.wp-block-button__link.has-glas-background-color {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  fill-opacity: 30%;
}
.btn.svg-btn,
.wp-block-button__link.svg-btn {
  padding-top: 10px;
  padding-bottom: 10px;
}
.btn.svg-btn svg,
.wp-block-button__link.svg-btn svg {
  height: 1rem;
}
.btn:hover,
.wp-block-button__link:hover {
  opacity: 0.8;
}

.wp-element-button {
  transition: all ease 200ms;
}

.is-style-ram-knappar .wp-block-button {
  border-top: 0.5rem solid white;
  border-radius: 0.5rem 0 0 0;
  background-color: white;
}
.is-style-ram-knappar.is-content-justification-right .wp-block-button {
  border-left: 0.5rem solid white;
}
.is-style-ram-knappar.is-content-justification-left .wp-block-button {
  border-right: 0.5rem solid white;
}

.is-style-pil-knapp-fylld .wp-element-button, .is-style-ram-knappar .wp-element-button,
.is-style-pil-knapp .wp-element-button {
  padding-right: 4rem;
  position: relative;
}
.is-style-pil-knapp-fylld .wp-element-button::after, .is-style-ram-knappar .wp-element-button::after,
.is-style-pil-knapp .wp-element-button::after {
  display: inline-block;
  margin-left: 8px;
  height: 10px;
  width: 16px;
  content: "";
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease-out;
  fill: var(--primary);
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.is-style-pil-knapp-fylld .has-white-color.wp-element-button::after, .is-style-ram-knappar .has-white-color.wp-element-button::after,
.is-style-pil-knapp .has-white-color.wp-element-button::after {
  background-image: url("../images/arrow-right-white.svg");
}
.is-style-pil-knapp-fylld .wp-element-button::before, .is-style-ram-knappar .wp-element-button::before,
.is-style-pil-knapp .wp-element-button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 9999px 9999px 0;
  display: block;
  height: 100%;
  width: 48px;
  color: transparent;
  border-left: 1px solid white;
  transition: all ease-in-out 100ms;
}
.is-style-pil-knapp-fylld .wp-element-button:hover::before, .is-style-ram-knappar .wp-element-button:hover::before,
.is-style-pil-knapp .wp-element-button:hover::before {
  background-color: var(--primary);
}

.is-style-ram-knappar .wp-element-button,
.is-style-pil-knapp .wp-element-button {
  background-color: transparent;
  color: var(--primary);
}
.is-style-ram-knappar .wp-element-button:hover,
.is-style-pil-knapp .wp-element-button:hover {
  background-color: var(--primary);
  color: var(--wp--preset--color--white);
  opacity: 1;
}
.is-style-ram-knappar .wp-element-button.has-light-primary-color,
.is-style-pil-knapp .wp-element-button.has-light-primary-color {
  color: var(--light);
  border-color: var(--light);
}
.is-style-ram-knappar .wp-element-button.has-light-primary-color:hover,
.is-style-pil-knapp .wp-element-button.has-light-primary-color:hover {
  background-color: var(--light);
  color: var(--primary) !important;
}

.is-style-pil-knapp-fylld .wp-element-button:hover {
  background-color: var(--primary);
  color: var(--wp--preset--color--white);
  opacity: 1;
}

/* Buttons End */
/* Group */
:where(.wp-block-group.has-background) {
  padding: 0 1rem;
}

.is-nowrap.is-layout-flex .wp-element-button {
  width: -moz-max-content;
  width: max-content;
}

.is-style-text-with-pil::after {
  content: url("../images/arrow-right.svg");
  display: inline-block;
  margin-left: 1rem;
  width: 1.7rem;
  height: 1rem;
  vertical-align: 3px;
}
.is-style-text-with-pil:hover::after {
  content: url("../images/arrow-right.svg");
}

/* Group End */
/* Gallery start */
.wp-block-gallery.has-nested-images.columns-6 {
  align-items: center;
  --wp--style--block-gap: 2rem;
}
.wp-block-gallery.has-nested-images.columns-6 figure {
  margin-bottom: 0;
}
.wp-block-gallery.has-nested-images.columns-6 figure img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 8rem;
  height: 3rem;
  width: auto;
}

/* Gallery end */
/* Block:image */
.wp-block-column .wp-block-image img {
  -o-object-fit: cover;
     object-fit: cover;
}

footer .wp-block-column .wp-block-image img {
  -o-object-fit: contain;
     object-fit: contain;
}

.is-style-full-height {
  height: 100%;
}
.is-style-full-height > img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.is-style-logo-image > img {
  max-width: 100%;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.cta-block .is-style-full-bredd {
  width: 100%;
  height: 100%;
}
.cta-block .is-style-full-bredd img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.is-style-full-bredd img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Quote start */
.wp-block-quote {
  border-left: 0;
}
.wp-block-quote > p {
  margin-bottom: 2rem;
}
.wp-block-quote > p::before, .wp-block-quote > p::after {
  content: '"';
}

/* Quote end */
/* Media and text start */
.wp-block-media-text {
  padding-left: 0;
  padding-right: 0;
  gap: 3rem;
}
.wp-block-media-text .wp-block-media-text__content {
  padding-left: 0;
  padding-right: 0;
}

/* HR */
.wp-block-separator {
  border-width: 1px;
}
.wp-block-separator:not(.aligncenter) {
  margin-left: 0;
}
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  width: 5rem !important;
}

.wp-block-post-date::before {
  content: "\f133";
  font-weight: 300;
  font-family: "Font Awesome 6 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  margin-right: 0.5rem;
}

/* Cover */
@media (max-width: 1024px) {
  .wp-block-cover {
    padding: 0;
  }
}
.wp-block-cover .has-startpage-overlay-gradient-background {
  mix-blend-mode: multiply;
}

body:not(.woocommerce-cart):not(.woocommerce-checkout) .wp-block-post-content ul:not(.wc-block-grid__products) {
  list-style-type: disc;
  margin-left: 2rem;
}

div.wp-block-group:has(.wp-block-post-date) {
  margin-bottom: 1rem;
}
div.wp-block-group:has(.wp-block-post-date) .wp-block-post-date::before {
  content: none;
}

.wp-block-site-logo img {
  height: 48px;
  width: 100%;
}

.wp-block-search .wp-block-search__inside-wrapper {
  border: 0;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 0.5rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  height: 64px;
  padding: 0 1.5rem;
}
.wp-block-search .wp-block-search__inside-wrapper button,
.wp-block-search .wp-block-search__inside-wrapper input {
  --wp--preset--color--white: transparent;
  border: none;
  background-color: transparent;
  color: black;
  padding: 0;
}
.wp-block-search .wp-block-search__inside-wrapper input::-moz-placeholder {
  color: black;
  font-style: italic;
}
.wp-block-search .wp-block-search__inside-wrapper input::placeholder {
  color: black;
  font-style: italic;
}

.wp-block-navigation-item.current-menu-item {
  border-bottom: 1px solid var(--primary);
}

@media screen and (max-width: 781px) {
  .wp-block-group[style*="padding-right:var(--wp--preset--spacing--30)"] {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .has-text-align-right {
    text-align: left !important;
  }
  .has-text-align-right br {
    display: none;
  }
}
.footer-logos > figure {
  height: 24px !important;
  text-align: center;
}
.footer-logos > figure img {
  display: inline-block !important;
}

/* Rank math accordian start */
div.rank-math-list {
  max-width: var(--text-content-width);
  margin: auto;
}
div.rank-math-list .rank-math-list-item {
  position: relative;
  margin-left: 1rem;
  padding-left: 1.5rem;
}
div.rank-math-list .rank-math-question {
  cursor: pointer;
  display: block;
  padding-bottom: 0.75rem;
  padding-top: 1rem;
  margin-bottom: 0;
}
div.rank-math-list .rank-math-question:before {
  position: absolute;
  left: -1rem;
  top: 16px;
  content: url("data:image/svg+xml,%3Csvg fill='black' height='1rem' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M248 72c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 160L40 232c-13.3 0-24 10.7-24 24s10.7 24 24 24l160 0 0 160c0 13.3 10.7 24 24 24s24-10.7 24-24l0-160 160 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-160 0 0-160z'/%3E%3C/svg%3E");
  transform: rotate(0deg);
  transition: all 150ms ease-in-out;
  display: inline-grid;
  line-height: 1;
  place-content: center;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 200rem;
}
div.rank-math-list .rank-math-question.collapse:before {
  transform: rotate(45deg);
}

#rank-math-faq .rank-math-list-item {
  position: relative;
}

#rank-math-faq .rank-math-list-item input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 41px;
  opacity: 0;
  cursor: pointer;
  z-index: 999;
}

#rank-math-faq .rank-math-list-item h3 {
  background: #f1f2f6;
  padding: 10px 12px 10px 18px;
  cursor: pointer;
  font-size: 18px !important;
  font-weight: normal !important;
  position: relative;
  margin-bottom: 0;
}

#rank-math-faq .rank-math-list-item h3:before {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #000000;
  margin-right: 8px;
}

#rank-math-faq .rank-math-list-item input:checked + h3:before {
  transform: rotate(90deg);
}

#rank-math-faq .rank-math-answer {
  padding: 0 10px 0 0;
  max-height: 0;
  overflow: hidden;
}

#rank-math-faq .rank-math-list-item input:checked + h3 ~ .rank-math-answer {
  max-height: 100vh;
  overflow: visible;
}

/* Open version */
ol.rank-math-list {
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  list-style-type: none;
}
ol.rank-math-list ol.rank-math-list {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
ol.rank-math-list > .rank-math-list-item {
  margin-bottom: 0;
  margin-top: 0;
  margin-left: 3rem;
  position: relative;
}
ol.rank-math-list > .rank-math-question::before {
  counter-increment: section;
  content: counter(section);
  background-color: var(--primary);
  font-size: var(--small);
  height: 2rem;
  width: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 200rem;
  color: white;
  font-weight: 700;
  line-height: 1;
  margin-right: 1rem;
  position: absolute;
  left: -3rem;
}

/* Rank math accordian end */
/* cta */
.cta-block .wp-block-columns, .cta-block h2:last-child {
  margin-bottom: 0;
}

/* Person */
.square > img {
  aspect-ratio: 1/1;
}

.wp-block-media-text.is-image-fill .wp-block-media-text__content {
  padding-bottom: 3rem;
  padding-top: 3rem;
}

@media (max-width: 600px) {
  .wp-block-acf-banner {
    margin-top: 10rem;
  }
}
.woocommerce .wc-block-grid__product {
  --bg-color: rgb(249, 250, 250);
  border-bottom: 16px solid var(--bg-color);
  border-left: 8px solid var(--bg-color);
  border-right: 8px solid var(--bg-color);
  background-color: white;
}

.wc-block-grid__product-image > img {
  margin: auto;
}

.has-4-columns .wc-block-grid__products .wc-block-grid__product-image > img, .has-3-columns .wc-block-grid__products .wc-block-grid__product-image > img, .has-5-columns .wc-block-grid__products .wc-block-grid__product-image > img {
  height: 250px;
  width: auto;
}

.wc-block-grid.has-4-columns:not(.alignwide):not(.alignfull) .wc-block-grid__product .wc-block-grid__product-price {
  font-size: 1rem;
}

.wc-block-mini-cart__button {
  cursor: pointer;
}

.is-layout-grid:where(.is-layout-grid) {
  gap: 0;
}

.wp-block-columns.big-gap-col {
  gap: 6rem;
}

.wp-site-blocks > header.wp-block-template-part {
  position: sticky;
  top: 0;
  z-index: 99;
}

.wp-block-navigation ul {
  gap: 2rem;
}
@media (max-width: 991px) {
  .wp-block-navigation ul {
    gap: 1.5rem;
  }
}

footer .is-layout-flow > .alignleft {
  margin-inline-end: 1.5rem;
  margin-bottom: 0;
}

.intro-block h1 + .wp-block-separator {
  margin-left: auto;
}

.intro-block .wp-block-separator {
  margin-bottom: 1rem;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2rem;
}

.wp-block-navigation__responsive-container-close {
  right: 1rem;
  top: 2rem;
}

@media (max-width: 781px) {
  .reduced-padding-mobile {
    --wp--preset--spacing--60: 2rem;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .is-style-reverse-columns > .wp-block-column:first-child {
    order: 2;
  }
}
.wp-block-query .wp-block-post-template.is-layout-grid li.wp-block-post > figure {
  position: relative;
}
.wp-block-query .wp-block-post-template.is-layout-grid li.wp-block-post > figure img {
  border-radius: 8px;
}
.wp-block-query .wp-block-post-template.is-layout-grid li.wp-block-post > figure > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 44px;
  width: 44px;
  border-radius: 8px 0 0 0;
  border-left: 8px solid white;
  border-top: 8px solid white;
  background-color: white;
}
.wp-block-query .wp-block-post-template.is-layout-grid li.wp-block-post > figure > a::after {
  content: url("data:image/svg+xml,%3Csvg width='16px' height='10px' viewBox='0 0 16 10' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.7656 5.58831C16.0781 5.26292 16.0781 4.73448 15.7656 4.40909L11.7655 0.244045C11.453 -0.0813484 10.9454 -0.0813484 10.6329 0.244045C10.3204 0.569439 10.3204 1.09788 10.6329 1.42327L13.2705 4.16699L0.800033 4.16707C0.357515 4.16707 0 4.53932 0 5.00008C0 5.46084 0.357515 5.83309 0.800033 5.83309L13.268 5.83301L10.6354 8.57673C10.3229 8.90212 10.3229 9.43056 10.6354 9.75596C10.9479 10.0813 11.4555 10.0813 11.768 9.75596L15.7681 5.59092L15.7656 5.58831Z' fill='%23E33E13' /%3E%3C/svg%3E");
  background-color: var(--beige);
  color: var(--dark-orange);
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 8px;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (min-width: 782px) {
  .wp-block-cover.is-style-break-overlay-moblie .wp-block-cover__image-background {
    border-bottom-left-radius: 2rem;
  }
}
@media (max-width: 781px) {
  .wp-block-cover.is-style-break-overlay-moblie {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .wp-block-cover.is-style-break-overlay-moblie .wp-block-cover__background {
    display: none;
  }
  .wp-block-cover.is-style-break-overlay-moblie .wp-block-group.has-background {
    border: none !important;
    border-radius: 1rem !important;
  }
  .wp-block-cover.is-style-break-overlay-moblie .wp-block-cover__image-background {
    position: static;
    height: auto;
    border-radius: 1rem;
  }
}
.wp-block-acf-custom-ikon {
  height: 1.5rem;
}
.wp-block-acf-custom-ikon svg {
  width: 1.5rem;
  height: 1.5rem;
  max-height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 991px) {
  .wp-block-acf-custom-ikon svg {
    fill: white;
  }
}

.wp-block-acf-search-header {
  display: flex;
  align-items: center;
}
.wp-block-acf-search-header > a {
  display: inline-block;
  height: 1.5rem;
}
.wp-block-acf-search-header svg {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .wp-block-acf-search-header .open-search, .wp-block-acf-search-header .close-search {
    fill: white;
  }
}
.wp-block-acf-search-header .header-search-input {
  position: absolute;
  top: 95px;
  left: 50%;
  width: 257px;
  transform: translateX(-50%);
}
@media screen and (min-width: 991px) {
  .wp-block-acf-search-header .header-search-input {
    position: initial;
    top: 0;
    left: 0;
    transform: translateX(0);
    z-index: 0;
    margin-right: 1rem;
  }
}
.wp-block-acf-search-header .search-form {
  margin-right: 0;
}
.wp-block-acf-search-header .search-form input.search-field {
  border-radius: 0.5rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: white;
  border: 0;
  height: 1.5rem;
  width: 100%;
  border: 1px solid var(--primary);
  height: 2.5rem;
  padding: 0.5rem 1rem;
  padding-right: 2.5rem;
}
.wp-block-acf-search-header .search-form input.search-field::-moz-placeholder {
  color: #000;
  font-style: italic;
}
.wp-block-acf-search-header .search-form input.search-field::placeholder {
  color: #000;
  font-style: italic;
}
.wp-block-acf-search-header .search-form button.search-submit {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  position: absolute;
  margin-left: -40px;
  margin-top: 0.6rem;
}
.wp-block-acf-search-header .search-form button.search-submit svg {
  width: 1rem;
  height: 1rem;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.puff-block {
  position: relative;
  padding: 2rem 2rem 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1rem;
}
.puff-block p {
  font-size: var(--h3);
  font-weight: bold;
}
.puff-block .big-text {
  font-size: var(--h1);
  font-weight: bold;
}
.puff-block .main-icon {
  width: auto;
  height: 2rem;
  margin-left: 1rem;
}
.puff-block .arrow-icon {
  width: 19px;
  height: auto;
  margin-left: 1.5rem;
}
.puff-block .overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news-card .post-cols {
  gap: 2rem;
}
.news-card .post-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.news-card .post-content p {
  margin: 0;
}
.news-card img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  height: 320px;
  width: 100%;
}

.border-grid .news-card {
  border-right: 1px solid var(--wp--preset--color--black);
  padding-right: 1.5rem;
}
.border-grid .news-card:last-child {
  border-right: 0;
  padding-right: 0;
}

.cols-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 1280px) and (min-width: 991px) {
  .cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .cols-4 .news-card:nth-child(3n) {
    border-right: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 520px) {
  .cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cols-4 .news-card:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 520px) {
  .cols-4 {
    grid-template-columns: 1fr;
  }
  .cols-4 .news-card {
    border-right: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 991px) {
  .posts-grid.border-grid .news-card:nth-child(3n) {
    border-right: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 520px) and (max-width: 991px) {
  .posts-grid.border-grid .news-card:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 520px) {
  .posts-grid.border-grid .news-card {
    border-right: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 991px) {
  .col-4.border-grid .news-card:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 520px) {
  .col-4.border-grid .news-card {
    border-right: 0;
    padding-right: 0;
  }
}

.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 991px) {
  .cols-3 {
    grid-template-columns: 1fr;
  }
}

.cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.wp-block-group.is-style-logo-wall.is-layout-grid {
  gap: 42px 10rem;
  justify-content: center;
}
.wp-block-group.is-style-logo-wall.is-layout-grid figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-block-group.is-style-logo-wall.is-layout-grid img {
  max-height: 64px;
}
@media screen and (max-width: 991px) {
  .wp-block-group.is-style-logo-wall.is-layout-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1rem;
  }
}

.wp-block-acf-custom-ikon.is-style-3rem {
  width: 3rem;
  height: 3rem;
}

.wp-block-acf-custom-ikon.is-style-3rem img,
.wp-block-acf-custom-ikon.is-style-3rem svg {
  width: 3rem;
  height: 3rem;
  max-height: 3rem;
}

.wp-block-acf-alla-artiklar {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media screen and (max-width: 991px) {
  .wp-block-acf-alla-artiklar {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.filter-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  margin-bottom: 6rem;
}
.filter-section h2 {
  font-size: 1.5rem;
  margin: 0;
}
.filter-section .categories {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.filter-section .category-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.filter-section .category-checkbox input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #000;
  border-radius: 0;
  margin: 0;
  display: grid;
  place-content: center;
  cursor: pointer;
}
.filter-section .category-checkbox input[type=checkbox]:checked {
  background-color: #000;
}
.filter-section .category-checkbox input[type=checkbox]:checked::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  transform: scale(1);
  background-color: white;
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
          clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.filter-section .checkbox-text {
  font-size: 1rem;
}
.filter-section .rensa-filter {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #000;
  background: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 2rem;
  margin-top: 1rem;
  width: -moz-max-content;
  width: max-content;
}
.filter-section .rensa-filter:hover {
  background-color: #f5f5f5;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 1.5rem;
  margin-bottom: 2rem;
}
.posts-grid .page-content {
  border-right: 1px solid #000;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  font-size: 3rem;
}
.pagination .numbers {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.pagination .numbers a,
.pagination .numbers span {
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: inherit;
}
.pagination .numbers .current {
  border-radius: 4px;
}
.pagination .nav-buttons {
  display: flex;
  gap: 1rem;
  font-size: 1rem;
}
.pagination .nav-buttons a {
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 991px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .pagination {
    flex-direction: column;
    gap: 1rem;
  }
}
/* -------------------------------------------------------------------------- */
/*                               Gutenberg end                                */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                            Custom classes start                            */
/* -------------------------------------------------------------------------- */
@media (max-width: 781px) {
  .center-mobile {
    justify-content: center;
    display: flex;
  }
}
.button-at-bottom {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.special-header-group .wp-block-image img {
  vertical-align: middle;
  margin-bottom: 2px;
}

/* -------------------------------------------------------------------------- */
/*                            Custom classes start                            */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                              Typography start                              */
/* -------------------------------------------------------------------------- */
p, ul, ol, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

p, ul, ol, li {
  font-size: var(--regular);
  line-height: 1.5;
}

a {
  transition: color 300ms ease, background-color 300ms ease;
  text-decoration: none;
}

.pre-heading {
  text-transform: uppercase;
  color: var(--primary);
  font-weight: bold;
}

h1 {
  text-wrap: balance;
  -webkit-hyphens: none;
          hyphens: none;
}

@media (max-width: 350px) {
  h1 {
    word-wrap: break-word;
    -webkit-hyphens: auto;
            hyphens: auto;
  }
}
.wp-block-navigation-link .wp-block-navigation-item__label {
  font-weight: 500;
}

.wp-block-navigation .wp-block-navigation-item__content {
  font-size: inherit;
}

.has-stor-font-size > p {
  font-size: inherit;
}

.single-post p + h3, .single-post p + h2 {
  margin-top: 1rem;
}

.has-h1-font-size, .h1 {
  font-size: var(--h1);
}

.has-h2-font-size, .h2 {
  font-size: var(--h2);
}

.has-h3-font-size, .h3 {
  font-size: var(--h3);
}

.has-h4-font-size, .h4 {
  font-size: var(--h4);
}

.text-small {
  font-size: var(--wp--preset--font-size--small);
}

.text-medium {
  font-size: var(--wp--preset--font-size--medium);
}

.text-large {
  font-size: var(--wp--preset--font-size--stor);
}

.weight-light {
  font-weight: 300;
}

.weight-medium {
  font-weight: 500;
}

/* -------------------------------------------------------------------------- */
/*                               Typography End                               */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                            Contact form 7 start                            */
/* -------------------------------------------------------------------------- */
.wpcf7 .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.wpcf7 .form-row input {
  background-color: #E7EFF2;
  border-radius: 20px;
  width: 100%;
  height: 40px;
  padding: 10px 1rem;
}
.wpcf7 .form-row input::-moz-placeholder {
  color: #444;
}
.wpcf7 .form-row input::placeholder {
  color: #444;
}
.wpcf7 .form-single-row textarea {
  width: 100%;
  height: 160px;
  background-color: #E7EFF2;
  border-radius: 20px;
  padding: 1rem;
}
.wpcf7 .form-single-row textarea::-moz-placeholder {
  color: #444;
}
.wpcf7 .form-single-row textarea::placeholder {
  color: #444;
}

.send-button {
  display: inline-block;
  background-color: black;
  color: white;
  height: 40px;
  padding-left: 2rem;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 20px;
  padding-right: 4rem;
  position: relative;
}
.send-button:not([disabled]) {
  cursor: pointer;
}
.send-button br {
  display: none;
}
.send-button::after {
  display: inline-block;
  margin-left: 8px;
  height: 10px;
  width: 16px;
  content: "";
  background-image: url("../images/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease-out;
  fill: var(--primary);
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.send-button:hover::before {
  background-color: var(--primary);
}

.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-acceptance label {
  display: block;
}
.wpcf7-acceptance input {
  border: 1px solid #393A3D;
  margin-right: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-color: white;
}
.wpcf7-acceptance input:checked::after {
  content: "✔";
  position: absolute;
  font-size: var(--regular);
  border-radius: 9999px;
  color: var(--primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.wpcf7-not-valid-tip {
  font-size: var(--small);
  margin-left: 1rem;
  margin-top: 0.25rem;
}

.wpcf7.wpcf7.wpcf7.wpcf7.wpcf7 .wpcf7-response-output {
  margin: 0;
  margin-top: 2rem;
  padding: 0;
  color: #dc3232;
  font-size: var(--regular);
  border: none;
}

.wpcf7.wpcf7.wpcf7.wpcf7.wpcf7 form.sent .wpcf7-response-output {
  color: #1EAE12;
}

/* -------------------------------------------------------------------------- */
/*                             Contact form 7 end                             */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                              Breadcrumb start                              */
/* -------------------------------------------------------------------------- */
.rank-math-breadcrumb p, .rank-math-breadcrumb a {
  font-size: var(--regular);
  color: black;
}

.rank-math-breadcrumb .separator {
  line-height: 1.2;
  vertical-align: text-top;
  margin: 0 0.5rem;
}

.rank-math-breadcrumb.rank-math-breadcrumb a {
  font-weight: 500;
}

/* -------------------------------------------------------------------------- */
/*                              Breadcrumb start                              */
/* -------------------------------------------------------------------------- */
@media (max-width: 576px) {
  .single-product .wp-block-post-title {
    font-size: 2.4rem;
  }
}

.single-product #woo-main-cols {
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.single-product #woo-main-cols .sale-badge {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  background-color: var(--primary);
  padding: 0.5rem 2rem;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}
.single-product #woo-main-cols .wp-block-woocommerce-product-price {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.single-product #woo-main-cols .wp-block-woocommerce-product-price > .wc-block-components-product-price {
  display: flex;
}
.single-product #woo-main-cols .wp-block-woocommerce-product-price > .wc-block-components-product-price > span.woocommerce-Price-amount {
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  color: #000;
}
.single-product #woo-main-cols .wp-block-woocommerce-product-price del {
  order: 2;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
  align-self: flex-end;
  margin-bottom: 5px;
}
.single-product #woo-main-cols .wp-block-woocommerce-product-price ins {
  order: 1;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  color: #D83F16;
  margin-right: 1.5rem;
}
.single-product #woo-main-cols .stock {
  margin-bottom: 1rem;
  margin-top: 4rem;
}
.single-product #woo-main-cols .stock.in-stock {
  color: #68A132;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}
.single-product #woo-main-cols .stock.soon-in-stock {
  color: #D83F47;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}
.single-product #woo-main-cols .single_add_to_cart_button {
  height: 40px;
  border-radius: 20px;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  padding: 0 2rem;
}
.single-product #woo-main-cols .single_add_to_cart_button::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M248 72c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 160L40 232c-13.3 0-24 10.7-24 24s10.7 24 24 24l160 0 0 160c0 13.3 10.7 24 24 24s24-10.7 24-24l0-160 160 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-160 0 0-160z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
}
.single-product #woo-main-cols .single_add_to_cart_button:hover {
  background-color: #D83F16;
}
.single-product #woo-main-cols .wc-block-components-quantity-selector {
  background-color: #E7EFF2 !important;
  border-radius: 20px !important;
  padding: 7px 24px;
  border: none !important;
}
.single-product #woo-main-cols .wc-block-components-quantity-selector:after {
  content: none;
}
.single-product #woo-main-cols .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button--minus {
  font-size: 0px;
  height: 24px;
  width: 16px;
  border: none;
  background-color: transparent;
  color: #000;
  min-width: 16px;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M432 256c0 13.3-10.7 24-24 24L40 280c-13.3 0-24-10.7-24-24s10.7-24 24-24l368 0c13.3 0 24 10.7 24 24z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
}
.single-product #woo-main-cols .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button--minus:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23D83F47' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M432 256c0 13.3-10.7 24-24 24L40 280c-13.3 0-24-10.7-24-24s10.7-24 24-24l368 0c13.3 0 24 10.7 24 24z'/%3E%3C/svg%3E");
}
.single-product #woo-main-cols .wc-block-components-quantity-selector .wc-block-components-quantity-selector__input {
  padding: 0 !important;
  height: 24px;
}
.single-product #woo-main-cols .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button--plus {
  font-size: 0;
  height: 24px;
  width: 16px;
  border: none;
  background-color: transparent;
  color: #000;
  min-width: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M248 72c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 160L40 232c-13.3 0-24 10.7-24 24s10.7 24 24 24l160 0 0 160c0 13.3 10.7 24 24 24s24-10.7 24-24l0-160 160 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-160 0 0-160z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.single-product #woo-main-cols .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button--plus:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23D83F47' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M248 72c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 160L40 232c-13.3 0-24 10.7-24 24s10.7 24 24 24l160 0 0 160c0 13.3 10.7 24 24 24s24-10.7 24-24l0-160 160 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-160 0 0-160z'/%3E%3C/svg%3E");
}

.wp-block-woocommerce-product-meta + .posted_in {
  display: none;
}

.woocommerce-account .wp-block-post-title, .woocommerce-account main .woocommerce, .woocommerce-cart .wp-block-post-title, .woocommerce-cart main .woocommerce, .woocommerce-checkout .wp-block-post-title, .woocommerce-checkout main .woocommerce {
  max-width: 100%;
}

.woocommerce-page table.shop_table {
  width: 100%;
}

.woocommerce-checkout-review-order-table tfoot .woocommerce-shipping-totals, .woocommerce-checkout-review-order-table tfoot .order-total {
  display: none;
}

.woocommerce div.product form.cart .variations {
  margin-top: 1rem;
}
.woocommerce div.product form.cart .variations select {
  border: 2px solid black;
  border-radius: 99rem;
  height: 40px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.single_variation_wrap .woocommerce-variation-price {
  font-size: var(--wp--preset--font-size--large);
}
.single_variation_wrap .price {
  display: flex;
}
.single_variation_wrap .price > del {
  font-size: var(--wp--preset--font-size--medium);
  margin-top: 0.4rem;
}
.single_variation_wrap .price > ins {
  color: #D83F16;
  margin-left: 1rem;
}

.custom-outline-link {
  display: block;
  border: 2px solid black;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: black !important;
  --wp--preset--color--primary: black;
}

.woocommerce-proceed-to-checkout-block .wc-block-components-button__text {
  color: black !important;
}

.wp-site-blocks > .wp-block-template-part:first-child:has(.wp-block-acf-header) {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header {
  position: relative;
  width: 100%;
}

.check-icon {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M441 103c9.4 9.4 9.4 24.6 0 33.9L177 401c-9.4 9.4-24.6 9.4-33.9 0L7 265c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l119 119L407 103c9.4-9.4 24.6-9.4 33.9 0z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}

.main-header {
  background: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.main-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.site-menu__list {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-menu__list a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
.site-menu__list a:hover {
  color: #51CDBB;
}

.site-logo {
  text-align: center;
}
.site-logo img {
  max-height: 50px;
  width: auto;
}
.site-logo a {
  color: #333;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.search-box {
  position: relative;
}
.search-box .search-form {
  display: flex;
  align-items: center;
}
.search-box .search-field {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 200px;
}
.search-box .search-field:focus {
  outline: none;
  border-color: #51CDBB;
}
.search-box .search-submit {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #666;
}
.search-box .search-submit:hover {
  color: #51CDBB;
}

.aws-container {
  width: 320px;
}
@media (max-width: 767px) {
  .aws-container {
    width: 100%;
  }
}
.aws-container .aws-search-form {
  height: 40px;
}
.aws-container .aws-search-field {
  border: none !important;
  border-radius: 999px 0 0 999px !important;
  background-color: var(--light) !important;
  padding-left: 1rem;
}
.aws-container .aws-search-btn {
  border: none !important;
  border-left: 1px solid #fff !important;
  background: var(--light) !important;
  border-radius: 0 999px 999px 0 !important;
}

.mini-cart .cart-icon {
  color: #333;
  font-size: 20px;
  text-decoration: none;
}
.mini-cart .cart-icon:hover {
  color: #51CDBB;
}

#menu-sido-meny {
  margin-bottom: 0;
}
#menu-sido-meny a {
  color: #000;
}
#menu-sido-meny a:hover {
  color: var(--primary);
}

#mega-menu {
  margin-bottom: 0;
  transition-duration: 150ms;
}
#mega-menu a {
  color: #000;
}
#mega-menu a:hover {
  color: var(--primary);
}
#mega-menu .depth-0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#mega-menu .depth-0 > .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  background: #fff;
  padding: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 3rem;
}
#mega-menu .depth-0 > .sub-menu .depth-1 {
  padding-right: 3rem;
  border-right: 1px solid gray;
  text-transform: uppercase;
}
#mega-menu .depth-0 > .sub-menu .depth-1:last-child {
  border-right: none;
}
#mega-menu .depth-0 > .sub-menu .depth-2 {
  text-transform: none;
}
#mega-menu .depth-0 > .sub-menu .depth-2 a {
  color: rgba(0, 0, 0, 0.5960784314);
}
#mega-menu .depth-0 > .sub-menu .depth-2 a:hover {
  color: var(--primary);
}
#mega-menu .depth-0:hover > .sub-menu {
  display: grid;
}

#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
body.admin-bar #mobile-menu {
  padding-top: 46px;
}
@media screen and (min-width: 783px) {
  body.admin-bar #mobile-menu {
    padding-top: 32px;
  }
}
#mobile-menu.active {
  transform: translateX(-100%);
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
#mobile-menu .container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#mobile-menu .flex {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 1.5rem;
}
#mobile-menu .flex .text-xl {
  font-weight: 700;
}
#mobile-menu .flex #close-mobile-menu {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
  border-radius: 50%;
}
#mobile-menu .flex #close-mobile-menu svg {
  stroke: white;
  width: 20px;
  height: 20px;
}
#mobile-menu ul.space-y-4 {
  list-style: none;
  padding: 0;
}
#mobile-menu ul.space-y-4 li {
  margin-bottom: 0.75rem;
}
#mobile-menu ul.space-y-4 li a {
  display: block;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
}
#mobile-menu ul.space-y-4 li a:hover {
  color: var(--primary);
}

body.mobile-menu-active {
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.mobile-menu-toggle .hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  position: relative;
}
.mobile-menu-toggle .hamburger::before, .mobile-menu-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #333;
  left: 0;
}
.mobile-menu-toggle .hamburger::before {
  top: -6px;
}
.mobile-menu-toggle .hamburger::after {
  bottom: -6px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  padding: 20px;
  overflow-y: auto;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu__list li {
  margin-bottom: 15px;
}
.mobile-menu__list a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}
.mobile-menu__list a:hover {
  color: #51CDBB;
}

#mobile-menu .menu-item-has-children {
  position: relative;
  margin-bottom: 16px;
}
#mobile-menu .menu-item-has-children > a {
  display: inline-block;
  width: calc(100% - 45px);
  font-weight: 600;
}
#mobile-menu .menu-item-has-children.has-toggle {
  border-radius: 6px;
  margin-bottom: 12px;
}
#mobile-menu .menu-item-has-children.has-toggle:after {
  content: "";
  display: table;
  clear: both;
}
#mobile-menu .menu-item-has-children .submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 99px;
  padding: 0;
  cursor: pointer;
  position: absolute;
  right: 8px;
  top: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
#mobile-menu .menu-item-has-children .submenu-toggle svg {
  transition: transform 0.3s ease;
  color: #555;
  stroke-width: 3;
}
#mobile-menu .menu-item-has-children .submenu-toggle.active {
  background-color: var(--primary, #51CDBB);
  border-color: var(--primary, #51CDBB);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
#mobile-menu .menu-item-has-children .submenu-toggle.active svg {
  transform: rotate(180deg);
  color: white;
}
#mobile-menu .menu-item-has-children .sub-menu {
  margin-top: 12px;
  margin-left: 0;
  padding: 16px 0 16px 20px;
  border-left: 2px solid var(--primary, #51CDBB);
  border-radius: 0 6px 6px 0;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.03);
}
#mobile-menu .menu-item-has-children .sub-menu li {
  margin-bottom: 12px;
  position: relative;
}
#mobile-menu .menu-item-has-children .sub-menu li:last-child {
  margin-bottom: 0;
}
#mobile-menu .menu-item-has-children .sub-menu a {
  font-size: 16px;
  font-weight: 400;
  display: block;
  padding: 4px 0;
}

@media (max-width: 1024px) {
  .search-box .search-field {
    width: 150px;
  }
}
@media (max-width: 1030px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  .main-header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .search-box {
    display: none;
  }
}
@media (max-width: 1030px) {
  .desktop-only {
    display: none;
  }
}

.mobile-only {
  display: none;
}
@media (max-width: 1030px) {
  .mobile-only {
    display: block;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}/*# sourceMappingURL=main.css.map */