/*
    Theme Name:   Pålsson
    Theme URI:    http://supertusch.dk/theme/paalsson/
    Description:  Basically Bootstrap 5 Child Theme created for Pålsson 
    Author:       Supertusch
    Author URI:   http://supertusch.dk
    Template:     basically-bootstrap-5
    Version:      1.0.0
    Domain Path: /languages/
    Text Domain:  paalsson
*/

/* ---------------------------------- */
/*         BOOTSTRAP OVERRIDES        */
/* ---------------------------------- */

/* ---------------------------------- */
/*           CONTAINERS               */
/* ---------------------------------- */

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.container-xxxl {
  width: 100%;
  max-width: none;

  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Larger desktop */

@media (min-width: 1400px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1600px;

    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Very large desktop */

@media (min-width: 1680px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl,
  .container-xxxl {
    max-width: 1600px;
  }
}
@media screen and (max-width: 992px) {
  .archive .container > .row {
    flex-direction: column-reverse;
  }
}

.content-block .row {
  row-gap: 40px;
}
/* ---------------------------------- */
/*             VARIABLES              */
/* ---------------------------------- */

/* === COLORS === */

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #8c8d91;
  --color-beige: #d6d0ba;
}

/* === FONT  === */

:root {
  /** Font family **/
  --font-family: "Nunito Sans", Arial, sans-serif;

  /* Font sizes */
  --font-h1-large: clamp(2.25rem, 4vw, 3rem); /* 36 → 48 */
  --font-h1: clamp(1.75rem, 3vw, 2rem); /* 28 → 32 */
  --font-h2: clamp(1.5rem, 2.5vw, 1.75rem); /* 24 → 28 */
  --font-h3: clamp(1.25rem, 2vw, 1.375rem); /* 20 → 22 */
  --font-h4: clamp(1.125rem, 1.8vw, 1.25rem); /* 18 → 20 */

  /*--font-p-large: clamp(1rem, 1.6vw, 1.125rem); */ /* 16 → 18 */
  /* --font-p: clamp(0.9375rem, 1.4vw, 1rem);*/ /* 15 → 16 */
  /* --font-p-small: clamp(0.8125rem, 1.2vw, 0.875rem);*/ /* 13 → 14 */

  --font-p-large: 18px;
  --font-p: 16px;
  --font-p-small: 14px;

  /* Font weights */
  --font-regular: 400;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Letter spacing */
  --letter-spacing: 4%;
  --letter-spacing-sm: 2%;
}

/* ---------------------------------- */
/*             FONT                   */
/* ---------------------------------- */

body {
  font-family: var(--font-family);
  color: var(--color-black);
}

h1,
h2,
h3,
h4,
h5 {
  letter-spacing: var(--letter-spacing);
}

h1 {
  font-size: var(--font-h1);
  font-weight: var(--font-semibold);
}

h1.hero__heading {
  font-size: var(--font-h1-large);
  font-weight: var(--font-bold);
}

@media (max-width: 768px) {
  .hero__heading br {
    display: none;
  }
}

h2 {
  font-size: var(--font-h2);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
}

h3 {
  font-size: var(--font-h3);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
}

h4 {
  font-size: var(--font-h4);
  font-weight: var(--font-semibold);
}

p {
  /* font-size: var(--font-p-large); */
  font-size: var(--font-p);
}

/* strong {
  font-weight: var(--font-semibold);
} */

a {
  text-decoration: none;
  color: var(--color-black);
}

a:hover {
  /* text-decoration: underline; */
  color: var(--color-black);
}

p a {
  font-weight: var(--font-semibold);
  text-decoration: underline;
}

/* a.link {
  display: inline-block;
  font-weight: var(--font-semibold);
  font-size: var(--font-p-large);
} */

/* ---------------------------------- */
/*              LINK                  */
/* ---------------------------------- */

.link,
.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;

  color: inherit;
  text-decoration: none;
}

.hero__link {
  align-items: flex-start;
}

/* === TEXT === */

.link {
  font-weight: var(--font-semibold);
  font-size: var(--font-p-large);
}

.hero__link {
  font-size: var(--font-h3);
  text-transform: uppercase;

  transition: font-weight 0.25s ease;
}

/* === ACTIVE HERO LINK === */

.hero__link.is-active {
  font-weight: var(--font-semibold);
  pointer-events: none;
  cursor: default;
}

