/* 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-changeCountryBanner {
  width: 100%;
  max-width: calc(102.5rem + (1.25rem * 2));
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 2560px;
  transform: translateX(-50%);
  z-index: 6;
  display: none;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: #FF7175;
  font-size: 0.625rem;
  padding-top: 1.125rem;
  padding-bottom: 1rem;
  font-weight: 500;
  visibility: hidden;
  opacity: 0;
  transition: all 350ms ease-out;
}
@media only screen and (min-width: 992px) {
  .m-changeCountryBanner {
    max-width: calc(102.5rem + 65px * 2);
    padding-left: 4.0625rem;
    padding-right: 4.0625rem;
  }
}
.m-changeCountryBanner > div {
  width: 100%;
  text-align: center;
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  .m-changeCountryBanner > div {
    width: auto;
    text-align: left;
  }
}
.-show-changeCountryBanner .m-changeCountryBanner {
  display: flex;
  visibility: visible;
  opacity: 1;
  height: 12.5rem;
}
.m-changeCountryBanner::after {
  content: "";
  position: absolute;
  background: #FF7175;
  inset: 0;
  margin: 0 calc(-50vw + 50%);
  z-index: -1;
}
.m-changeCountryBanner__buttonGroup {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.m-changeCountryBanner .a-closeButton {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
}

#selectOfferedCountry {
  background: #000FF4;
  border-color: #000FF4;
  color: #FFF;
}
#selectOfferedCountry:hover {
  background: #FFF;
  border-color: #FFF;
  color: #FF0027;
}

#showNavCountry:hover {
  color: #160000;
  background: #FF0027;
}

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