/* scss/settings/_breakpoints.scss */ /* scss/utilities/_functions.scss */
/*
    .cssClass {
        font-size: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(20), rem-calc(50));
        margin-bottom: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(10), rem-calc(20));
    }

*/
/* scss/utilities/_mixins.scss */ /* xsmall = 10 (1 - 11)
small = 13 - (12-14)
default = 16 (15-18)
medium = 20 (18-26)
large = 32 (26-36)
xlarge = 40 (36 <) */
/* ---------- headers ---------- */
/* ---------- medium fonts: 20 (18-26) ---------- */
/* ---------- default fonts: 16 (15-18) ---------- */
/* ---------- small fonts: 13 - (12-14) ---------- */
/* ---------- xsmall fonts: 10 (1 - 11) ---------- */
/* ---------- button fonts ---------- */
.m-filter {
  font-size: 0.8125rem;
  line-height: 1;
  font-weight: 400;
}

.frame {
  margin-bottom: 6.25rem;
}

.seoText {
  margin-top: 6.25rem;
}

.frame-space-after-none {
  margin-bottom: 0;
}

.frame-space-after-small {
  margin-bottom: 3.125rem;
}

.frame-space-after-medium {
  margin-bottom: 6.25rem;
}

.frame-space-after-large {
  margin-bottom: 9.375rem;
}

body {
  scroll-behavior: smooth;
}

.no-transitions,
.no-transitions * {
  transition: none !important;
  animation: none !important;
}

/* scss/utilities/_functions.scss */
/*
    .cssClass {
        font-size: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(20), rem-calc(50));
        margin-bottom: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(10), rem-calc(20));
    }

*/
/* scss/utilities/_mixins.scss */ /* xsmall = 10 (1 - 11)
small = 13 - (12-14)
default = 16 (15-18)
medium = 20 (18-26)
large = 32 (26-36)
xlarge = 40 (36 <) */
/* ---------- headers ---------- */
/* ---------- medium fonts: 20 (18-26) ---------- */
/* ---------- default fonts: 16 (15-18) ---------- */
/* ---------- small fonts: 13 - (12-14) ---------- */
/* ---------- xsmall fonts: 10 (1 - 11) ---------- */
/* ---------- button fonts ---------- */
.m-filter {
  font-size: 0.8125rem;
  line-height: 1;
  font-weight: 400;
}

.m-filter {
  position: relative;
  width: 15.625rem;
  cursor: pointer;
  /*

  li:has(button) label {
      padding-right: rem-calc(20);
  }

  &.-checkedInside button,
  :checked ~ label {
      color: $white;
      background-color: map-get($lc-colors, 'red-bright');
      border: 2px solid map-get($lc-colors, 'red-bright');
  }
  */
}
.m-filter__label {
  display: block;
  font-size: 1rem;
  color: #160000;
  padding-left: 0.75rem;
  margin-bottom: 0.4375rem;
}
:is(.-bg-night, .-bg-glow) .m-filter__label {
  color: #FFF;
}
.m-filter input[type=radio],
.m-filter input[type=checkbox] {
  position: absolute;
  left: -2000px;
}
.m-filter > button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem;
  border: 1.5px solid var(--color-primary);
  text-transform: uppercase;
  color: var(--color-primary);
  transition: all 250ms ease-in-out;
}
.m-filter > button:hover {
  color: #FFF;
  background-color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.m-filter label {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 2px;
  text-transform: uppercase;
  color: #FFF;
  background-color: #5F5045;
  border: 1.5px solid #5F5045;
  transition: all 250ms ease-in-out;
}
.m-filter label:hover {
  color: #FFF;
  background-color: var(--color-primary) !important;
  border: 1.5px solid var(--color-primary) !important;
}
.m-filter.-checkedInside > button,
.m-filter :checked ~ label {
  color: #FFF !important;
  background-color: var(--color-checked-label) !important;
  border: 1.5px solid var(--color-checked-label) !important;
}
.m-filter li:has(button) label {
  padding-right: 1.25rem;
}
.m-filter li li label {
  background-color: #AC917D;
  border: 1.5px solid #AC917D;
  padding-left: 1.25rem;
}
.m-filter li li li label {
  background-color: var(--color-bg-sand);
  border: 1.5px solid var(--color-bg-sand);
  padding-left: 2.5rem;
}
.m-filter:focus-visible > button, .m-filter:hover > button {
  color: #FFF;
  background-color: #5F5045;
  border: 1.5px solid #5F5045;
}
.m-filter:focus-visible .m-filter__options, .m-filter:hover .m-filter__options {
  opacity: 1;
  max-height: 500px;
  transition: max-height 0.5s ease-out;
}
.m-filter:focus-visible .m-filter__options li, .m-filter:hover .m-filter__options li {
  position: relative;
}
.m-filter:focus-visible .m-filter__options button, .m-filter:hover .m-filter__options button {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}
.m-filter:focus-visible .m-filter__options button:before, .m-filter:focus-visible .m-filter__options button:after, .m-filter:hover .m-filter__options button:before, .m-filter:hover .m-filter__options button:after {
  content: "";
  display: block;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.35s;
  width: 70%;
  height: 1px;
}
.m-filter:focus-visible .m-filter__options button:before, .m-filter:hover .m-filter__options button:before {
  transform: translate(-50%, -50%);
}
.m-filter:focus-visible .m-filter__options button:after, .m-filter:hover .m-filter__options button:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.m-filter:focus-visible .m-filter__options button.-active:after, .m-filter:hover .m-filter__options button.-active:after {
  transform: translate(-50%, -50%) rotate(0);
}
.m-filter__options {
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 2px 0 0;
  opacity: 0;
  max-height: 0;
  overflow: clip auto;
  transition: all 0.5s ease-out;
  scrollbar-width: thin;
  scrollbar-color: #AC917D transparent;
}
.m-filter__options::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.m-filter__options::-webkit-scrollbar-thumb {
  background: #AC917D;
  border-radius: 0;
}
.m-filter__options::-webkit-scrollbar-track {
  background: linear-gradient(#FFF, #FFF) no-repeat center/1px 100%;
}
.m-filter__options ul {
  position: relative;
  z-index: -1;
  margin: 0;
  padding: 0;
}
.m-filter__options ul li {
  position: relative;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-out;
}
.m-filter__options ul.-open {
  z-index: 0;
}
.m-filter__options ul.-open > li {
  max-height: 500px;
  transition: max-height 0.5s ease-out;
}
.m-filter.-noUpperCase > button {
  text-transform: none;
}
.m-filter.-noUpperCase label {
  text-transform: none;
}

/*# sourceMappingURL=filter.css.map */