/* === ICON === */

.link__icon,
.hero__link-icon {
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.link__icon svg,
.hero__link-icon svg {
  width: 3rem;
  height: auto;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.link__icon svg {
  width: 2rem;
}

/* === LINK HOVER === */

.link:hover .link__icon,
.link:focus-visible .link__icon,
.hero__link:hover .hero__link-icon,
.hero__link:focus-visible .hero__link-icon,
.hero__link.is-active .hero__link-icon {
  transform: translateX(0.5rem);
}

/* === HERO LINK HOVER === */

.hero__link:hover,
.hero__link.is-active {
  font-weight: var(--font-bold);
}

.link:hover {
  text-decoration: none;
}

/* ---------------------------------- */
/*            NAVIGATION              */
/* ---------------------------------- */

nav.navbar a.nav-link {
  letter-spacing: var(--letter-spacing-sm);
}

nav.navbar a.nav-link:hover {
  font-weight: var(--font-semibold);
  text-decoration: none;
}

nav.navbar a.nav-link.active,
li.current-page-ancestor > a.nav-link {
  font-weight: var(--font-bold);
}

@media (max-width: 991.98px) {
  .menu-toggle {
    width: 34px;
    height: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    position: relative;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  #menu-hovedmenu {
    background-color: white;
    text-align: center;
  }

  .menu-toggle:focus {
    outline: 0;
    box-shadow: none;
  }

  #main-header a {
    color: var(--color-black) !important;
  }

  body.no-hero .menu-toggle span {
    background-color: var(--color-black) !important;
  }

  .menu-toggle span {
    display: block;
    width: 34px;
    height: 2px;
    background-color: white;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  #main-header.scrolled .menu-toggle span {
    background-color: var(--color-black);
  }

  .menu-toggle:not(.collapsed) span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle:not(.collapsed) span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:not(.collapsed) span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }

  #main-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    padding: 95px 0px 0px;
  }

  body.logged-in #main-menu {
    padding-top: 127px;
  }

  #main-menu.collapsing {
    position: fixed;
    inset: 0;
    height: 100vh !important;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  #main-menu.collapse:not(.show) {
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
  }

  #main-menu.collapse.show {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  #main-menu {
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }
}

/* ---------------------------------- */
/*           ANCHOR MENU              */
/* ---------------------------------- */

.anchor-menu {
  position: sticky;
  top: 95px;
  padding: 16px 0px;
  background-color: var(--color-white);
  z-index: 5;
}

body.logged-in .anchor-menu {
  top: 127px;
}

.anchor-menu__list {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.anchor-menu__item {
  text-transform: uppercase;
  font-size: var(--font-p);
}

.anchor-menu__link.is-active {
  font-weight: var(--font-bold);
}

.single-projekt #menu-item-138 {
  font-weight: var(--font-bold);
}

@media screen and (min-width: 576px) {
  .anchor-menu__item {
    font-size: var(--font-p-large);
  }
}

/* ---------------------------------- */
/*             GENERAL                */
/* ---------------------------------- */

html {
  scroll-behavior: smooth;
}

.content-block {
  padding: 200px 0px;
  scroll-margin-top: 190px; /* must match JS offset */
}

.content-block + .content-block {
  padding-top: 0;
}

.side-column {
  position: sticky;
  top: 140px;
  background-color: var(--side-column-bg, var(--color-beige));
  padding: 28px;
}

.side-column__employees {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.side-column h3.side-column__heading {
  font-size: var(--font-h4);
  font-weight: var(--font-semibold);
  margin-bottom: 24px;
}

.side-column p:last-of-type {
  margin-bottom: 0;
}
/* ---------------------------------- */
/*             CARDS                  */
/* ---------------------------------- */

/* === EMPLOYEE / MEDARBEJDER === */

.employee-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.employee-card img {
  width: 100%;
}

.employee-card h3 {
  /* font-size: var(--font-p-large); */
  font-size: var(--font-p);
  font-weight: var(--font-semibold);
  margin-bottom: 0px;
}

.employee-card div,
.employee-card p {
  font-size: var(--font-p);
  margin: 0;
}

.employee-card .employee-card__title {
  font-weight: var(--font-semibold);
}

.employee-card .employee-card__content {
  display: flex;
  flex-direction: column;
}
/* ---------------------------------- */
/*         HEADER / NAV               */
/* ---------------------------------- */

#main-header {
  position: fixed;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: background 0.4s ease;
}

