/* 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) ---------- */
.m-select.-checkedInside .m-select__label {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 300;
}

.m-select.-checkedInside .m-select__label {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 300;
}

/* ---------- xsmall fonts: 10 (1 - 11) ---------- */
/* ---------- button fonts ---------- */
.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) ---------- */
.m-select.-checkedInside .m-select__label {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 300;
}

.m-select.-checkedInside .m-select__label {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 300;
}

/* ---------- xsmall fonts: 10 (1 - 11) ---------- */
/* ---------- button fonts ---------- */
.m-select {
  position: relative;
  z-index: 2;
  isolation: isolate;
}
.m-select input[type=radio],
.m-select input[type=checkbox] {
  position: absolute;
  left: -2000px;
}
.m-select button {
  width: 100%;
  border: 1px solid #FF0027;
  border-radius: 2.5rem;
  background: none;
  position: relative;
  z-index: 0;
  padding: 1.5rem 1.875rem 1rem;
  outline: 0;
  transition: border-radius 250ms ease-out;
  display: flex;
  justify-content: space-between;
}
.m-select:has(.powermail_field_error) button {
  background: #FF7175;
}
.m-select i {
  transform: translateY(-5px);
  transition: transform 0.5s ease-out;
}
.m-select .m-select__label {
  position: absolute;
  left: 1.875rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 250ms ease-out;
}
.m-select__value {
  display: block;
  min-height: 1rem;
}
.m-select.-checkedInside .m-select__label {
  transform: translateY(-1.75rem);
}
.m-select.-open button {
  border-radius: 2.5rem 2.5rem 0 0;
}
.m-select.-open i {
  transform: rotate(90deg);
}
.m-select.-open .m-select__options {
  opacity: 1;
  max-height: 800px;
  transition: max-height 0.5s ease-out;
  transition-delay: 250ms;
}
.m-select__options {
  position: absolute;
  z-index: 1;
  top: calc(100% - 2px);
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  max-height: 0;
  overflow: clip auto;
  transition: all 0.5s ease-out;
  scrollbar-width: thin;
  scrollbar-color: #FF0027 transparent;
}
.m-select__options::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.m-select__options::-webkit-scrollbar-thumb {
  background: #FF0027;
  border-radius: 0;
}
.m-select__options::-webkit-scrollbar-track {
  background: linear-gradient(#FFF, #FFF) no-repeat center/1px 100%;
}
.m-select label {
  display: block;
  color: #FFF;
  background-color: #C5BEB9;
  border: 2px solid #C5BEB9;
  margin-bottom: 2px;
  padding: 0.75rem 1.875rem;
  transition: all 250ms ease-in-out;
  cursor: pointer;
}
.m-select label:hover {
  color: #FFF;
  background-color: #FF0027;
  border: 2px solid #FF0027;
}
.-bg-red .m-select label {
  color: #160000;
}
.-bg-red .m-select button {
  border-color: #F1EFED;
}
.-bg-sand .m-select label {
  color: #FF0027;
}
.-bg-night .m-select label {
  color: #FF0027;
}
.-bg-night .m-select button {
  color: #FF0027;
}
.-bg-glow .m-select label {
  color: #FFF;
}
.-bg-glow .m-select label:before {
  border-color: #FFF;
  color: #FFF;
}
.-bg-glow .m-select button {
  border-color: #C5BEB9;
  color: #FFF;
}

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