@charset "UTF-8";
@font-face {
  font-family: Ivy Mode;
  src: url(fonts/ivyMode-Regular.otf);
  font-weight: normal;
}
:root {
  /* Färger */
  --forrestGreen: #66746d;
  --lightGreen: #DEE2DF;
  --sand: #F9F5F2;
  --yellow: #fede38;
  --white: #FFFFFF;
  --black: #000000;
  --success: #46b450;
  /* Typografi */
  --fontIvyMode: "Ivy Mode", sans-serif;
  --fontMontserrat: "Montserrat", sans-serif;
  --fontXXLarge: 4.5rem;
  --fontXLarge: 3rem;
  --fontLarge: 2rem;
  --fontMedium: 1.25rem;
  --fontSmall: 1.125rem;
  --fontRegular: 0.95rem;
  --fontXSmall: 0.85rem;
  --fontWeightMedium: 500;
  --fontWeightRegular: 400;
  --fontWeightThin: 300;
  --lineHeightLarge: 1.5;
  --lineHeightSmall: 1.25;
}

body {
  font-family: var(--fontMontserrat);
  font-size: var(--fontRegular);
  font-weight: var(--fontWeightThin);
  line-height: var(--lineHeightLarge);
  margin: 0 auto;
  position: unset !important;
  top: 0 !important;
  width: 100%;
}

:where(.wp-site-blocks) > * {
  margin: 0;
}

/* Typografi */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--fontWeightThin);
  line-height: var(--lineHeightSmall);
  margin: 1rem 0;
}

h1,
.text-xxl {
  font-family: var(--fontIvyMode);
  font-size: var(--fontXXLarge);
}
@media screen and (max-width: 40rem) {
  h1,
  .text-xxl {
    font-size: calc(var(--fontXXLarge) - 1.5rem) !important;
  }
}

.has-xxlarge-font-size {
  font-size: var(--fontXXLarge);
}
@media screen and (max-width: 40rem) {
  .has-xxlarge-font-size {
    font-size: calc(var(--fontXXLarge) - 1.5rem) !important;
  }
}

h2,
.text-xl {
  font-family: var(--fontIvyMode);
  font-size: var(--fontXLarge);
}
@media screen and (max-width: 40rem) {
  h2,
  .text-xl {
    font-size: calc(var(--fontXLarge) - 0.75rem) !important;
  }
}

.has-xlarge-font-size {
  font-size: var(--fontXLarge);
}
@media screen and (max-width: 40rem) {
  .has-xlarge-font-size {
    font-size: calc(var(--fontXLarge) - 0.75rem) !important;
  }
}

h3,
.text-lg {
  font-family: var(--fontIvyMode);
  font-size: var(--fontLarge);
}
@media screen and (max-width: 40rem) {
  h3,
  .text-lg {
    font-size: calc(var(--fontLarge) - 0.5rem) !important;
  }
}

.has-large-font-size {
  font-size: var(--fontLarge);
}
@media screen and (max-width: 40rem) {
  .has-large-font-size {
    font-size: calc(var(--fontLarge) - 0.5rem) !important;
  }
}

h4,
.text-m {
  font-size: var(--fontMedium);
}

h5,
.text-s {
  font-size: var(--fontSmall);
}

.text-xs {
  font-size: var(--fontXSmall);
}

strong {
  font-weight: var(--fontWeightMedium);
}

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

/* Layout */
.is-layout-flow .wp-block-group {
  margin-top: 0 !important;
}

.container {
  margin: auto;
  padding: 0 2rem;
}
.container.container-lg {
  max-width: 80rem;
}