#main-header a {
  color: white;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

#main-header svg path {
  transition: fill 0.4s ease;
}

#main-header.scrolled,
body.no-hero #main-header {
  background: #ffffff;
}

#main-header.scrolled svg path,
body.no-hero #main-header svg path {
  fill: var(--color-black);
}

#main-header.scrolled a,
body.no-hero #main-header a {
  color: var(--color-black);
}

header#main-header svg {
  /* max-width: 140px; */
  max-width: 124px;
}

body.no-hero main {
  margin-top: 120px;
}

/* ---------------------------------- */
/*             HERO                   */
/* ---------------------------------- */

.hero {
  position: relative;
  height: 100vh;
  max-height: 815px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 4rem 2rem;
}

/* === MEDIA === */

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === HERO IMAGE STATES === */

.hero__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero__image.is-active {
  opacity: 1;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-template-page-contact .hero,
.page-template-page-projects .hero {
  margin-bottom: 80px;
}

/* === OVERLAY === */

.hero__overlay {
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* === CONTENT === */

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero__content h1 {
  margin: 0;
  max-width: 900px;
}

/* === LINKS WRAPPER === */

.hero__links {
  position: absolute;
  left: 0;
  bottom: 4rem;
  width: 100%;
  z-index: 2;
}

.hero__links-inner {
  /* display: grid;
  align-items: start;
  row-gap: 0.8rem; */
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

@media screen and (min-width: 992px) {
  .hero__links-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  a.hero__link {
    justify-content: flex-start;
  }
}

/* === LINKS === */

.hero__links a {
  color: white;
  text-decoration: none;
  /* font-size: var(--font-h4); */
  text-transform: uppercase;
  font-size: var(--font-h4);
}

@media screen and (max-width: 1200px) {
  .hero__links a {
    font-size: 16px;
  }
}

.hero__link {
  display: inline-flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: space-between;

  color: inherit;
  text-decoration: none;

  transition: font-weight 0.25s ease;
}

/* === ACTIVE LINK === */

.hero__link.is-active {
  font-weight: var(--font-semibold);
  pointer-events: none;
  cursor: default;
}

/* === ICON === */

.hero__link-icon {
  display: flex;
  align-items: center;

  transition: transform 0.25s ease;
}

.hero__link-icon svg {
  width: 3rem;
  height: auto;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* === HOVER / ACTIVE STATES === */

.hero__link:hover,
.hero__link.is-active {
  font-weight: var(--font-bold);
}

.hero__link:hover .hero__link-icon,
.hero__link:focus-visible .hero__link-icon,
.hero__link.is-active .hero__link-icon {
  transform: translateX(0.5rem);
}

/* ---------------------------------- */
/*   SINGLE PROJEKT / PROJECT         */
/* ---------------------------------- */

article {
  padding: 0;
}
article h1 {
  text-transform: uppercase;
  font-size: var(--font-h2);
  letter-spacing: var(--letter-spacing-sm);
}

.project-hero {
  margin-bottom: 80px;
}

.project-hero img {
  width: 100%;
  height: auto;
  max-height: 660px;
  object-fit: cover;
  object-position: center;
}

/* ---------------------------------- */
/*         PROJECT HERO SLIDER        */
/* ---------------------------------- */

.project-hero {
  position: relative;
}

.project-hero__slider {
  position: relative;
}

.project-hero__slider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;

  width: 4rem;
  height: 4rem;

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

  padding: 0;
  border: 0;
  background: transparent;

  transform: translateY(-50%);
  cursor: pointer;
}

/* PREV */

.project-hero__slider .slick-prev {
  left: 2rem;
  transform: translateY(-50%) rotate(180deg);
}

/* NEXT */

.project-hero__slider .slick-next {
  right: 2rem;
}

/* ICON */

.project-hero__slider .slick-arrow svg {
  width: 3rem;
  height: auto;

  fill: none;
  stroke: white;
  stroke-width: 2;

  transition: transform 0.25s ease;
}

/* HOVER */

.project-hero__slider .slick-prev:hover svg {
  transform: translateX(0.5rem);
}

.project-hero__slider .slick-next:hover svg {
  transform: translateX(0.5rem);
}

.project-hero__slider .slick-arrow::before {
  display: none;
}

/* ---------------------------------- */
/*             BLOCKS                   */
/* ---------------------------------- */

.content-blocks .content-block:first-child {
  padding-top: 80px;
}

.content-block p:last-of-type {
  margin-bottom: 0;
}

/* === TEKSTINDHOLD / TEXT CONTENT === */

.content-block--tekstindhold .link {
  margin-top: 60px;
}

.content-block--tekstindhold h2 {
  margin-bottom: 24px;
}

/* === BILLEDE & TEKST / IMAGE & TEXT === */

.content-block--billede_og_tekst h2 {
  letter-spacing: var(--letter-spacing);
  margin-bottom: 24px;
}

.content-block--billede_og_tekst a.link {
  margin-top: 24px;
}
/* === FULDBREDDEN BILLEDE / FULL WIDTH IMAGE === */

.content-block--fuldbredde_billede img {
  width: 100%;
  height: auto;
}

/* === CITAT / QUOTE === */

.citat__author {
  display: flex;
  flex-direction: column;
}

.citat__author .citat__name {
  font-size: var(--font-p-large);
  font-weight: var(--font-semibold);
}

.citat__author .citat__title {
  font-size: var(--font-p);
  font-weight: var(--font-regular);
}

.citat__version-centered blockquote {
  font-size: var(--font-h1-large);
  font-weight: var(--font-extrabold);
}

.citat__version-image blockquote {
  font-size: var(--font-h2);
  font-weight: var(--font-regular);
  font-style: italic;
}

/* === UDVALGTE PROJEKTER / FEATUED PROJECTS === */

.project-card img {
  transition: opacity 0.4s ease;
}

.project-card:hover img {
  opacity: 0.6;
}

/* .udvalgte-projekter__heading {
  margin-bottom: 3rem;
} */

.project-card__image img {
  width: 100%;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content-block--udvalgte_projekter a:hover {
  text-decoration: none;
}

/* === SLIDER === */

.block-slider {
  position: relative;
  padding: 60px 100px;
  overflow: hidden;
}

.block-slider--white {
  background-color: var(--color-white);
}

.block-slider--gray {
  background-color: #efeae6;
}

.block-slider__heading {
  margin-bottom: 32px;
}

.block-slider__slider {
  position: static;
}

.block-slider .slick-list {
  overflow: hidden;
}

.block-slider__slide {
  padding: 0;
}

.block-slider__slide-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 72px;
  align-items: center;
}

.block-slider__image {
  width: 100%;
}

.block-slider__image img {
  width: 100%;
  height: auto;
  display: block;
}

.block-slider__content {
  max-width: 420px;
}

.block-slider__title {
  margin-bottom: 16px;
}

.block-slider__text p {
  font-size: var(--font-p);
}

.block-slider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;

  width: 3rem;
  height: 3rem;

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

  padding: 0;
  border: 0;
  background: transparent;

  cursor: pointer;
}

/* LEFT */

.block-slider .slick-prev {
  left: 30px;
  transform: translateY(-50%) rotate(180deg);
}

/* RIGHT */

.block-slider .slick-next {
  right: 30px;
  transform: translateY(-50%);
}

/* ICON */

.block-slider .slick-arrow svg {
  width: 2.5rem;
  height: auto;

  fill: none;
  stroke: var(--color-black);
  stroke-width: 2;

  transition: transform 0.25s ease;
}

.block-slider__image {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
}

.block-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HOVER */

.block-slider .slick-prev:hover svg {
  transform: translateX(0.4rem);
}

.block-slider .slick-next:hover svg {
  transform: translateX(0.4rem);
}

/* REMOVE DEFAULT SLICK ICON */

.block-slider .slick-arrow::before {
  display: none;
}

@media (max-width: 768px) {
  header#main-header svg {
    max-width: 100px;
  }

  .block-slider {
    padding: 80px 20px 24px;
  }

  .block-slider__slide-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .block-slider__content {
    max-width: none;
  }

  .block-slider .slick-arrow {
    top: 20px;
    width: 2.5rem;
    height: 2.5rem;
  }

  .block-slider .slick-prev {
    left: 20px;
    transform: rotate(180deg);
  }

  .block-slider .slick-next {
    right: 20px;
    transform: none;
  }

  .block-slider .slick-arrow svg {
    width: 2rem;
  }
}

/* === BILLEDER MED LINK / IMAGES WITH LINK === */

.link-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(204px, 1fr));
  grid-gap: 24px;
}

