/* 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 ---------- */
.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-breadcrumb {
  border: 1px solid #707070;
  border-width: 1px 0;
  display: none;
}
@media only screen and (min-width: 768px) {
  .m-breadcrumb {
    display: block;
  }
}
.m-breadcrumb nav {
  width: 100%;
  max-width: calc(102.5rem + (1.25rem * 2));
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media only screen and (min-width: 992px) {
  .m-breadcrumb nav {
    max-width: calc(102.5rem + 65px * 2);
    padding-left: 4.0625rem;
    padding-right: 4.0625rem;
  }
}
.m-breadcrumb a {
  color: #160000;
}
.m-breadcrumb.-bg-night a {
  color: #FFF;
}
.m-breadcrumb ul.level1 {
  position: relative;
  z-index: 3;
  display: flex;
  height: 4.0625rem;
  margin: 0;
  padding: 0;
}
.m-breadcrumb ul.level1 li {
  position: relative;
  display: flex;
  align-items: center;
  /*
  &:last-child:after {
      content: normal;
  }
  */
}
.m-breadcrumb ul.level1 li:after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "LC-Icons";
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90b";
  padding: 0 0.9375rem;
  transition: transform 250ms ease-in-out;
}
.m-breadcrumb ul.level1 li.-open:after {
  transform: rotate(90deg);
}
.m-breadcrumb ul.level2 {
  position: absolute;
  top: 80%;
  left: -0.75rem;
  padding: 0;
  min-width: 15.625rem;
  z-index: 3;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-out;
}
.m-breadcrumb ul.level2 li {
  display: list-item;
}
.m-breadcrumb ul.level2 li::marker, .m-breadcrumb ul.level2 li:after {
  content: normal;
}
.m-breadcrumb ul.level2 a {
  display: block;
  color: #FFF;
  background-color: #5F5045;
  border: 2px solid #5F5045;
  margin-bottom: 2px;
  padding: 0.375rem 0.75rem;
  transition: all 250ms ease-in-out;
}
.m-breadcrumb ul.level2 a.-active {
  color: #FFF;
  background-color: var(--color-bg-breadcrumb-active);
  border: 2px solid var(--color-bg-breadcrumb-active);
}
.m-breadcrumb ul.level2 a:hover {
  color: #FFF;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.m-breadcrumb .-open .level2 {
  opacity: 1;
  max-height: 800px;
  transition: max-height 0.5s ease-out;
  transition-delay: 250ms;
}

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