.row {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.gap-lg {
  gap: 4rem;
}
.gap-lg .col-lg {
  flex: 0 0 calc(50% - 2rem);
  -ms-flex: 0 0 calc(50% - 2rem);
  max-width: calc(50% - 2rem);
}
@media screen and (max-width: 60rem) {
  .gap-lg .col-lg {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
  }
}
.gap-lg .col-m {
  flex: 0 0 calc(33.3333333333% - 2.6666666667rem);
  -ms-flex: 0 0 calc(33.3333333333% - 2.6666666667rem);
  max-width: calc(33.3333333333% - 2.6666666667rem);
}
@media screen and (max-width: 60rem) {
  .gap-lg .col-m {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
  }
}
.gap-lg .col-s {
  flex: 0 0 calc(25% - 3rem);
  -ms-flex: 0 0 calc(25% - 3rem);
  max-width: calc(25% - 3rem);
}
@media screen and (max-width: 60rem) {
  .gap-lg .col-s {
    flex: 0 0 calc(50% - 2rem);
    -ms-flex: 0 0 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
}
@media screen and (max-width: 40rem) {
  .gap-lg .col-s {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
  }
}
.gap-lg .col-xs {
  flex: 0 0 calc(16.6666666667% - 2.6666666667rem);
  -ms-flex: 0 0 calc(16.6666666667% - 2.6666666667rem);
  max-width: calc(16.6666666667% - 2.6666666667rem);
}
@media screen and (max-width: 60rem) {
  .gap-lg .col-xs {
    flex: 0 0 calc(50% - 2rem);
    -ms-flex: 0 0 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
}
@media screen and (max-width: 40rem) {
  .gap-lg .col-xs {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
  }
}

.gap-s {
  gap: 2rem;
}
.gap-s .col-lg {
  flex: 0 0 calc(50% - 1rem);
  -ms-flex: 0 0 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
}
@media screen and (max-width: 60rem) {
  .gap-s .col-lg {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
  }
}
.gap-s .col-m {
  flex: 0 0 calc(33.3333333333% - 1.3333333333rem);
  -ms-flex: 0 0 calc(33.3333333333% - 1.3333333333rem);
  max-width: calc(33.3333333333% - 1.3333333333rem);
}
@media screen and (max-width: 60rem) {
  .gap-s .col-m {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
  }
}
.gap-s .col-s {
  flex: 0 0 calc(25% - 1.5rem);
  -ms-flex: 0 0 calc(25% - 1.5rem);
  max-width: calc(25% - 1.5rem);
}
@media screen and (max-width: 60rem) {
  .gap-s .col-s {
    flex: 0 0 calc(50% - 1rem);
    -ms-flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 40rem) {
  .gap-s .col-s {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
  }
}
.gap-s .col-xs {
  flex: 0 0 calc(16.6666666667% - 1.3333333333rem);
  -ms-flex: 0 0 calc(16.6666666667% - 1.3333333333rem);
  max-width: calc(16.6666666667% - 1.3333333333rem);
}
@media screen and (max-width: 60rem) {
  .gap-s .col-xs {
    flex: 0 0 calc(50% - 1rem);
    -ms-flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 40rem) {
  .gap-s .col-xs {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
  }
}

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

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

.wp-block-columns {
  margin-bottom: unset;
}
.wp-block-columns .wp-block-column {
  position: relative;
}
@media screen and (max-width: 60rem) {
  .wp-block-columns .wp-block-column {
    flex-basis: 100% !important;
  }
  .wp-block-columns .wp-block-column.wp-block-column-image {
    order: 2;
  }
  .wp-block-columns .wp-block-column:empty {
    display: none;
  }
}
@media screen and (max-width: 60rem) {
  .wp-block-columns {
    display: flex;
    flex-wrap: wrap !important;
  }
}

/* Media */
.wp-block-image img {
  -o-object-fit: contain;
     object-fit: contain;
}

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

@media screen and (max-width: 40rem) {
  .is-style-full-width img {
    height: 20rem !important;
  }
}
/* Listor */
ul {
  padding-left: 1rem;
}
ul.is-style-checkbox-list {
  list-style-type: none;
  padding-left: 0;
}
ul.is-style-checkbox-list li {
  margin-bottom: 1rem;
  line-height: 1.2;
}
ul.is-style-checkbox-list li:last-child {
  margin-bottom: 0;
}
ul.is-style-checkbox-list li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--%3E%3Cpath fill='%2366746D' d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
  margin-right: 0.5rem;
  width: 0.85rem;
  height: 0.85rem;
  display: inline-block;
  vertical-align: sub;
}

header.sticky {
  background-color: var(--white);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: -49px;
  z-index: 99;
}
/* header.sticky .header-desktop .container-first {
  display: none;
} */
header.sticky .container-second .logo {
  padding: 1rem 0;
}
header.sticky .container-second .logo img {
  height: 2rem;
}
header .header-desktop .container-second {
  border-top: 1px solid var(--black);
  position: relative;
}
header .header-desktop .container-second .menu {
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: -moz-max-content;
  width: max-content;
}
header .header-desktop .container-second .menu ul li a {
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}
header .banner {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: center;
	padding: 0.75rem;
}
header .banner p {
	font-size: 0.85rem;
	margin: 0;
	font-weight: 400;
}
header .banner a {
	font-size: 0.85rem;
	font-weight: 400;
	letter-spacing: 0.125rem;
    text-transform: uppercase;
}
@media screen and (max-width: 80rem) {
  header .header-desktop {
    display: none;
  }
}
header .header-mobile {
  position: relative;
}
header .header-mobile .nav-bar {
  align-items: baseline;
  display: flex;
  gap: 1rem;
}
@media screen and (min-width: 1281px) {
  header .header-mobile {
    display: none;
  }
}
header .row {
  height: 100%;
}
header .row .logo {
  align-items: center;
  display: flex;
  height: 100%;
  padding: 1.5rem 0;
}
@media screen and (max-width: 80rem) {
  header .row .logo {
    padding: 1rem 0;
  }
}
header .row .logo img {
  height: 3rem;
  width: auto;
}
@media screen and (max-width: 80rem) {
  header .row .logo img {
    height: 2rem;
  }
}
header .menu {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  min-height: 3rem;
}
header .menu ul {
  display: flex;
  justify-content: center;
  height: 100%;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
header .menu ul li {
  align-items: center;
  display: flex;
  list-style-type: none;
  position: relative;
}
@media screen and (max-width: 80rem) {
  header .menu ul li a {
    height: auto;
    font-size: var(--fontSmall);
    padding: 0 2rem;
    text-align: right;
    width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 80rem) {
  header .menu ul li {
    width: 100%;
  }
}
@media screen and (max-width: 80rem) {
  header .menu ul {
    align-items: flex-end;
    flex-direction: column;
    gap: 1rem 0;
    height: 100vh;
    justify-content: unset;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 2rem 0 0;
    position: absolute;
    right: -20rem;
    top: 4rem;
    transition: all 0.4s;
    width: 0;
    z-index: 3;
  }
  header .menu ul::before {
    background-color: var(--white) !important;
    content: "";
    position: inherit;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
header .menu ul.active {
  right: 0;
  width: 20rem;
}
@media screen and (max-width: 40rem) {
  header .menu ul.active {
    width: 100vw;
  }
}
header .menu .menu-burger-toggle {
  align-items: center;
  display: flex;
  justify-content: center;
  z-index: 99;
}
header .menu .menu-burger-toggle .menu-burger {
  display: flex;
  height: 1.25rem;
  min-width: 1.5rem;
  position: relative;
  width: 100%;
}
header .menu .menu-burger-toggle .menu-burger .menu-burger-line {
  background-color: var(--black);
  border-radius: 0.0625rem;
  height: 0.125rem;
  position: absolute;
  right: 0;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity, left;
  transition-property: transform, opacity, left;
  transition-duration: 0.25s;
  width: 100%;
}
header .menu .menu-burger-toggle .menu-burger .menu-burger-line.menu-burger-line-top {
  top: 0;
}
header .menu .menu-burger-toggle .menu-burger .menu-burger-line.menu-burger-line-middle {
  top: 50%;
  transform: translate(0, -50%);
}
header .menu .menu-burger-toggle .menu-burger .menu-burger-line.menu-burger-line-bottom {
  bottom: 0;
  width: 50%;
}
header .menu .menu-burger-toggle.active .menu-burger-line-top {
  transform: rotate(40deg) translate3d(5.5px, 7px, 0);
}
header .menu .menu-burger-toggle.active .menu-burger-line-middle {
  display: none;
}
header .menu .menu-burger-toggle.active .menu-burger-line-bottom {
  transform: rotate(-40deg) translate3d(5.5px, -7px, 0);
  width: 100% !important;
}
header .menu.active::before {
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
  height: 100vh;
  left: 0;
  position: absolute;
  top: 4rem;
  width: 100vw;
  z-index: 3;
}
@media screen and (max-width: 80rem) {
  header .menu {
    left: unset;
    position: unset;
    transform: unset;
  }
}

footer {
  background-color: var(--forrestGreen);
  color: var(--white);
}
footer .container-first {
  padding-top: 8rem;
  padding-bottom: 6rem;
}
footer .container-second {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 60rem) {
  footer .container-second .gap-lg {
    gap: 2rem;
  }
}
footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0;
  padding: 0;
}
footer ul li {
  list-style-type: none;
}
footer a {
  color: var(--white);
}
footer .border {
  border-top: 1px solid var(--white);
}
footer .extra-heading p {
  margin: 0;
}
footer .col {
  align-items: center;
  display: flex;
}
footer .col img {
  height: 1rem;
  max-width: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: auto;
}
footer .scroll-up {
  align-items: center;
  background: var(--white);
  bottom: 3rem;
  border: none;
  border-radius: 1.5rem;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  height: 3rem;
  justify-content: center;
  padding: 0;
  position: fixed;
  right: 2rem;
  transition: all 0.25s;
  width: 3rem;
  z-index: 98;
}
footer .scroll-up.scroll-up::before {
  background: url(images/arrow-up-long-regular.svg) no-repeat;
  background-position: center;
  content: "";
  height: 1.5rem;
  width: 1rem;
}
@media screen and (max-width: 60rem) {
  footer {
    text-align: center;
  }
  footer .row {
    justify-content: center;
  }
}

a {
  color: var(--black);
  font-weight: var(--fontWeightMedium);
  text-decoration: none;
  transition: all 0.25s;
}
a:hover {
  opacity: 0.7;
}

.wp-block-button a:not(.btn-outline) {
  align-items: center;
  background-color: var(--forrestGreen);
  border-radius: 100rem;
  color: var(--white);
  display: flex !important;
  font-size: var(--fontXSmall) !important;
  font-weight: var(--fontWeightRegular);
  height: 2.75rem;
  letter-spacing: 0.125rem;
  padding: 0 1.5rem !important;
  text-transform: uppercase;
  transition: all 0.25s;
}
.wp-block-button.is-style-outline a {
  font-weight: var(--fontWeightMedium);
}

.btn {
  align-items: center;
  background-color: var(--forrestGreen);
  border-radius: 100rem;
  color: var(--white);
  display: flex !important;
  font-size: var(--fontXSmall) !important;
  font-weight: var(--fontWeightRegular);
  height: 2.75rem;
  letter-spacing: 0.125rem;
  padding: 0 1.5rem !important;
  text-transform: uppercase;
  transition: all 0.25s;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.single_add_to_cart_button, .add_to_cart_button, .wc-block-cart__submit-button, .open-map-button {
  align-items: center;
  background-color: var(--forrestGreen);
  border-radius: 100rem;
  color: var(--white);
  display: flex !important;
  font-family: var(--fontMontserrat);
  font-size: var(--fontXSmall) !important;
  font-weight: var(--fontWeightRegular) !important;
  height: 2.75rem !important;
  letter-spacing: 0.125rem;
  padding: 0 1.5rem !important;
  text-transform: uppercase;
  transition: all 0.25s;
}
.single_add_to_cart_button:hover, .add_to_cart_button:hover, .wc-block-cart__submit-button:hover, .open-map-button:hover {
  opacity: 0.7;
}

.single_add_to_cart_button {
  display: inline-flex !important;
}

.added_to_cart {
  margin: 0 !important;
}

.added_to_cart.wc-forward {
  justify-content: center;
  margin: 1rem auto -3.75rem;
  width: -moz-fit-content;
  width: fit-content;
}

.open-map-button {
  border: none;
}

.wp-block-file {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wp-block-file__button {
  align-items: center;
  background-color: var(--forrestGreen);
  border-radius: 100rem;
  color: var(--white);
  display: flex;
  font-weight: var(--fontWeightRegular);
  height: 2.5rem;
  letter-spacing: 0.125rem;
  margin: 0 !important;
  padding: 0 1.5rem;
  text-transform: uppercase;
  transition: all 0.25s;
  width: fit-content;
}

.slider {
  width: 20rem;
}
.slider .slick-track {
  display: flex !important;
}
.slider .slick-track .slide {
  align-items: center;
  display: flex;
  font-size: var(--fontXSmall);
  gap: 0.5rem;
}
.slider .slick-track .slide .check {
  background: url(images/check-regular.svg) no-repeat;
  height: 1rem;
  width: 1rem;
}

.wp-block-latest-posts {
  display: grid;
  gap: 4rem 2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.wp-block-latest-posts li {
  display: flex;
  flex-direction: column;
}
.wp-block-latest-posts li .wp-block-latest-posts__featured-image a {
  display: flex;
}
.wp-block-latest-posts li .wp-block-latest-posts__featured-image a img {
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.wp-block-latest-posts li .wp-block-latest-posts__post-title {
  font-size: var(--fontRegular);
  font-weight: var(--fontWeightRegular);
  margin: 2rem 0 1rem;
  text-transform: uppercase;
}
.wp-block-latest-posts li .wp-block-latest-posts__post-excerpt {
  margin: 0;
}
@media screen and (max-width: 60rem) {
  .wp-block-latest-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 40rem) {
  .wp-block-latest-posts {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* Formulär */
form {
  /* Felmeddelande */
}
@media screen and (max-width: 40rem) {
  form .row {
    gap: 0;
  }
}
form label {
  display: block;
  width: 100%;
}
form label.hidden {
  display: none;
}
form label.active {
  display: block;
}
form input,
form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid var(--black);
  border-radius: 0.25rem;
  box-shadow: none;
  color: var(--black);
  height: 2.75rem !important;
  font-family: var(--fontMontserrat) !important;
  font-size: var(--fontXSmall) !important;
  font-weight: var(--fontWeightThin);
  margin-bottom: 1rem;
  padding: 0 1.5rem !important;
  width: calc(100% - 3rem - 0.125rem);
}
form input::-moz-placeholder, form select::-moz-placeholder {
  color: var(--black);
  font-family: var(--font);
  font-size: var(--fontXSmall);
}
form input::placeholder,
form select::placeholder {
  color: var(--black);
  font-family: var(--font);
  font-size: var(--fontXSmall);
}
form input[type=file],
form select[type=file] {
  background-color: transparent;
  border: none;
  border-radius: 0;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.5rem 0 0;
  width: 100%;
}
form input[type=checkbox], form input[type=radio],
form select[type=checkbox],
form select[type=radio] {
  background-color: transparent;
  border: 1px solid var(--black);
  border-radius: 0.5rem;
  box-sizing: border-box;
  cursor: pointer;
  height: 1rem !important;
  margin: 0 0.25rem 0 0;
  padding: 0 !important;
  position: relative;
  vertical-align: text-bottom;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1rem !important;
}
form input[type=checkbox]:checked, form input[type=radio]:checked,
form select[type=checkbox]:checked,
form select[type=radio]:checked {
  background-color: var(--forrestGreen);
  border-color: var(--forrestGreen);
  color: var(--white) !important;
}
form input[type=checkbox]:checked::after, form input[type=radio]:checked::after,
form select[type=checkbox]:checked::after,
form select[type=radio]:checked::after {
  color: var(--white) !important;
  content: "✔";
  font-size: 0.5rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
form input[type=submit],
form select[type=submit] {
  align-items: center;
  background-color: var(--forrestGreen);
  border: none;
  border-radius: 100rem;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-family: var(--font);
  font-size: var(--fontXSmall);
  font-weight: var(--fontWeightRegular);
  height: 2.75rem;
  justify-content: center;
  letter-spacing: 0.125rem;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
  text-transform: uppercase;
  transition: all 0.25s;
  -webkit-appearance: button;
  width: -moz-fit-content;
  width: fit-content;
}
form input[type=submit]:hover,
form select[type=submit]:hover {
  opacity: 0.7;
}
form input input[type=submit]:hover,
form select input[type=submit]:hover {
  background-color: var(--white);
  color: var(--blue);
}
form select {
  background: url(images/chevron-down-regular.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 1rem);
  background-position-y: 1rem;
  background-size: auto 0.75rem;
  width: calc(100% - 0.25rem);
}
form textarea {
  background-color: transparent;
  border: 1px solid var(--black);
  border-radius: 0.25rem;
  box-shadow: none;
  font-family: var(--font);
  font-size: var(--fontXSmall);
  font-weight: var(--fontWeightThin);
  height: 9.875rem;
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: calc(100% - 3rem - 0.125rem);
}
form textarea::-moz-placeholder {
  color: var(--black);
  font-family: var(--font);
  font-size: var(--fontXSmall);
  font-weight: var(--fontWeightThin);
}
form textarea::placeholder {
  color: var(--black);
  font-family: var(--font);
  font-size: var(--fontXSmall);
  font-weight: var(--fontWeightThin);
}
form .wpcf7-list-item {
  margin: 0;
}
form .wpcf7-radio {
  display: flex;
  gap: 1rem;
  margin: 0.5rem 0 1rem;
}
form .wpcf7-acceptance {
  font-size: var(--fontXSmall);
}
form .wpcf7-not-valid-tip {
  font-size: var(--fontXSmall) !important;
  font-weight: var(--fontWeightMedium);
  margin: -0.5rem 0 1rem 0.5rem;
}
form .wpcf7-response-output {
  border: 0 !important;
  color: var(--success) !important;
  margin: 2rem 0 0 !important;
  padding: 0 !important;
}
form.invalid .wpcf7-response-output {
  color: var(--red) !important;
}

/* reCAPTCHA */
.grecaptcha-badge {
  display: none;
}

.cart .xoo-wsc-sc-subt {
  display: none;
}

.xoo-wsc-markup .xoo-wsch-basket {
  display: none;
}
.xoo-wsc-markup .xoo-wsch-text {
  margin: 0;
}
.xoo-wsc-markup .xoo-wsc-btn {
  border-radius: 1.375rem;
  height: 2.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}
.xoo-wsc-markup .xoo-wsc-product {
  background-color: transform;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 1.5rem;
}
.xoo-wsc-markup .xoo-wsc-header .xoo-wsch-text {
  font-weight: var(--fontWeightMedium);
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}
.xoo-wsc-markup .xoo-wsc-body .xoo-wsc-product .xoo-wsc-sum-col {
  padding-left: 1rem;
}
.xoo-wsc-markup .xoo-wsc-body .xoo-wsc-product .xoo-wsc-sum-col .xoo-wsc-smr-del::before {
  font-size: var(--fontSmall);
}
.xoo-wsc-markup .xoo-wsc-footer {
  font-size: var(--fontRegular);
  padding: 2rem;
}
.xoo-wsc-markup .xoo-wsc-footer .xoo-wsc-ft-totals {
  padding: 0 0 2rem;
}
.xoo-wsc-markup .xoo-wsc-footer .xoo-wsc-ft-totals .xoo-wsc-ft-amt {
  padding: 0;
  font-size: var(--fontSmall);
}
.xoo-wsc-markup .xoo-wsc-footer .xoo-wsc-ft-totals .xoo-wsc-ft-amt .woocommerce-Price-amount.amount {
  font-size: var(--fontSmall);
}
.xoo-wsc-markup .xoo-wsc-footer .xoo-wsc-ft-buttons-cont {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}
.xoo-wsc-markup .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn {
  border-radius: 1.375rem;
  height: 2.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}
.xoo-wsc-markup .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn .woocommerce-Price-amount.amount {
  font-style: unset;
}

:target {
  scroll-margin-top: 20px;
}

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

input[type=number] {
  -moz-appearance: textfield;
}

.wp-block-group.woocommerce {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Produktkategori-block */
.wp-block-product-category, .wp-block-handpicked-products {
  margin-top: 0;
}
.wp-block-product-category ul, .wp-block-handpicked-products ul {
  display: grid !important;
  grid-auto-flow: column;
  gap: 2rem;
  margin: 0;
}
.wp-block-product-category ul li, .wp-block-handpicked-products ul li {
  border: none;
  display: flex;
  flex-direction: column;
  font-size: var(--fontXSmall);
  margin: 0 !important;
  max-width: 100% !important;
  padding: 0 0 7.75rem !important;
}
.wp-block-product-category ul li a .wc-block-grid__product-image, .wp-block-handpicked-products ul li a .wc-block-grid__product-image {
  margin: 0 0 1rem;
}
.wp-block-product-category ul li a .wc-block-grid__product-image img, .wp-block-handpicked-products ul li a .wc-block-grid__product-image img {
  height: 20rem !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.wp-block-product-category ul li a .wc-block-grid__product-title, .wp-block-handpicked-products ul li a .wc-block-grid__product-title {
  font-size: var(--fontRegular);
  font-weight: var(--fontWeightRegular);
  line-height: 1.5;
  margin: 0 0 1rem;
  text-transform: uppercase;
  text-align: center;
}
.wp-block-product-category ul li .wc-block-grid__product-onsale, .wp-block-handpicked-products ul li .wc-block-grid__product-onsale {
  align-items: center;
  background-color: var(--forrestGreen);
  border: none;
  border-radius: 0.125rem;
  color: var(--white);
  display: flex;
  font-size: 0.75rem;
  /* height: 2rem; */
  left: 0;
  letter-spacing: 0.085rem;
  margin: 0;
  padding: 0 1rem;
  right: 0;
  top: 0;
  width: fit-content;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  padding: 0.5rem;
}
.wp-block-product-category ul li .wc-block-grid__product-price, .wp-block-handpicked-products ul li .wc-block-grid__product-price {
  font-size: var(--fontMedium);
  font-weight: var(--fontWeightMedium);
  margin: 0 0 0.5rem;
}
.wp-block-product-category ul li p {
  font-size: var(--fontXSmall) !important;
  margin: 0;
}
.wp-block-product-category ul li .wc-block-grid__product-price del, .wp-block-handpicked-products ul li .wc-block-grid__product-price del {
  text-decoration: none;
}
.wp-block-product-category ul li .wc-block-grid__product-price del .amount, .wp-block-handpicked-products ul li .wc-block-grid__product-price del .amount {
  text-decoration: line-through;
}
.wp-block-product-category ul li .wc-block-grid__product-price ins, .wp-block-handpicked-products ul li .wc-block-grid__product-price ins {
  text-decoration: none;
}
.wp-block-product-category ul li .wc-block-grid__product-price .amount, .wp-block-handpicked-products ul li .wc-block-grid__product-price .amount {
  font-size: var(--fontMedium);
  font-weight: var(--fontWeightMedium);
}
.wp-block-product-category ul li .wc-block-grid__product-price small, .wp-block-product-category ul li .wc-block-grid__product-price .month, .wp-block-handpicked-products ul li .wc-block-grid__product-price small, .wp-block-handpicked-products ul li .wc-block-grid__product-price .month {
  font-size: var(--fontXSmall);
  font-weight: var(--fontWeightThin);
}
.wp-block-product-category ul li .wc-block-grid__product-price .month, .wp-block-handpicked-products ul li .wc-block-grid__product-price .month {
  margin-left: 0.5rem;
}
.wp-block-product-category ul li .wc-block-grid__product-price .from, .wp-block-handpicked-products ul li .wc-block-grid__product-price .from {
  font-size: var(--fontXSmall);
  font-weight: var(--fontWeightThin);
  text-transform: lowercase;
}
.wp-block-product-category ul li .wc-block-grid__product-add-to-cart, .wp-block-handpicked-products ul li .wc-block-grid__product-add-to-cart {
  bottom: 0;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: -moz-max-content;
  width: max-content;

  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* justify-content: center; */
  align-items: center;
}
.wp-block-product-category ul li .wc-block-grid__product-price .subscription-details, .wp-block-handpicked-products ul li .wc-block-grid__product-price .subscription-details {
  font-size: var(--fontXSmall);
  font-weight: var(--fontWeightThin);
}
@media screen and (max-width: 80rem) {
  .wp-block-product-category ul, .wp-block-handpicked-products ul {
    grid-auto-flow: unset;
    grid-template-columns: auto auto auto;
  }
}
@media screen and (max-width: 60rem) {
  .wp-block-product-category ul, .wp-block-handpicked-products ul {
    grid-template-columns: auto auto;
  }
}
@media screen and (max-width: 40rem) {
  .wp-block-product-category ul, .wp-block-handpicked-products ul {
    grid-template-columns: auto;
  }
}

.wp-block-handpicked-products ul li .wc-block-grid__product-price {
  margin: 0 0 0.5rem !important;
  text-align: center;
}
.wp-block-handpicked-products ul li p {
  font-size: var(--fontXSmall) !important;
  margin: 0;
  text-align: center;
}

.wc-block-grid__product-add-to-cart {
  margin: 0 auto !important;
}

/* Produktkategorisida */
.wp-block-term-description p {
  margin: 1rem 0 !important;
}

.products-block-post-template {
  gap: 4rem 2rem;
}
.products-block-post-template li {
  border: none;
  display: flex;
  flex-direction: column;
  font-size: var(--fontXSmall);
  margin: 0 !important;
  max-width: 100% !important;
  padding: 0 0 5.75rem !important;
  position: relative;
}
.products-block-post-template li .wc-block-components-product-image {
  margin: 0 0 1rem;
}
.products-block-post-template li .wc-block-components-product-image a .wc-block-grid__product-onsale {
  align-items: center;
  background-color: var(--forrestGreen);
  border: none;
  border-radius: 0.125rem;
  color: var(--white);
  display: flex;
  font-size: 0.75rem;
  /* height: 2rem; */
  left: 0;
  letter-spacing: 0.085rem;
  margin: 0;
  padding: 0 1rem;
  right: 0;
  top: 0;
  width: fit-content;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  padding: 0.5rem;
}
.products-block-post-template li .wc-block-components-product-image a img {
  height: 20rem !important;
  /* -o-object-fit: contain !important;
     object-fit: contain !important; */
}
.products-block-post-template li .wp-block-post-title {
  font-family: var(--fontMontserrat);
  font-size: var(--fontRegular);
  font-weight: var(--fontWeightRegular);
  line-height: 1.5;
  margin: 0 0 1rem;
  text-transform: uppercase;
  text-align: center;
}
.products-block-post-template li .wp-block-post-title a {
  font-size: var(--fontRegular) !important;
  font-weight: var(--fontWeightRegular) !important;
  line-height: 1.5;
  text-transform: uppercase;
}
.products-block-post-template li .wp-block-woocommerce-product-price {
  display: flex;
  font-size: var(--fontXSmall);
  font-weight: var(--fontWeightThin);
  justify-content: center;
  margin: 0 0 0.5rem;
}
.products-block-post-template li .wp-block-woocommerce-product-price .wc-block-grid__product-price {
  font-size: var(--fontMedium);
  font-weight: var(--fontWeightMedium);
  margin: 0 !important;
  text-align: center;
}
.products-block-post-template li .wp-block-woocommerce-product-price .wc-block-grid__product-price ins {
  text-decoration: none;
}
.products-block-post-template li .wp-block-woocommerce-product-price .wc-block-grid__product-price ins .amount {
  font-size: var(--fontMedium);
  font-weight: var(--fontWeightMedium);
}
.products-block-post-template li .wc-block-grid__product-price small {
  font-size: var(--fontXSmall);
  font-weight: var(--fontWeightThin);
}
.products-block-post-template li .wp-block-woocommerce-product-price .month {
  font-size: var(--fontXSmall);
  font-weight: var(--fontWeightRegular);
  margin-left: 0.5rem;
  vertical-align: middle;
}
.products-block-post-template li .wc-block-grid__product-price .from {
  font-size: var(--fontXSmall);
  font-weight: var(--fontWeightThin);
  text-transform: lowercase;
}
.products-block-post-template li .wc-block-grid__product-price .subscription-details {
  font-size: var(--fontXSmall);
  font-weight: var(--fontWeightThin);
}
.products-block-post-template li .wp-block-group {
  justify-content: center;
  margin-bottom: 2rem;
}
.products-block-post-template li .wc-block-components-product-button {
  /* bottom: 0;
  gap: 1rem;
  left: 50%;
  margin: 0;
  position: absolute;
  transform: translate(-50%, 0);
  width: -moz-max-content;
  width: max-content; */
}
@media screen and (max-width: 80rem) {
  .products-block-post-template {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media screen and (max-width: 60rem) {
  .products-block-post-template {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media screen and (max-width: 40rem) {
  .products-block-post-template {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}

/* Produktsida */
.single-product .wp-block-woocommerce-product-image-gallery {
  max-width: 100%;
}
.single-product .wp-block-woocommerce-product-image-gallery .onsale {
  align-items: center;
  background-color: var(--forrestGreen);
  border: none;
  border-radius: 0.125rem;
  color: var(--white);
  display: flex;
  font-size: var(--fontRegular);
  /* height: 2.5rem; */
  left: 0 !important;
  letter-spacing: 0.085rem;
  min-height: unset;
  min-width: unset;
  margin: 0;
  padding: 0 1rem;
  text-transform: uppercase;
  top: 0;
  width: fit-content;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  padding: 0.5rem;
}
.single-product .wp-block-woocommerce-product-image-gallery .woocommerce-product-gallery {
  margin-bottom: 0 !important;
}
.single-product div.images.images.images .flex-control-thumbs li {
  width: calc(20% - 8px);
  margin-right: 4px;
  margin-left: 4px;
  margin-bottom: 8px;
}
.single-product div.images.images.images .flex-control-thumbs li:nth-child(4n+1) {
  clear: none;
}
.single-product .wc-block-add-to-cart-form {
  margin: 3rem 0;
}
.single-product .wc-block-add-to-cart-form p.stock.stock {
  font-size: var(--fontRegular);
  font-weight: 400;
  color: var(--forrestGreen);
}
.single-product .woocommerce div.product form.cart div.quantity {
  margin-right: 0;
}
.single-product .wp-block-woocommerce-product-price {
  margin-bottom: 0;
}
.single-product .wp-block-woocommerce-product-price bdi {
  font-weight: var(--fontWeightMedium);
}
.single-product .wp-block-woocommerce-product-price del {
  text-decoration: none;
}
.single-product .wp-block-woocommerce-product-price del .amount {
  text-decoration: line-through;
}
.single-product .wp-block-woocommerce-product-price del .amount .woocommerce-Price-currencySymbol {
  font-size: 0;
}
.single-product .wp-block-woocommerce-product-price del .amount .woocommerce-Price-currencySymbol::before {
  content: ":-";
  font-size: var(--fontLarge);
}
.single-product .products-block-post-template .woocommerce-Price-currencySymbol::before {
  font-size: var(--fontMedium) !important;
}
.single-product .wp-block-woocommerce-product-price small {
  font-size: var(--fontXSmall);
  font-weight: var(--fontWeightRegular);
  margin-left: 0.5rem;
  vertical-align: middle;
}
.single-product .wp-block-woocommerce-product-price .month {
  font-size: var(--fontSmall);
  font-weight: var(--fontWeightThin);
  margin-left: 1rem;
  vertical-align: middle;
}
.single-product .wp-block-add-to-cart-form .cart {
  margin: 0 !important;
}
.single-product .wp-block-add-to-cart-form .cart .variations {
  margin: 0 0 1rem !important;
}
.single-product .wp-block-add-to-cart-form .cart .variations tr {
  display: flex;
  margin: 0 !important;
}
.single-product .wp-block-add-to-cart-form .cart .variations tr .label {
  align-items: center;
  display: flex;
  height: 2.75rem;
  padding: 0 1rem 0 0;
  vertical-align: baseline;
}
.single-product .wp-block-add-to-cart-form .cart .variations tr .label label {
  font-weight: var(--fontWeightMedium);
  margin: 0;
}
.single-product .wp-block-add-to-cart-form .cart .variations tr td {
  line-height: unset !important;
}
.single-product .wp-block-add-to-cart-form .cart .variations tr td.value select {
  margin: 0;
}
.single-product .wp-block-add-to-cart-form .cart .quantity {
  margin: 0 !important;
}
.single-product .wp-block-add-to-cart-form .cart .quantity .input-text {
  border-radius: 0.25rem;
  border: 1px solid var(--black);
  height: 2.75rem;
  margin: 0 1.5rem 0 0 !important;
  padding: 0;
  width: 4rem;
}
.single-product .wc-block-components-product-rating__container .wc-block-components-product-rating__reviews_count {
  font-size: 0.75rem;
}
.single-product .wp-block-woocommerce-product-reviews .woocommerce-Reviews-title {
  border: none;
  font-size: var(--fontLarge);
  margin: 0 0 2rem;
}
.single-product .wp-block-woocommerce-product-reviews ol {
  margin: 2rem 0 !important;
  padding: 0;
}
.single-product .wp-block-woocommerce-product-reviews ol li {
  margin: 0 0 1.5rem !important;
}
.single-product .wp-block-woocommerce-product-reviews ol li:last-child {
  margin: 0 !important;
}
.single-product .wp-block-woocommerce-product-reviews ol li img {
  display: none;
}
.single-product .wp-block-woocommerce-product-reviews ol li .comment-text {
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.single-product .wp-block-woocommerce-product-reviews ol li .comment-text p:last-child {
  margin-bottom: 0 !important;
}

/* Varukorgssida */
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main {
  padding-right: 3rem;
  width: 66.6666666667%;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table.wc-block-cart-items {
  border-color: rgba(0, 0, 0, 0.2);
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table thead .wc-block-cart-items__header-image {
  font-size: var(--fontRegular);
  font-weight: var(--fontWeightMedium);
  padding: 0 1rem 1rem 0;
  text-align: left;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table thead .wc-block-cart-items__header-product {
  padding: 0 1rem 1rem 0;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table thead .wc-block-cart-items__header-total {
  font-size: var(--fontRegular);
  font-weight: var(--fontWeightMedium);
  padding: 0 0 1rem;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table tbody .wc-block-cart-item__image {
  border-color: rgba(0, 0, 0, 0.2);
  padding: 2rem 0 2rem 1rem;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table tbody .wc-block-cart-item__product {
  border-color: rgba(0, 0, 0, 0.2);
  padding: 2rem 0 2rem 1rem;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table tbody .wc-block-cart-item__product .wc-block-components-product-name {
  margin-bottom: 1rem;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table tbody .wc-block-cart-item__product .wc-block-cart-item__prices {
  margin-bottom: 1rem;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table tbody .wc-block-cart-item__product .wc-block-components-product-metadata {
  margin: 1rem 0;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table tbody .wc-block-cart-item__product .wc-block-components-product-metadata p {
  font-size: var(--fontXSmall);
  margin: 0;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table tbody .wc-block-cart-item__product .wc-block-components-quantity-selector {
  margin-bottom: 1rem;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table tbody .wc-block-cart-item__product .wc-block-cart-item__remove-link {
  font-size: var(--fontXSmall);
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main table tbody .wc-block-cart-item__total {
  border-color: rgba(0, 0, 0, 0.2);
  padding: 2rem 1rem;
}
@media screen and (max-width: 60rem) {
  .woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main {
    padding-right: 0;
    width: 100%;
  }
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar {
  padding-left: 3rem;
  width: 33.3333333333%;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-heading-block {
  font-size: var(--fontRegular);
  font-weight: var(--fontWeightMedium);
  padding: 0 0 1rem;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar .wc-block-components-totals-wrapper {
  border-color: rgba(0, 0, 0, 0.2);
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar .wc-block-components-totals-wrapper:not(.wp-block-woocommerce-cart-order-summary-fee-block):not(.wp-block-woocommerce-cart-order-summary-discount-block) {
  padding: 2rem 0;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar .wc-block-components-shipping-rates-control {
  margin-top: 1rem;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar .wc-block-components-shipping-rates-control .wc-block-components-radio-control__option {
  margin-bottom: 1rem;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar .wc-block-components-shipping-rates-control .wc-block-components-radio-control__option .wc-block-components-radio-control__input {
  border: 1px solid var(--black);
  height: 1.25rem;
  left: 0;
  min-height: 1.25rem;
  min-width: 1.25rem;
}
.woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar .wc-block-cart__submit-button {
  margin: 0 auto;
}
@media screen and (max-width: 60rem) {
  .woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar .wc-block-cart__submit-button {
    width: -moz-max-content;
    width: max-content;
  }
}
@media screen and (max-width: 60rem) {
  .woocommerce-cart .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar {
    padding-left: 0;
    width: 100%;
  }
}

/* Kassasidan */
.woocommerce-checkout table {
  border-color: rgba(0, 0, 0, 0.2) !important;
  margin-bottom: 2rem !important;
}
.woocommerce-checkout table td {
  border-color: rgba(0, 0, 0, 0.2) !important;
}
.woocommerce-checkout table td .woocommerce-shipping-methods label {
  font-weight: var(--fontWeightThin);
}

/* "Jämför produkt"-sidan */
.wp-block-acf-product-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 0;
}
.wp-block-acf-product-comparison > div {
  grid-column: span 1;
}
.wp-block-acf-product-comparison select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(images/chevron-down-regular.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 1rem);
  background-position-y: 1rem;
  background-size: auto 0.75rem;
  border: 1px solid var(--black);
  border-radius: 0.25rem;
  box-shadow: none;
  color: var(--black);
  height: 2.75rem !important;
  font-family: var(--fontMontserrat) !important;
  font-size: var(--fontXSmall) !important;
  font-weight: var(--fontWeightThin);
  padding: 0 1.5rem !important;
  position: relative;
  width: 100%;
}
.wp-block-acf-product-comparison select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
}
.wp-block-acf-product-comparison .stol-data {
  padding-top: 4rem;
}
.wp-block-acf-product-comparison .stol-data .big-text {
  font-size: var(--fontLarge);
  font-weight: var(--fontWeightMedium);
  text-align: center;
}
.wp-block-acf-product-comparison .stol-data h2 {
  font-family: var(--fontMontserrat);
  font-size: var(--fontMedium);
  font-weight: var(--fontWeightRegular);
  margin: 1.5rem 0;
  text-align: center;
  text-transform: uppercase;
}
.wp-block-acf-product-comparison .stol-data .comparison-price {
  align-items: center;
  display: flex;
  font-size: var(--fontLarge);
  font-weight: var(--fontWeightMedium);
  justify-content: center;
}
.wp-block-acf-product-comparison .stol-data .comparison-price p {
  margin: 0;
}
.wp-block-acf-product-comparison .stol-data .comparison-price small {
  font-size: var(--fontXSmall);
  font-weight: var(--fontWeightRegular);
  margin-left: 1rem;
  vertical-align: middle;
}
.wp-block-acf-product-comparison .stol-data .js-stol-image {
  margin: 2rem 0;
}
.wp-block-acf-product-comparison .stol-data .js-stol-link {
  margin-bottom: 4rem;
}
.wp-block-acf-product-comparison .stol-data h3 {
  font-weight: var(--fontWeightMedium);
  font-family: var(--fontMontserrat);
  font-size: var(--fontSmall);
  margin-top: 2rem;
}
.wp-block-acf-product-comparison .stol-data .compare-list-item {
  background: #F9F5F2;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  min-height: 1rem;
  padding: 0.75rem 1rem;
}
.wp-block-acf-product-comparison .stol-data .compare-list-item:nth-child(even) {
  background: var(--white);
}
.wp-block-acf-product-comparison .stol-data .compare-list-item .label {
  font-weight: var(--fontWeightMedium);
}
.wp-block-acf-product-comparison .stol-data .compare-list-item .value {
  text-align: right;
}
@media screen and (max-width: 40rem) {
  .wp-block-acf-product-comparison {
    grid-template-columns: 1fr;
  }
}

.wp-block-table tr:nth-child(odd) {
  background-color: #fff;
  border: none;
}
.wp-block-table td, .wp-block-table th {
  height: 3rem;
  border: none;
  padding: 0 1rem;
}

/* Cookies */
#moove_gdpr_cookie_info_bar {
  background-color: rgba(102, 116, 109, 0.9) !important;
  border: none !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
  margin: auto;
  max-width: 80rem;
  padding: 0 !important;
  width: calc(100% - 4rem) !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
  justify-content: center;
  padding: 2rem 0 !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-cookie-notice {
  padding: 0 !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-cookie-notice p {
  font-size: var(--fontXSmall) !important;
  line-height: var(--lineHeightLarge) !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-cookie-notice a {
  color: var(--white) !important;
  font-size: var(--fontXSmall) !important;
  font-weight: var(--fontWeightMedium) !important;
  text-decoration: none !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-cookie-notice a:hover {
  color: inherit !important;
  opacity: 0.7;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder {
  gap: 1rem;
  margin-left: 3rem;
  padding: 0 !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder button {
  align-items: center;
  background-color: transparent !important;
  border: 1.5px solid var(--white) !important;
  border-radius: 100vw !important;
  box-shadow: unset !important;
  color: var(--white) !important;
  display: inline-flex !important;
  font-size: var(--fontXSmall) !important;
  font-weight: var(--fontWeightRegular) !important;
  height: calc(2.75rem - 3px);
  justify-content: center;
  letter-spacing: 0.125rem !important;
  line-height: unset !important;
  margin: 0 !important;
  opacity: 1 !important;
  padding: 0 1.5rem !important;
  text-transform: uppercase !important;
  transition: all 0.25s !important;
  width: fit-content;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder button:hover {
  background-color: var(--white) !important;
  color: var(--black) !important;
  opacity: 0.7 !important;
}
@media screen and (max-width: 768px) {
  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder {
    margin: 2rem 0 0;
  }
}
@media screen and (max-width: 440px) {
  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
    width: calc(100% - 2rem) !important;
  }
}/*# sourceMappingURL=style.css.map */

.saleend{
  padding: 7px 1rem;
  height: 32px;
  background-color: #fede38;
  color: #000;
  /* color: white; */
  font-weight: 600;
  min-width: 140px;
  width: fit-content;

  display: flex;
  justify-content: center;
  box-sizing: border-box;

  line-height: 1;
  align-items: center;
}
.saleend:empty{
  display: none;
}
.wp-block-woocommerce-related-products .saleend, .tax-product_cat .saleend, .wc-block-grid .saleend{
  position: absolute;
  right: 0;
  font-size: 0.75rem;
  min-width: 128px;
}

.xoo-wsc-ft-btn-checkout .woocommerce-Price-amount{
  display: none;
}

.xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn:not(:last-child){
  background: transparent;
  border: 1px solid #66746d;
  color: #66746d;
  box-sizing: border-box;
}
.xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn:not(:last-child):hover{
  background: #66746d;
  border: none;
  color: white;
}

.wc-block-grid__product-add-to-cart > .wc-forward{
	display:none!important;
}

.btn-outline{
  background-color: transparent!important;
  border: 1px solid var(--forrestGreen);
  color: var(--forrestGreen) !important;
  box-sizing: border-box;
  align-items: center;
  border-radius: 100rem;
  display: flex;
  font-size: var(--fontXSmall) !important;
  font-weight: var(--fontWeightRegular);
  height: 2.75rem;
  letter-spacing: 0.125rem;
  padding: 0 1.5rem !important;
  text-transform: uppercase;
  transition: all 0.25s;
  width:max-content;
}
.btn-outline:hover{
  background: var(--forrestGreen) !important;
  color: white !important;
}

.button-on-bottom{
  bottom: 0;
  gap: 1rem;
  left: 50%;
  margin: 0;
  position: absolute;
  transform: translate(-50%, 0);
  width: -moz-max-content;
  width: max-content;
}

.wc-block-components-product-image img[alt=""]{
  border:none!important;
}


.hyr-knapp-php {
    display: inline-block;
    padding: 1em 2em;
    background-color: #111;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 1.5em;
}
.hyr-knapp-php:hover {
    background-color: #000;
}

body.product-type-variable-subscription .wp-block-add-to-cart-form {
    display: none !important;
}



.wc-block-components-form .wc-block-components-text-input input:-webkit-autofill, .wc-block-components-form .wc-block-components-text-input.is-active input[type=email], .wc-block-components-form .wc-block-components-text-input.is-active input[type=number], .wc-block-components-form .wc-block-components-text-input.is-active input[type=password], .wc-block-components-form .wc-block-components-text-input.is-active input[type=tel], .wc-block-components-form .wc-block-components-text-input.is-active input[type=text], .wc-block-components-form .wc-block-components-text-input.is-active input[type=url], .wc-block-components-text-input input:-webkit-autofill, .wc-block-components-text-input.is-active input[type=email], .wc-block-components-text-input.is-active input[type=number], .wc-block-components-text-input.is-active input[type=password], .wc-block-components-text-input.is-active input[type=tel], .wc-block-components-text-input.is-active input[type=text], .wc-block-components-text-input.is-active input[type=url] {
    padding: 1.5em .5em .5em !important;
}

.wc-block-components-form .wc-block-components-text-input input[type=email], .wc-block-components-form .wc-block-components-text-input input[type=number], .wc-block-components-form .wc-block-components-text-input input[type=password], .wc-block-components-form .wc-block-components-text-input input[type=tel], .wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-form .wc-block-components-text-input input[type=url], .wc-block-components-text-input input[type=email], .wc-block-components-text-input input[type=number], .wc-block-components-text-input input[type=password], .wc-block-components-text-input input[type=tel], .wc-block-components-text-input input[type=text], .wc-block-components-text-input input[type=url] {
    height: 50px !important;
}

.wc-blocks-components-select .wc-blocks-components-select__select {
    padding: 1em .5em 0 !important
}

.wc-block-components-radio-control__option {
    width: auto
}

#rb-ga-widget #rb-ga-ct-area input::after {
    background: black !important
}



#payment .wc_payment_method label {
    display: inline;
}


.page-id-4547 #input_1_13,
.page-id-4547 #input_1_12,
.page-id-4547 #input_1_14 {
    font-size: 18px !important;
    font-weight: 500;
}

.page-id-4547 .gform_wrapper {
	max-width: 700px;
	margin: auto;
}


.page-id-4547 .gform_wrapper .gform_footer input.gform_button {
	align-items: center !important;
    background-color: #66746d !important;
    border-radius: 100rem !important;
    color: var(--white) !important;
    font-family: var(--fontMontserrat) !important;
    font-size: var(--fontXSmall) !important;
    font-weight: var(--fontWeightRegular) !important;
    height: 2.75rem !important;
    letter-spacing: 0.125rem !important;
    padding: 0 1.5rem !important;
    text-transform: uppercase !important;
}


@media (max-width: 1000px) {
.page-id-10 .woocommerce form .form-row .input-checkbox {
    width: 28px !important;
    height: 28px !important;
    border-radius: 30px !important;
	margin: 10px !important;
	background-color: black;
	appearance: auto !important;
  -webkit-appearance: checkbox !important;

}
.page-id-10 form input[type=checkbox]:checked::after {font-size: 12px;}
}



.woocommerce form .form-row .input-checkbox {
    display: inline-block !important;
}

.products-block-post-template li .wc-block-components-product-image__inner-container .wc-block-components-product-sale-badge.alignright.wc-block-components-product-sale-badge--align-right,
.wp-block-woocommerce-related-products .wp-block-woocommerce-product-image .wc-block-components-product-sale-badge.alignright.wc-block-components-product-sale-badge--align-right {
   align-items: center;
    background-color: var(--forrestGreen);
    border: none;
    border-radius: 0.125rem;
    color: var(--white);
    display: flex;
    font-size: 0.75rem;
     left: 0;
    letter-spacing: 0.085rem;
    margin: 0;
    padding: 0 1rem;
    right: 0;
    top: 0;
    width: fit-content;
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    padding: 0.5rem;
}



.checkout #billing_state_field {
    display: none !important;
}

/* Snabblänkar över priset */
.inspot-product-anchorbar {
  display: flex;
  flex-wrap: wrap;          /* En rad om plats finns, annars radbrytning */
  gap: 0.5rem 1rem;         /* Luft mellan länkarna */
  align-items: center;
  padding: 0.5rem 0;        /* Lite vertikal luft runt */
  margin: 0.25rem 0 1.5rem; /* Avstånd till omkringliggande element */
  border-block-end: 1px solid #eee; /* Diskret linje under (valfritt) */
}

.inspot-product-anchorbar .inspot-anchor {
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  padding: 0.25rem 0.25rem; /* Klickyta */
  border-radius: 4px;
}

.inspot-product-anchorbar .inspot-anchor:hover,
.inspot-product-anchorbar .inspot-anchor:focus {
  text-decoration: underline;
  outline: none;
}

/* Om ni har sticky header, så hamnar ankar-targets inte under den */
#produktinformation,
#produktspecifikation,
#video {
  scroll-margin-top: 80px;  /* Justera efter headerhöjd */
}


/*Julerbjudandesida*/
.julerbj-wrap .wp-block-column {
	display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: start;
}

.julerbj-wrap .wp-block-column .wp-block-buttons {
	margin-top: auto;
	padding-top: 20px;
}


/*Countdown snippet*/
.countdown-timer {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.countdown-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
}


.dintero-checkout-one-selected #rb-ga-widget{display:none;}

.dintero-checkout-select-other-wrapper .checkout-button.button {
background-color: #ffde38;
padding: 8px;
border-radius: 4px;
color: #171717;
}


@media (max-width: 1222px) and (min-width: 960px) {
	.jubileumsrub {
		min-height: 49px;
	}
}



/* Define the pulse animation */
@keyframes subtlePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); } /* Scale up by 8% */
  100% { transform: scale(1); }
}

/* Target the specific menu item link */
li.menu-pulse a {
  display: inline-block !important; /* Required for transform to work */
  animation: subtlePulse 2s infinite ease-in-out !important;
  transform-origin: center;
  will-change: transform; /* Optimizes browser rendering */
  backface-visibility: hidden; /* Prevents text flickering */
}

/* Optional: Pause animation on hover */
li.menu-pulse a:hover {
  animation-play-state: paused;
}

/* .poci-acf-info {
    font-size: 20px !important;
	font-weight: 500 !important;
} */

.button-on-bottom {
    margin: 0 !important;
    padding: 0 !important;
}

.wp-block-post-title {
    margin-bottom: 0 !important;
}