@media (max-width: 767px) {
  .link-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1366px) {
  .link-images {
    grid-template-columns: repeat(6, 1fr);
  }
}

.link-images img {
  width: 100%;
  transition: opacity 0.4s ease;
}

.link-images a:hover img {
  opacity: 0.6;
}

/* ---------------------------------- */
/*            ARCHIVE                 */
/* ---------------------------------- */

.archive {
  display: flex;
  flex-direction: column;
  row-gap: 72px;
}

.archive-header h1 {
  text-transform: uppercase;
  font-size: var(--font-h4);
  color: var(--color-gray);
}

.archive-header p {
  font-size: var(--font-p);
  color: var(--color-gray);
}

.search-filter-results {
  margin-bottom: 200px;
}

.archive-results a:hover {
  text-decoration: none;
}

.archive-results .row {
  row-gap: 60px;
}

.archive-results {
  margin-bottom: 40px;
}

.archive-results.archive-results--empty {
  margin-bottom: 0px;
}

@media screen and (min-width: 992px) {
  .archive-header {
    margin-top: 69px;
    max-width: 80%;
  }
}

/* ---------------------------------- */
/*               FOOTER               */
/* ---------------------------------- */

.footer-wrapper {
  display: grid;
  border-top: 1px solid var(--color-gray);
  padding: 40px 0px;
  row-gap: 24px;
}

