@charset "UTF-8";
:root {
  /* Färger */
  --black: #000;
  --red: #B00009;
  --cultured: #F4F6F9;
  --white: #fff;
  --success: #46b450;
  /* Typografi */
  --font: "Wix Madefor Text", sans-serif;
  --fontXXLarge: 4rem;
  --fontXLarge: 2.5rem;
  --fontLarge: 1.5rem;
  --fontMedium: 1.25rem;
  --fontSmall: 1rem;
  --fontRegular: 0.85rem;
  --fontXSmall: 0.75rem;
  --fontWeightBold: 700;
  --fontWeightSemiBold: 600;
  --fontWeightRegular: 400;
  --lineHeightLarge: 1.5;
  --lineHeightSmall: 1.25;
}

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

main > :not(.alignfull):not(.alignwide) {
  max-width: 80rem;
  margin: auto;
}

:where(body .is-layout-flow) > * {
  margin-block-start: 1rem;
}

.container {
  margin: auto;
  padding: 0 2rem;
}

.container-lg {
  max-width: 80rem;
}

.container-m {
  max-width: 60rem;
}

.container-s {
  max-width: 40rem;
}

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

.gap-lg {
  gap: 3rem;
}
.gap-lg .col-lg {
  flex: 0 0 calc(50% - 1.5rem);
  -ms-flex: 0 0 calc(50% - 1.5rem);
  max-width: calc(50% - 1.5rem);
}
@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% - 2rem);
  -ms-flex: 0 0 calc(33.3333333333% - 2rem);
  max-width: calc(33.3333333333% - 2rem);
}
@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% - 2.25rem);
  -ms-flex: 0 0 calc(25% - 2.25rem);
  max-width: calc(25% - 2.25rem);
}
@media screen and (max-width: 60rem) {
  .gap-lg .col-s {
    flex: 0 0 calc(50% - 1.5rem);
    -ms-flex: 0 0 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
  }
}
@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(20% - 2.4rem);
  -ms-flex: 0 0 calc(25% - 2.4rem);
  max-width: calc(25% - 2.4rem);
}
@media screen and (max-width: 60rem) {
  .gap-lg .col-xs {
    flex: 0 0 calc(50% - 1.5rem);
    -ms-flex: 0 0 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
  }
}
@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: 1.5rem;
}
.gap-s .col-lg {
  flex: 0 0 calc(50% - 0.75rem);
  -ms-flex: 0 0 calc(50% - 0.75rem);
  max-width: calc(50% - 0.75rem);
}
@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% - 1rem);
  -ms-flex: 0 0 calc(33.3333333333% - 1rem);
  max-width: calc(33.3333333333% - 1rem);
}
@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.125rem);
  -ms-flex: 0 0 calc(25% - 1.125rem);
  max-width: calc(25% - 1.125rem);
}
@media screen and (max-width: 60rem) {
  .gap-s .col-s {
    flex: 0 0 calc(50% - 0.75rem);
    -ms-flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}
@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(20% - 1.2rem);
  -ms-flex: 0 0 calc(20% - 1.2rem);
  max-width: calc(20% - 1.2rem);
}
@media screen and (max-width: 60rem) {
  .gap-s .col-xs {
    flex: 0 0 calc(50% - 0.75rem);
    -ms-flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}
@media screen and (max-width: 40rem) {
  .gap-s .col-xs {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
  }
}

.col-m {
  flex: 0 0 33.3333333333%;
  -ms-flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
@media screen and (max-width: 60rem) {
  .col-m {
    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;
  }
}

.p-5 {
  padding: 5rem;
}

.p-4 {
  padding: 4rem;
}

.p-3 {
  padding: 3rem;
}

.p-2 {
  padding: 2rem;
}

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

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

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

h3,
.text-lg {
  font-size: var(--fontLarge);
}

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

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

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

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

.extra-heading {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.extra-heading .border {
  background-color: var(--red);
  height: 2px;
  width: 4rem;
}

.extra-heading p {
  font-weight: var(--fontWeightSemiBold);
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}

/* Media */
.wp-block-image img {
  width: auto;
}

.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;
  }
}
.is-style-shadow {
  box-shadow: 0px 0px 20px rgba(14, 58, 61, 0.2);
}

.wp-block-file a:not(.wp-block-file__button) {
  display: flex;
  font-size: var(--fontXSmall);
}
@media screen and (max-width: 60rem) {
  .wp-block-file {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
}

/* Global meny */
header {
  position: relative;
  z-index: 99;
}
header.sticky {
  background-color: var(--white);
  box-shadow: 0px 0px 20px rgba(14, 58, 61, 0.2);
  position: sticky;
  top: 0;
}
header.sticky .logo-light {
  display: none !important;
}
header.sticky .logo-dark {
  display: block !important;
}
header.sticky .menu ul li a {
  color: var(--black);
}
header.sticky .menu .menu-burger-toggle .menu-burger-line {
  background-color: var(--black);
}
header.sticky .contact li .btn {
  color: var(--black);
  border-color: var(--black);
}
header.sticky .contact li .btn.btn-glass {
  background: rgb(0, 0, 0);
}
header .row {
  height: 100%;
}
header .row .logo {
  align-items: center;
  display: flex;
  height: 100%;
  position: relative;
  /* z-index: 99; */
}
header .row .logo a {
  display: flex;
}
header .row .logo a img {
  height: 1.75rem;
  opacity: 1;
  padding: 1.875rem 0;
  width: auto;
}
header .row .logo a img.logo-light {
  display: none;
}
@media screen and (max-width: 25rem) {
  header .row .logo a img {
    height: 1rem !important;
  }
}
header .row .logo a:hover {
  opacity: 1;
}
header .row.gap-lg {
  justify-content: space-between;
}
@media screen and (max-width: 60rem) {
  header .row.gap-lg {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 40rem) {
  header .row.gap-s {
    gap: 1rem;
  }
}
@media screen and (max-width: 25rem) {
  header .row.gap-s {
    gap: 0.5rem;
  }
}
header .row .menu {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  /* Hamburgermeny */
}
header .row .menu ul:not(.contact) {
  display: flex;
  justify-content: center;
  height: 100%;
  gap: 2rem;
  font-weight: var(--fontWeightSemiBold);
  margin: 0;
  padding: 0;
}
header .row .menu ul:not(.contact) li {
  align-items: center;
  display: flex;
  list-style-type: none;
  position: relative;
}
header .row .menu ul:not(.contact) li a:not(.btn) {
  align-items: center;
  display: flex;
  height: 100%;
  font-size: var(--fontRegular);
  font-weight: var(--fontWeightSemiBold);
  position: relative;
  text-decoration: none;
}
header .row .menu ul:not(.contact) li a:not(.btn):hover, header .row .menu ul:not(.contact) li a:not(.btn).hover, header .row .menu ul:not(.contact) li a:not(.btn)[aria-current=page] {
  opacity: 0.7;
}
@media screen and (max-width: 80rem) {
  header .row .menu ul:not(.contact) li a:not(.btn) {
    height: auto;
    font-size: var(--fontRegular);
    padding: 0 1.5rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}
header .row .menu ul:not(.contact) li .sub-menu {
  background-color: var(--white);
  box-shadow: 0 0px 10px 0px rgba(14, 58, 61, 0.1);
  display: none;
  height: -moz-fit-content;
  height: fit-content;
  justify-content: center;
  left: 50%;
  margin-top: -1rem;
  min-width: 15rem;
  padding: 1rem;
  position: absolute;
  top: 100%;
  transform: translate(-50%, 0);
  width: -moz-fit-content;
  width: fit-content;
  z-index: 99;
}
header .row .menu ul:not(.contact) li .sub-menu li {
  display: block;
}
header .row .menu ul:not(.contact) li .sub-menu li a {
  color: var(--black);
  font-size: var(--fontRegular);
}
@media screen and (max-width: 80rem) {
  header .row .menu ul:not(.contact) li .sub-menu {
    background-color: unset;
    border-radius: unset;
    box-shadow: unset;
    display: none !important;
    flex-direction: column;
    gap: 0.5rem 0 !important;
    left: unset;
    margin: 0 0 1rem;
    min-width: unset;
    padding: 0.5rem 0 0;
    position: relative;
    top: unset;
    transform: unset;
  }
  header .row .menu ul:not(.contact) li .sub-menu.active {
    display: flex !important;
  }
}
header .row .menu ul:not(.contact) li:hover .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
@media screen and (max-width: 80rem) {
  header .row .menu ul:not(.contact) li {
    display: block;
    width: 100%;
  }
  header .row .menu ul:not(.contact) li .toggle-link {
    background: url(images/chevron-down-regular.svg) no-repeat;
    background-size: 1rem 1rem;
    background-position: center;
    height: 1.5rem;
    position: absolute;
    right: 2rem;
    top: 0;
    width: 1rem;
  }
  header .row .menu ul:not(.contact) li .toggle-link.active {
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 80rem) {
  header .row .menu ul:not(.contact):not(.sub-menu) {
    align-items: flex-end;
    flex-direction: column;
    gap: 1rem 0;
    height: 100vh;
    justify-content: unset;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 6.5rem 0 0;
    position: absolute;
    right: -20rem;
    top: 0;
    transition: all 0.4s;
    width: 0;
  }
  header .row .menu ul:not(.contact):not(.sub-menu)::before {
    background-color: var(--white) !important;
    content: "";
    position: inherit;
    top: 0;
    width: 100%;
    height: 100%;
  }
  header .row .menu ul:not(.contact):not(.sub-menu).active {
    right: 0;
    width: 20rem;
  }
}
@media screen and (max-width: 80rem) and (max-width: 40rem) {
  header .row .menu ul:not(.contact):not(.sub-menu).active {
    width: 100vw;
  }
}
header .row .menu .menu-burger-toggle {
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  font-size: var(--fontXSmall);
  gap: 0.25rem 0;
  justify-content: center;
  z-index: 99;
}
header .row .menu .menu-burger-toggle .menu-burger {
  display: flex;
  height: 1.25rem;
  min-width: 1.5rem;
  position: relative;
  width: 100%;
}
header .row .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 .row .menu .menu-burger-toggle .menu-burger .menu-burger-line.menu-burger-line-top {
  top: 0;
}
header .row .menu .menu-burger-toggle .menu-burger .menu-burger-line.menu-burger-line-middle {
  top: 50%;
  transform: translate(0, -50%);
}
header .row .menu .menu-burger-toggle .menu-burger .menu-burger-line.menu-burger-line-bottom {
  bottom: 0;
  width: 50%;
}
header .row .menu .menu-burger-toggle.active .menu-burger-line-top {
  transform: rotate(40deg) translate3d(5.5px, 7px, 0);
}
header .row .menu .menu-burger-toggle.active .menu-burger-line-middle {
  display: none;
}
header .row .menu .menu-burger-toggle.active .menu-burger-line-bottom {
  transform: rotate(-40deg) translate3d(5.5px, -7px, 0);
  width: 100% !important;
}
@media screen and (max-width: 40rem) {
  header .row .menu .menu-burger-toggle {
    font-size: var(--fontXSmall);
  }
}
header .row .menu.active ul li a {
  color: var(--black);
}
header .row .menu.active .menu-burger-toggle .menu-burger-line {
  background-color: var(--black);
}
@media screen and (max-width: 80rem) {
  header .row .menu {
    position: unset;
    transform: unset;
  }
}
header .row .contact {
  align-items: center;
  display: flex;
  gap: 1rem;
  height: 100%;
  margin: 0;
  padding: 0;
}
header .row .contact li {
  list-style-type: none;
}
header .row .contact li .btn {
  letter-spacing: unset;
  text-transform: unset;
}
header .row .contact li .btn.btn-glass {
  background: rgb(0, 0, 0);
  color: var(--white);
	/* display: none; */
}
@media screen and (max-width: 80rem) {
  header .row .contact li .btn {
    color: var(--black);
    border-color: var(--black);
    width: calc(100% - 3.5rem);
  }
}
@media screen and (max-width: 80rem) {
  header .row .contact li {
    padding: 0 1.5rem;
    width: calc(100% - 3rem) !important;
  }
}
@media screen and (max-width: 80rem) {
  header .row .contact {
    flex-direction: column;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 80rem) {
  header .header-desktop {
    display: none;
  }
}
header .header-mobile {
  display: none;
}
@media screen and (max-width: 80rem) {
  header .header-mobile {
    display: block;
  }
}

.home header .logo-light {
  display: block !important;
}
.home header .logo-dark {
  display: none !important;
}
.home header .menu ul li a {
  color: var(--white);
}
.home header .menu .menu-burger-toggle .menu-burger-line {
  background-color: var(--white) !important;
}
.home header .menu .menu-burger-toggle.active .menu-burger-line {
  background-color: var(--black) !important;
}
.home header .contact li .btn {
  color: var(--white);
  border-color: var(--white);
}
.home header .contact li .btn.btn-glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
@media screen and (max-width: 80rem) {
  .home header .contact li .btn.btn-glass {
    background: var(--black);
  }
}
@media screen and (max-width: 80rem) {
  .home header .contact li .btn {
    color: var(--black);
    border-color: var(--black);
  }
}
.home header.sticky .logo-light {
  display: none !important;
}
.home header.sticky .logo-dark {
  display: block !important;
}
.home header.sticky .menu ul li a {
  color: var(--black);
}
.home header.sticky .menu .menu-burger-toggle .menu-burger-line {
  background-color: var(--black) !important;
}
.home header.sticky .contact li .btn {
  color: var(--black);
  border-color: var(--black);
}
.home header.sticky .contact li .btn.btn-glass {
  background: var(--black);
  color: var(--white);
}

/* Footern */
footer {
  background-color: var(--black);
  color: var(--white);
}
@media screen and (max-width: 60rem) {
  footer .row.justify-between {
    flex-direction: column-reverse;
  }
}
footer p {
  font-size: var(--fontRegular);
  margin-top: 0;
}
footer ul {
  display: flex;
  flex-direction: column;
  font-size: var(--fontXSmall);
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}
footer ul li {
  list-style-type: none;
}
footer .line {
  border: 0.0625rem solid;
}
footer .logo {
  align-items: center;
  display: flex;
  height: 100%;
}
footer .logo img {
  height: 1.5rem;
  width: auto;
}
@media screen and (max-width: 60rem) {
  footer .logo {
    justify-content: center;
    margin-bottom: 2rem;
  }
}
footer .contact {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: flex-end;
  margin: 2rem 0;
}
@media screen and (max-width: 80rem) {
  footer .contact {
    justify-content: center;
  }
}
@media screen and (max-width: 40rem) {
  footer .contact {
    align-items: center;
    flex-direction: column;
  }
  footer .contact .separate {
    display: none;
  }
	footer .cert {
		margin: auto;
	}
}
@media screen and (max-width: 40rem) {
  footer {
    text-align: center;
  }
}

.scroll-up {
  align-items: center;
  background: var(--black);
  bottom: 4rem;
  border: none;
  border-radius: 1.5rem;
  box-shadow: 0px 0px 20px rgba(14, 58, 61, 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;
}
.scroll-up::before {
  background: url(images/arrow-up-long-regular-white.svg) no-repeat;
  background-position: center;
  content: "";
  height: 1.5rem;
  width: 1rem;
}
.scroll-up:hover {
  opacity: 0.7;
}

/* Länkar och knappar */
a {
  color: inherit;
  font-weight: var(--fontWeightSemiBold);
  text-decoration: none !important;
  transition: all 0.25s;
}
a:hover {
  opacity: 0.7;
}

button:not(.scroll-up),
.btn {
  align-items: center;
  border: 0.125rem solid var(--black);
  border-radius: 100vw;
  color: var(--black);
  cursor: pointer;
  display: inline-flex;
  font-weight: var(--fontWeightSemiBold);
  font-family: var(--font);
  height: -moz-fit-content;
  height: fit-content;
  justify-content: center;
  letter-spacing: 0.125rem;
  min-height: 1.75rem;
  padding: 0.5rem 1.5rem;
  text-transform: uppercase;
  transition: all 0.25s;
  width: -moz-fit-content;
  width: fit-content;
}
button:not(.scroll-up):not(.btn),
.btn:not(.btn) {
  height: 3rem;
}
button:not(.scroll-up).btn-glass,
.btn.btn-glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: none;
  height: 2rem;
}
button:not(.scroll-up):hover,
.btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 40rem) {
  .wp-block-buttons.is-content-justification-right {
    justify-content: unset !important;
  }
}

.wp-element-button {
  align-items: center;
  border-radius: 100vw;
  display: inline-flex;
  font-weight: var(--fontWeightSemiBold);
  height: -moz-fit-content;
  height: fit-content;
  justify-content: center;
  letter-spacing: 0.125rem;
  margin-top: 1rem;
  height: 3rem;
  padding: 0.5rem 1.5rem !important;
  text-transform: uppercase;
  transition: all 0.25s;
  width: -moz-fit-content;
  width: fit-content;
}
.wp-element-button.wp-block-file__button {
  background-color: transparent;
  border: 0.125rem solid var(--black);
  color: var(--black);
  font-size: var(--fontRegular);
  height: 1rem;
  margin: 1rem 0 0;
  letter-spacing: unset;
  text-transform: unset;
}

/* Hero */
.hero {
  background-position: center;
  height: 100vh;
  margin-top: -5.5rem;
}
.hero .acf-innerblocks-container {
  height: 100%;
}
.hero .acf-innerblocks-container > .wp-block-group {
  align-items: flex-end;
  display: flex;
  height: 100%;
}
.hero .acf-innerblocks-container > .wp-block-group .wp-content-group {
  width: 100%;
}
@media screen and (max-width: 40rem) {
  .hero {
    margin-top: -8.5rem;
  }
}

.category .cta {
  color: var(--white);
  position: relative;
}
.category .cta img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}
.category .cta::before {
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.category .cta .extra-heading .border {
  background-color: var(--white);
}
.category .cta .btn {
  border-color: var(--white);
  color: var(--white);
  margin-top: 1rem;
}

.latest-posts a {
  font-weight: unset;
}

.products {
  margin-top: 0;
}
.products .wp-block-column {
  display: flex;
  flex-direction: column;
  height: 25rem;
  justify-content: flex-end;
  position: relative;
  transition: all 0.25s;
}
.products .wp-block-column::before {
  background: linear-gradient(rgba(0, 0, 0, 0.6), transparent, rgba(0, 0, 0, 0.6));
  content: "";
  height: 100%;
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.products .wp-block-column:has(a):hover::before {
  background: rgb(176, 0, 9);
}
.products .wp-block-column .wp-block-image {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.products .wp-block-column .wp-block-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.products .wp-block-column .wp-block-group {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 40rem) {
	.products .wp-block-column .wp-block-group {
		padding: 3rem 2rem !important;
	}
}
.products .wp-block-column .wp-block-group .wp-block-heading {
  margin-bottom: 0;
}
.products .wp-block-column a {
  height: 100%;
  left: 0;
  margin-top: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 40rem) {
  .products .wp-block-column {
    height: 20rem;
  }
}

.products .cta, .latest-posts .cta {
  align-items: center;
  display: flex;
  color: var(--black);
  font-weight: var(--fontWeightSemiBold);
  gap: 1rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}
.products .cta::after, .latest-posts .cta::after {
  content: "";
  background: url(images/arrow-right-long-regular.svg);
  background-position: center;
  height: 1rem;
  width: 1rem;
}

.products .cta {
  color: var(--white);
}
.products .cta::after {
  background: url(images/arrow-right-long-regular-white.svg);
}

/* FAQ */
.rank-math-block .rank-math-list {
  padding: 0;
}
.rank-math-block .rank-math-list .rank-math-list-item {
  border-bottom: 0.125rem solid var(--cultured);
  cursor: pointer;
  padding-bottom: 0.5rem;
}
.rank-math-block .rank-math-list .rank-math-list-item:first-child .rank-math-question {
  margin-top: 0;
}
.rank-math-block .rank-math-list .rank-math-list-item .rank-math-question {
  font-size: var(--fontSmall);
  font-weight: var(--fontWeightSemiBold);
  margin-bottom: 0;
  padding-right: 1.5rem;
  position: relative;
}
.rank-math-block .rank-math-list .rank-math-list-item .rank-math-question::after {
  background: url(images/plus-regular.svg) no-repeat;
  background-position: right !important;
  content: "";
  display: flex;
  height: 1rem;
  position: absolute;
  right: 0;
  transition: all 0.125s;
  top: 0.25rem;
  width: 1rem;
}
.rank-math-block .rank-math-list .rank-math-list-item .rank-math-question.active::after {
  background: url(images/minus-regular.svg) no-repeat;
}
.rank-math-block .rank-math-list .rank-math-list-item .rank-math-answer {
  display: none;
  font-size: var(--fontXSmall);
}
.rank-math-block .rank-math-list .rank-math-list-item .rank-math-answer.active {
  display: block;
}
.rank-math-block .rank-math-list .rank-math-list-item .rank-math-answer > * {
  margin: 0.5rem 0;
}

/* 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: 0.125rem solid var(--black);
  border-radius: 1.5rem;
  box-shadow: none;
  color: var(--black);
  height: 2.75rem;
  font-family: var(--font);
  font-size: var(--fontXSmall);
  font-weight: var(--fontWeightRegular);
  margin-bottom: 1rem;
  padding: 0 1.75rem;
  width: calc(100% - 3.5rem - 0.25rem);
}
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: 0.125rem solid var(--black);
  border-radius: 0.5rem;
  box-sizing: border-box;
  cursor: pointer;
  height: 1rem;
  margin: 0 0.25rem 0 0;
  padding: 0;
  position: relative;
  vertical-align: text-bottom;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1rem;
}
form input[type=checkbox]:checked, form input[type=radio]:checked,
form select[type=checkbox]:checked,
form select[type=radio]:checked {
  background-color: var(--black);
  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: calc(50% + 0.0625rem);
  position: absolute;
  top: calc(50% + 0.0625rem);
  transform: translate(-50%, -50%);
}
form input[type=submit],
form select[type=submit] {
  align-items: center;
  background-color: var(--black);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font);
  font-size: var(--fontRegular);
  font-weight: var(--fontWeightSemiBold);
  height: -moz-fit-content;
  height: fit-content;
  justify-content: center;
  letter-spacing: 0.125rem;
  margin: 2rem 0 0;
  height: 3rem;
  padding: 0.5rem 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: 0.125rem solid var(--black);
  border-radius: 1rem;
  box-shadow: none;
  font-family: var(--font);
  font-size: var(--fontXSmall);
  height: 9.75rem;
  margin-bottom: 1rem;
  padding: 1rem 1.75rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: calc(100% - 3.5rem - 0.25rem);
}
form textarea::-moz-placeholder {
  color: var(--black);
  font-family: var(--font);
  font-size: var(--fontXSmall);
}
form textarea::placeholder {
  color: var(--black);
  font-family: var(--font);
  font-size: var(--fontXSmall);
}
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 {
  color: var(--red) !important;
  font-size: var(--fontXSmall) !important;
  margin: -0.5rem 0 1rem 1rem;
}
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;
}

.gform_heading .gform_required_legend {display: none;}

.gfield_contains_required .gfield_label {
	display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

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

/* Tabell */
.wp-block-table td {
  border: unset;
  border-bottom: 1px solid var(--black);
  padding: 1rem 0;
}

/* Cookies */
#moove_gdpr_cookie_info_bar {
  background-color: rgba(0, 0, 0, 0.7) !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: 2px solid var(--white) !important;
  border-radius: 100vw !important;
  box-shadow: unset !important;
  color: var(--white) !important;
  display: inline-flex !important;
  font-size: var(--fontRegular) !important;
  font-weight: var(--fontWeightSemiBold) !important;
  justify-content: center;
  letter-spacing: 0.125rem !important;
  line-height: unset !important;
  margin: 0 !important;
  opacity: 1 !important;
  padding: 0.5rem 1.5rem !important;
  text-transform: uppercase !important;
  transition: all 0.25s !important;
  width: -moz-fit-content;
  width: fit-content;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder button:hover {
  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 */

.wp-block-file a {
  justify-content: center;
}

.sakerhetsblad-group .wp-block-columns .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  
  .wp-block-file {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .wp-block-file > :nth-last-child(2) {
    margin-bottom: 1rem;
  }

  .wp-block-file > :last-child {
    margin-top: auto;
  }
}