.footer-column {
  flex: 1;
}

.footer-column p,
.footer-column a {
  color: var(--color-gray);
  text-transform: uppercase;
  margin: 0;
  font-size: var(--font-p);
}

.footer-column a {
  font-weight: var(--font-regular);
  text-decoration: none;
}

.footer-column a:hover {
  font-weight: var(--font-semibold);
}

.footer-column.social-media {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  grid-gap: 12px;
}

/* .footer-column.social-media a {
  margin-left: auto;
  width: fit-content;
} */

.footer-column.social-media img {
  width: 22px;
  transition: opacity 0.4s ease;
}

.footer-column.social-media img:hover {
  opacity: 0.6;
}

@media screen and (min-width: 992px) {
  .footer-wrapper {
    display: flex;
  }
}

/* === FOOTER MENU === */

#menu-footermenu {
  padding: 0;
  margin: 0;
  list-style: none;
}

#menu-footermenu li a:hover {
  font-weight: var(--font-semibold);
}

/* ---------------------------------------
   SEARCH & FILTER
--------------------------------------- */

/* === RADIO FILTER === */

.searchandfilter ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.searchandfilter li {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-gray);
}

.searchandfilter .sf-input-radio {
  display: none;
}

.searchandfilter .sf-label-radio {
  cursor: pointer;
  display: inline-block;
  color: inherit;
  font-weight: 400;
  transition: all 0.2s ease;
  padding-left: 0 !important;
}

/* Active state  */
.searchandfilter .sf-option-active .sf-label-radio {
  font-weight: var(--font-semibold);
}

/* Hover */
.searchandfilter .sf-label-radio:hover {
  color: var(--color-black);
}

/* === FILTER: SEARCH === */

.searchandfilter .sf-field-search > label {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.searchandfilter .sf-field-search > label::before {
  content: "";
  width: 28px;
  height: 28px;
  flex-shrink: 0;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%23000' viewBox='0 0 256 256'%3E%3Cpath d='M229.66,218.34l-50.07-50.06a88.11,88.11,0,1,0-11.31,11.31l50.06,50.07a8,8,0,0,0,11.32-11.32ZM40,112a72,72,0,1,1,72,72A72.08,72.08,0,0,1,40,112Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.searchandfilter .sf-field-search input[type="search"],
.searchandfilter .sf-field-search input[type="text"] {
  flex: 1;
  border: none;
  border-bottom: 2px solid #999;
  background: transparent;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #000;
  outline: none;
  padding-top: 0;
}

.searchandfilter .sf-field-search input::placeholder {
  color: #999;
}

.searchandfilter .sf-field-search input:focus {
  border-bottom-color: #000;
}
