/* src/framework/components/Picture/Picture.css */
picture {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
picture img {
  max-width: 100%;
  object-fit: contain;
  height: auto;
}
.hotspot-image-box {
  position: relative;
}
.hotspot-image-box .hotspot-box {
  position: absolute;
  background-color: transparent;
  height: 100%;
  width: 100%;
  top: 0rem;
  visibility: hidden;
  margin: 0;
  padding: 0;
}
.hotspot-image-box .hotspot-box.show {
  visibility: visible;
}
.hotspot-image-box .hotspot-box ul {
  list-style-type: none;
}
.hotspot-image-box .hotspot-box li {
  position: absolute;
  list-style-type: none;
}
.hotspot-image-box .hotspot {
  transition: all 250ms ease-in-out;
  transform: translateX(-1.286rem) translateY(-1.286rem);
  padding: 0;
  width: 2.571rem;
  height: 2.571rem;
  border: 0.071rem var(--sfly-border-style-solid) var(--hotspot-border-color);
  position: absolute;
  background: var(--white);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hotspot-image-box .hotspot .spot-icon {
  width: 1.143rem;
  height: 1.143rem;
}
.hotspot-image-box .hotspot .spot-icon svg path {
  fill: var(--hotspot-icon-color);
}
@media (hover: hover) {
  .hotspot-image-box .hotspot:hover {
    opacity: 0.9;
    box-shadow: 0 0 0 0.286rem var(--hotspot-hover-box-shadow-color);
    border: var(--sfly-border-thickness-thick) var(--sfly-border-style-solid) var(--hotspot-border-color);
  }
}
.hotspot-image-box .hotspot.active {
  background-color: var(--hotspot-border-color);
  border: 0.143rem var(--sfly-border-style-solid) var(--white);
}
.hotspot-image-box .hotspot.active .spot-icon svg path {
  fill: var(--white);
}
.hotspot-image-box .hotspot:focus-visible {
  outline: solid;
  outline-color: var(--brand-color-border-primary);
  outline-offset: 0.214rem;
  border: 0.143rem var(--sfly-border-style-solid) var(--hotspot-border-color);
}
.hotspot-image-box .hotspot-popup {
  background: var(--hotspot-popin-bg-color);
  visibility: hidden;
  opacity: 0;
  width: max-content;
  max-width: 17.6429rem;
  min-width: 13.7143rem;
  padding: 1.1429rem 1.4286rem 1.1429rem 1.1429rem;
  box-sizing: border-box;
  position: absolute;
  text-align: left;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out;
  z-index: 999;
  font-size: 1rem;
}
.hotspot-image-box .hotspot-popup > *:not(:last-child) {
  margin-bottom: 0.5714rem;
}
.hotspot-image-box .hotspot-popup .svg-btn-icon {
  position: absolute;
  border: none;
  background: initial;
  right: 0;
  padding: 0;
  top: 0px;
  margin: 0.5714rem;
  cursor: pointer;
}
.hotspot-image-box .hotspot-popup .svg-btn-icon svg {
  width: 0.7143rem;
  height: 0.7143rem;
}
.hotspot-image-box .hotspot-popup.section1 {
  transform: translateY(1.286rem);
}
.hotspot-image-box .hotspot-popup.section2 {
  transform: translateX(-100%) translateY(1.286rem);
}
.hotspot-image-box .hotspot-popup.section3 {
  transform: translateY(-100%) translateY(-1.286rem);
}
.hotspot-image-box .hotspot-popup.section4 {
  transform: translateX(-100%) translateY(-100%) translateY(-1.286rem);
}
.hotspot-image-box .hotspot-popup.section12 {
  transform: translateX(-50%) translateY(1.286rem);
}
.hotspot-image-box .hotspot-popup.section34 {
  transform: translateX(-50%) translateY(-100%) translateY(-1.286rem);
}
.hotspot-image-box .hotspot-popup.section13 {
  transform: translateY(-50%) translateX(1.286rem);
}
.hotspot-image-box .hotspot-popup.section24 {
  transform: translateX(-100%) translateX(-1.286rem) translateY(-50%);
}
.hotspot-image-box .hotspot-popup * {
  word-wrap: break-word;
}
.hotspot-image-box .hotspot-popup .Title {
  font-weight: var(--font-weight-bold);
  color: var(--text-color-gray);
  line-height: 1.2857rem;
}
.hotspot-image-box .hotspot-popup .Description {
  font-weight: var(--font-weight-regular);
  line-height: 1.1429rem;
  color: var(--text-color-gray);
}
.hotspot-image-box .PriceSection {
  line-height: 1.5rem;
  color: var(--text-color-fog);
}
.hotspot-image-box .PricePrefix + .OriginalPrice,
.hotspot-image-box .PricePrefix + .SalePrice {
  margin-left: 0.3571rem;
}
.hotspot-image-box .OriginalPrice + .SalePrice {
  margin-left: 0.5rem;
}
.hotspot-image-box .StrikeThru {
  text-decoration: line-through;
}
.hotspot-image-box .SalePrice {
  color: var(--brand-color-border-primary);
  font-weight: var(--font-weight-regular);
}
.hotspot-image-box .LinkArrow {
  font-weight: var(--font-weight-semibold);
  font-size: 1rem;
  text-transform: var(--sfly-font-transform-interactive);
  text-decoration: none;
  color: var(--text-color-gray);
  display: block;
}
.hotspot-image-box .LinkArrow:after {
  content: "";
  margin: 0 0 0.0714rem 0.2143rem;
  display: inline-block;
  width: 0.4286rem;
  height: 0.4286rem;
  border: var(--sfly-border-style-solid) var(--text-color-gray);
  border-width: 2px 2px 0 0;
  border-radius: var(--sfly-border-radius-small) var(--sfly-border-radius-small) 0 0;
  transform: rotate(45deg);
}
.hotspot-image-box .LinkArrow.AlignRight {
  text-align: right;
}
.hotspot-image-box .hotspot-popup .LinkSection a + a {
  margin-top: 0.5714rem;
}
.hotspot-image-box .hotspot.active + .hotspot-popup {
  visibility: visible;
  opacity: 1;
}
.hotspot-image-box li.hideForAll {
  display: none;
}
@media screen and (min-width: 993px) and (max-width: 1024px) {
  .hotspot-image-box .hotspot-box.hideOnextended {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hotspot-image-box .hotspot-popup {
    padding: 0.5714rem 1.4286rem 0.5714rem 0.5714rem;
    max-width: calc(100vw/2 - 1.1429rem);
    min-width: calc(100vw/2 - 1.1429rem);
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .hotspot-image-box .hotspot-box.hideOnmedium {
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .hotspot-image-box .hotspot-box.hideOnsmall {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .hotspot-image-box .hotspot-box.hideOnextrasmall {
    display: none;
  }
}
@media screen and (min-width: 993px) {
  .hotspot-image-box .hotspot-box li.OnlyDesktop,
  .hotspot-image-box .hotspot-box li.TabletAndDesktop,
  .hotspot-image-box .hotspot-box li.MobileAndDesktop {
    display: list-item;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .hotspot-image-box .hotspot-box li.OnlyTablet,
  .hotspot-image-box .hotspot-box li.TabletAndDesktop,
  .hotspot-image-box .hotspot-box li.MobileAndTablet {
    display: list-item;
  }
}
@media screen and (max-width: 768px) {
  .hotspot-image-box .hotspot-box li.OnlyMobile,
  .hotspot-image-box .hotspot-box li.MobileAndTablet,
  .hotspot-image-box .hotspot-box li.MobileAndDesktop {
    display: list-item;
  }
}

/* src/components/AppLink/AppLink.css */
.br-cms-layout .AppLink.button {
  display: inline-block;
  font-size: var(--button-font-size);
  font-weight: var(--button-font-weight);
  text-transform: var(--button-font-transform);
  text-align: center;
  padding: var(--button-space-padding);
  min-width: 32px;
  color: var(--button-color-text-primary);
  border-radius: var(--button-border-radius);
  box-sizing: border-box;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  line-height: var(--button-line-height);
  min-height: var(--button-height);
}
.br-cms-layout .AppLink.noHover {
  cursor: default;
}
.br-cms-layout .AppLink.button:is(:active, :focus, :hover, :link, :visited) {
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
.br-cms-layout .AppLink.button:not([tabindex="-1"]):focus,
.br-cms-layout .AppLink.button:not([disabled]):focus,
.br-cms-layout .AppLink.button:not(.disabled):focus {
  outline: var(--brand-state-focus-outline);
  box-shadow: var(--primary-button-shadow-ring);
}
.br-cms-layout .AppLink.button:not([tabindex="-1"]):focus:not(:focus-visible),
.br-cms-layout .AppLink.button:not([disabled]):focus:not(:focus-visible),
.br-cms-layout .AppLink.button:not(.disabled):focus:not(:focus-visible) {
  outline: var(--brand-state-focus-outline);
  box-shadow: none;
}
.br-cms-layout .AppLink.button:not([tabindex="-1"]):focus-visible,
.br-cms-layout .AppLink.button:not([disabled]):focus-visible,
.br-cms-layout .AppLink.button:not(.disabled):focus-visible {
  outline: var(--brand-state-focus-outline);
  box-shadow: var(--primary-button-shadow-ring);
}
.br-cms-layout .AppLink.button:not(.disabled):hover {
  filter: var(--brand-state-hover-shadow);
}
.br-cms-layout .AppLink.button.white-od:not(.disabled):hover,
.br-cms-layout .AppLink.button.black-od:not(.disabled):hover {
  box-shadow: 0 3px 3px 0 var(--black);
}
.br-cms-layout .AppLink.button:not(.disabled):active,
.br-cms-layout a.AppLink.button:not(.disabled):active {
  -webkit-filter: var(--brand-state-active-brightness);
  filter: var(--brand-state-active-brightness);
}
.br-cms-layout .AppLink.button.disabled,
.br-cms-layout .AppLink.link.disabled {
  opacity: var(--brand-state-disabled-opacity);
  pointer-events: none;
}
.br-cms-layout .AppLink.primary-button,
.br-cms-layout .AppLink.deep-carrot {
  font-weight: var(--button-font-weight) !important;
  background-color: var(--sfly-color-brand-spicy);
  border-width: 0;
}
.br-cms-layout .AppLink.secondary-button,
.br-cms-layout .AppLink.white-ow,
.br-cms-layout .AppLink.white-od {
  font-weight: var(--button-font-weight);
  color: var(--button-color-text-secondary);
  background-color: var(--button-color-background-secondary);
  border: var(--button-border-thickness) var(--button-border-style) var(--button-color-border-secondary);
}
.br-cms-layout .AppLink.link:hover {
  text-decoration: underline;
}
.br-cms-layout .AppLink.tertiary-link {
  color: var(--color-blue);
  font-weight: var(--brand-fontweight-interactive) !important;
  font-size: 14px;
  line-height: 16px;
  text-transform: none;
  text-decoration: none;
  cursor: pointer;
}
.br-cms-layout button.AppLink.tertiary-link {
  background-color: transparent;
  border: none;
  padding: 0;
  height: auto;
}
.br-cms-layout .AppLink.tertiary-link:hover {
  text-decoration: underline;
}
.br-cms-layout .AppLink.tertiary-link:active {
  text-decoration: underline;
  color: #004985;
}
.br-cms-layout .AppLink.tertiary-link.disabled {
  color: var(--color-fog);
  cursor: default;
}
.br-cms-layout .AppLink.tertiary-link.disabled:hover {
  text-decoration: none;
}
.br-cms-layout .AppLink.black-ow,
.br-cms-layout .AppLink.black-od {
  color: var(--white);
  background-color: var(--text-color-gray);
}
.br-cms-layout .AppLink.black-od {
  border: var(--button-border-thickness) var(--button-border-style) var(--sfly-color-neutrals-white);
}
.br-cms-layout .AppLink.deep-teal {
  color: var(--button-color-text-primary);
  background-color: var(--sfly-color-brand-deep-teal);
}
.br-cms-layout .AppLink.deep-blue {
  color: var(--button-color-text-primary);
  background-color: var(--sfly-color-brand-deep-blue);
}
.br-cms-layout .AppLink.dark-red {
  color: var(--button-color-text-primary);
  background-color: var(--button-bg-dark-red);
}
.br-cms-layout .AppLink.snapfish {
  color: var(--button-color-text-primary);
  background-color: var(--sfly-color-brand-snp-teal);
}
@keyframes smooth-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.br-cms-layout .promo-cta-section {
  animation: smooth-animation 0.5s ease-in;
}
.br-cms-layout .cta-applied-promo {
  color: var(--text-color);
  font-weight: var(--font-weight-bold);
  line-height: 1.5rem;
  animation: smooth-animation 0.5s ease-in;
  @media screen and (min-width:769px) {
    color: var(--text-color-mweb);
  }
}
.br-cms-layout .promo-applied-svg {
  margin-right: 10px;
  width: 10px;
  height: 10px;
  fill: var(--text-color);
  @media screen and (min-width:769px) {
    fill: var(--text-color-mweb);
  }
}
.br-cms-layout .promo-cta-waiting-status {
  color: transparent;
  line-height: 1.5rem;
}

/* src/components/SSRUniversalFooter/css/MobileAppDownload.css */
.footer-app-download.app-download-mobileOnly {
  background-color: var(--brand-highLights-bg-color);
  padding: 1.714rem;
}
.footer-app-download .footer-app-banner-content {
  display: flex;
  width: 30.5714rem;
  margin: 0 auto;
}
.footer-app-download .AppIcon,
.footer-app-download .footer-open-button {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.footer-app-download .footer-open-button {
  align-items: flex-end;
}
.footer-app-download .info {
  padding-left: 1.1429rem;
  line-height: 1.5rem;
  color: var(--text-color-fog);
  font-weight: var(--brand-fontweight-callout);
  margin: auto auto auto 0;
  flex: 1;
}
.footer-app-download .app-download-title {
  display: block;
  margin-bottom: 0.2857rem;
  color: var(--text-color-fog);
  font-weight: var(--font-weight-semibold);
}
.footer-app-download .app-download-sub-title-two {
  font-weight: var(--font-weight-regular);
}
.footer-app-download .app-download-sub-title {
  display: block;
  color: var(--text-color-fog);
  font-weight: var(--font-weight-semibold);
}
.footer-app-download img {
  width: auto;
  height: 4.7143rem;
}
@media (min-width: 769px) {
  .footer-app-download.app-download-mobileOnly {
    display: none;
  }
}
@media (max-width: 480px) {
  .footer-app-download .footer-app-banner-content {
    width: 100%;
  }
}
@media screen and (max-width: 372px) {
  .footer-app-download.app-download-mobileOnly {
    padding: 1.714rem 1.1429rem;
  }
}

/* src/components/SSRUniversalFooter/css/ThirdPartyLinks.css */
.wrapper-social {
  display: flex;
  flex-direction: row;
  padding-bottom: 2.8571rem;
  align-items: center;
  justify-content: center;
  column-gap: 2.7857rem;
  color: var(--footer-text-color);
}
.wrapper-social span.social-label {
  color: var(--footer-text-color);
}
.wrapper-offer .heading,
.wrapper-social .heading {
  margin-bottom: 0.8571rem;
  margin-top: 0rem;
  font-family: var(--font-font--md);
  font-size: 0.9286rem;
  font-weight: 600;
}
.wrapper-social .links {
  display: flex;
  column-gap: 2.5714rem;
}
.wrapper-social ul.links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wrapper-social ul.links img,
.wrapper-social ul.links svg {
  height: 1.5714rem;
  width: 1.5714rem;
}
.link .wrapper-offer {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.social-label {
  font-weight: var(--font-weight-semibold);
}
.referralOfferLinks .link .TP svg circle {
  fill: var(--sfly-color-brand-tp-teal);
}
.link {
  text-decoration: none;
}
.referralOfferLinks .link {
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  .wrapper-social {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    align-items: center;
  }
  .social-label {
    padding-bottom: 1.143rem;
  }
}

/* src/framework/components/LogosTab/LogosTab.css */
.logos-tab {
  max-width: 66.4286rem;
  box-sizing: border-box;
  border-bottom: 0.0714rem var(--sfly-border-style-solid) var(--color-fog-light);
}
.logos-tab .logo-container {
  vertical-align: middle;
  max-height: 4.5rem;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.logos-tab .logo-container li {
  cursor: pointer;
  margin-bottom: 0;
}
.logos-tab .logo-container .svg-logo svg,
.logos-tab .logo-container a picture img {
  width: 13.2143rem;
  height: 4.5rem;
  text-align: center;
  display: block;
}
.SFLY-SVG .active.old-xp span svg {
  background: var(--ignite);
}
.TP-SVG .active.old-xp span svg {
  background: var(--color-sf-light-blue);
}
.logos-tab .logo-container .brand-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 11.5rem;
  min-height: 4.5rem;
}
.logos-tab .logo-container .brand-logo span.additional-text + a .svg-logo svg,
.logos-tab .logo-container .brand-logo span.additional-text + a .svg-logo img,
.logos-tab .logo-container .brand-logo span.additional-text + a picture img {
  height: 1.8071rem;
  width: 7.8571rem;
}
.logos-tab .logo-container .brand-logo .additional-text {
  color: var(--text-color);
  font-weight: var(--brand-fontweight-callout);
  font-size: 0.8571rem;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .logos-tab .logo-container .spoonflower-SVG,
  .logos-tab:not(.newx) .logo-container .custom-logo {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .logos-tab .logo-container .brand-logo {
    min-width: 8.6429rem;
    min-height: 3.4286rem;
  }
  .logos-tab.newx .logo-container .brand-logo {
    min-height: auto;
    min-width: auto;
  }
  .logos-tab .logo-container .TP-SVG {
    min-width: 8.3571rem;
    min-height: 3.4286rem;
  }
  .logos-tab .logo-container .svg-logo svg,
  .logos-tab .logo-container .custom-logo a picture img {
    width: 10.0715rem;
    height: 3.4286rem;
    object-fit: fill;
  }
  .logos-tab.newx .logo-container .custom-logo a picture img {
    width: auto;
  }
  .logos-tab .logo-container .TP-SVG .svg-logo svg {
    width: 10.0714rem;
    height: 3.4286rem;
  }
}

/* src/components/SSRUniversalFooter/css/Brands.css */
.footer-brands-tab {
  margin: 0 auto;
  padding: 1.7143rem 1.7143rem 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.footer-brands-tab .label {
  display: block;
  padding: 0rem;
  font-weight: var(--font-weight-semibold);
  font-size: 1rem;
  color: var(--text-color-fog);
  line-height: 1.714rem;
  height: 1.714rem;
  white-space: nowrap;
}
.footer-brands-tab .logos-tab {
  border-bottom: none;
  max-width: unset;
}
.footer-brands-tab .logos-tab .logo-container .brand-logo,
.footer-brands-tab .logos-tab .logo-container .brand-logo a {
  min-width: unset;
  min-height: unset;
}
.footer-brands-tab .logos-tab .logo-container {
  max-height: none;
  column-gap: 2.857rem;
  row-gap: 1.714rem;
  justify-content: center;
  max-width: var(--FooterLogoWidth);
}
.footer-brands-tab .logos-tab .logo-container .svg-logo {
  display: flex;
}
.footer-brands-tab .logos-tab .logo-container .svg-logo svg,
.footer-brands-tab .logos-tab .logo-container .custom-logo a picture img {
  height: auto;
  width: auto;
  text-align: center;
  display: inline;
}
.footer-brands-tab .logos-tab .logo-container .custom-logo a picture img {
  max-height: 2rem;
}
.footer-brands-tab .logos-tab .logo-container .boxRightShadow {
  box-shadow: none;
}
.footer-brands-tab .hide-on-desktop {
  display: none;
}
.footer-brands-tab .hide-on-mweb {
  display: flex;
  gap: 2.857rem;
}
@media only screen and (max-width: 991px) {
  .footer-brands-tab .logos-tab .logo-container {
    max-width: var(--FooterMWebLogoWidth);
  }
  .footer-brands-tab {
    padding-bottom: 2.8571rem;
  }
  .footer-brands-tab .label {
    font-size: .8571rem;
    height: 1.286rem;
    line-height: 1.286rem;
  }
  .footer-brands-tab .logos-tab .logo-container .spoonflower-SVG,
  .footer-brands-tab .logos-tab .logo-container .custom-logo {
    display: inline;
  }
  .footer-brands-tab .logos-tab .logo-container,
  .footer-brands-tab .hide-on-mweb {
    column-gap: 1.7143rem;
  }
  .footer-brands-tab .logos-tab .logo-container .svg-logo svg,
  .footer-brands-tab .logos-tab .logo-container .custom-logo a picture img {
    max-width: var(--FooterMaxWidthMWeb) !important;
  }
}
@media only screen and (max-width: 768px) {
  .footer-brands-tab .logos-tab .logo-container {
    max-width: unset;
    padding-top: 1.1429rem;
  }
  .footer-brands-tab .hide-on-mweb {
    display: none;
  }
  .footer-brands-tab .hide-on-desktop {
    display: inline !important;
    max-width: 34.2857rem;
  }
  .footer-brands-tab .hide-on-desktop .label {
    font-size: .8571rem;
    text-align: center;
    max-height: unset;
    line-height: 1.5rem;
  }
}

/* src/framework/components/Badge/Badge.css */
.Badge {
  text-transform: var(--sfly-font-transform-lettercase);
  display: inline-block;
}
.Badge.SFLY,
.Badge.SFLY_BOLD,
.Badge.TP,
.Badge.TP_BOLD {
  color: var(--brand-color-border-primary) !important;
}
.Badge.SFLY_BOLD,
.Badge.TP_BOLD {
  font-weight: var(--font-weight-bold) !important;
}

/* src/components/SSRUniversalFooter/css/ColumnContent.css */
.ColumnContent {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.ColumnContainer {
  margin: 0 0 2.1429rem;
}
.ColumnContent li,
.ColumnContainer h2 {
  text-align: left;
  line-height: 1.5;
  margin-bottom: 0.7143rem;
  font-size: 0.9286rem;
}
.ColumnContainer h2 {
  margin: 0 0 0.8571rem;
  letter-spacing: normal;
}
.ColumnContainer h2.ColumnHeader a,
.ColumnContainer h2.ColumnHeader a:hover {
  text-decoration: none;
}
.ColumnContainer h2.ColumnHeader a,
.ColumnContainer h2.ColumnHeader span {
  font-weight: var(--font-weight-bold);
  color: var(--text-color-gray);
  text-transform: var(--sfly-font-transform-interactive);
}
.ColumnContent li a,
.ColumnContent li span {
  text-decoration: none;
  font-weight: var(--brand-fontweight-interactive);
  font-size: 0.9286rem;
  color: var(--text-color);
  display: inline-block;
  word-spacing: normal;
  letter-spacing: normal;
}
.ColumnContent li a:hover {
  text-decoration: underline !important;
  text-decoration-color: #aaa;
}
.ColumnContainer h2.ColumnHeader a::after {
  content: " >";
}
.ColumnContainer h2.ColumnHeader a:focus:after {
  display: inline;
}
.ColumnContent li.ColumnThumbItem img {
  min-width: 11.0714rem;
  max-width: 100%;
  height: 8.5714rem;
}
@media screen and (min-width: 992px) {
  .ColumnContent .ColumnItem.hideOnDesktop {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ColumnContent .ColumnItem.hide-on-mobile {
    display: none;
  }
  .ColumnContainer.hideonMobile {
    display: none;
  }
}

/* src/components/SSRUniversalFooter/css/NColumns.css */
.NColumns-Container {
  margin: 2.3571rem auto 0.8571rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.NColumns-Container.Default {
  padding: 0 1.4286rem;
}
.NColumns-Container .ColumnContent li {
  margin-bottom: 0;
  margin-top: 0.4286rem;
}
.NColumns-Container .ColumnContainer h2.ColumnHeader {
  margin-top: 0.4286rem;
  margin-bottom: 0.8571rem;
}
.NColumns-Container .ColumnContent li a,
.NColumns-Container .ColumnContent li span {
  font-weight: var(--brand-fontweight-interactive);
  font-size: 0.8571rem;
  color: var(--text-color);
}
.NColumns-Container .ColumnContainer h2.ColumnHeader a,
.NColumns-Container .ColumnContainer h2.ColumnHeader span {
  font-weight: var(--font-weight-semibold);
  font-size: 0.8571rem;
  color: var(--footer-text-color);
}
.NColumns-Links-Label {
  display: flex;
  align-items: center;
  cursor: pointer;
  outline: var(--brand-state-focus-outline);
}
.NColumns-Links-Label span.CaretDown {
  margin-left: 0.3571rem;
  margin-top: 0.1429rem;
  border-top: 5px dashed;
  border-right: 5px var(--sfly-border-style-solid) transparent;
  border-left: 5px var(--sfly-border-style-solid) transparent;
}
.NColumns-Links-Container {
  display: flex;
  position: absolute;
  width: 100%;
  margin: 2.1429rem auto 0.8571rem;
  height: auto;
  top: 0;
  flex-direction: column;
  align-items: stretch;
  border-radius: 0.4286rem;
  box-shadow: 0 0.3571rem 1.0714rem 0 rgb(0 0 0 / 8%), 0 0.1429rem 0.2857rem 0 rgb(0 0 0 / 11%);
  background-color: var(--white);
  z-index: 999;
}
.NColumns-Links-Container .Close-Links-Container {
  position: absolute;
  margin: 1rem 1rem 0 0;
  display: flex;
  align-self: flex-end;
}
.NColumns-Links-Container .Close-Links-Container span.CloseIcon {
  width: 1.1429rem;
  height: 1.1429rem;
  cursor: pointer;
  padding: 0;
}
.NColumns-Links-Container .Close-Links-Container span.CloseIcon svg {
  fill: rgb(145, 148, 151);
}
.NColumns-Links-Wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 1.4286rem;
  margin: 0.5714rem auto 0.8571rem;
}
.NColumns-Links-Wrapper .ColumnContent,
.NColumns-Links-Wrapper .ColumnContainer {
  flex-basis: 50%;
}
.NColumns-Links-Wrapper .ColumnContent li,
.NColumns-Links-Wrapper .ColumnContainer h2 {
  margin-right: 0.7143rem;
}

/* src/components/SSRUniversalFooter/css/RowContent.css */
.row-content {
  font-weight: var(--font-weight-regular);
  font-size: 0.7857rem;
  letter-spacing: 0;
  text-align: center;
  color: var(--text-color);
}
.row-content a,
.row-content a:active,
.row-content a:visited,
.row-content a:link,
.row-content span {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.7857rem;
}
.row-content a:hover {
  text-decoration: underline;
}
.row-content em {
  font-style: normal;
  margin-top: 0.7143rem;
}
@media screen and (min-width: 992px) {
  .mobile-only {
    display: none !important;
  }
  .row-content {
    padding-bottom: 0.7143rem;
  }
  .row-content span {
    display: inline-block;
  }
  .row-content span em {
    padding: 0 0.7143rem;
  }
}
@media screen and (max-width: 991px) {
  .row-content {
    padding-bottom: 1.7143rem;
  }
  .row-content,
  .row-content div.mobile-only {
    display: flex;
    flex-direction: column;
  }
  .row-content span {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }
  .row-content span em {
    padding: 0 0.3571rem;
  }
  .row-content em {
    margin-top: 0.5714rem;
  }
  .row-content em.mobile-only:first-child {
    margin-top: 0;
  }
  .desktop-only {
    display: none !important;
  }
}

/* src/components/SSRUniversalFooter/css/BrandValueProp.css */
.brandHighlights {
  max-width: 85.7143rem;
  background-color: var(--brand-highLights-bg-color);
  color: var(--text-color-fog);
  margin: 0 auto;
}
.brandHighlights .innerPadding {
  padding: 2.8572rem 1.7143rem;
}
.brandHighlights .brandHighlightsMainTitle {
  line-height: 2.8572rem;
  font-size: 2.3572rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 2.8572rem;
}
.brandHighlights.Center {
  text-align: center;
}
.brandHighlights.Left {
  text-align: left;
}
.brandHighlights.Right {
  text-align: right;
}
.brandHighlights .brandHighlightsSection {
  width: 33%;
}
.brandHighlights .desktopContent {
  display: flex;
}
.brandHighlights .desktopContent .brandHighlightsSection .brandImage {
  margin-bottom: 1.1429rem;
}
.brandHighlights .desktopContent .brandHighlightsSection .brandTitle {
  font-weight: var(--font-weight-bold);
  line-height: 2rem;
  margin-bottom: 0.5715rem;
  font-size: 1.3333rem;
}
.brandHighlights .desktopContent .brandHighlightsSection .brandDescription {
  font-weight: var(--font-weight-regular);
  line-height: 1.5rem;
  font-size: 1rem;
}
.brandHighlights .desktopContent .brandHighlightsSection .brandImage > Picture {
  max-width: 100%;
}
.brandHighlights .desktopContent .brandHighlightsSection .brandImage > Picture > img {
  max-width: 7.143rem;
  min-width: 1.5714rem;
  min-height: 1.5714rem;
  max-height: 7.143rem;
}
.brandHighlights .desktopContent > div:first-child {
  padding-right: 1.7143rem;
  border-right: 1px var(--sfly-border-style-solid) var(--border-color-fog-medium);
}
.brandHighlights .desktopContent > div:nth-child(2) {
  padding: 0 1.7143rem;
  border-right: 1px var(--sfly-border-style-solid) var(--border-color-fog-medium);
}
.brandHighlights .desktopContent > div:last-child {
  margin-left: 1.7143rem;
}
.brandHighlights .brandDescription.m-web {
  display: none;
}
@media screen and (max-width: 768px) {
  .brandHighlights {
    max-width: 34.2858rem;
  }
  .brandHighlights .brandHighlightsMainTitle {
    margin-bottom: 1.7143rem;
  }
  .brandHighlights .brandHighlightsSection {
    width: 100%;
  }
  .brandHighlights .brandDescription.desktop {
    display: none;
  }
  .brandHighlights .desktopContent {
    display: block;
  }
  .brandHighlights .brandDescription.m-web {
    display: unset;
  }
  .brandHighlights .desktopContent > div:first-child {
    padding-right: 0;
    padding-bottom: 2.8572rem;
    border-bottom: 1px var(--sfly-border-style-solid) var(--border-color-fog-medium);
    border-right: 0;
  }
  .brandHighlights .desktopContent > div:nth-child(2) {
    padding: 2.8572rem 0;
    border-bottom: 1px var(--sfly-border-style-solid) var(--border-color-fog-medium);
    border-right: 0;
  }
  .brandHighlights .desktopContent > div:last-child {
    padding-top: 2.8572rem;
    margin-left: 0;
  }
}

/* src/framework/components/BacktoTop/BacktoTop.css */
@media (max-width:991px) {
  .BackToTop {
    display: none !important;
  }
}
.BackToTop {
  display: none;
  position: fixed;
  bottom: 7.1429rem;
  right: 0.8571rem;
  width: 6.1429rem;
  z-index: 999;
  cursor: pointer;
  border: 0.0714rem var(--sfly-border-style-solid) var(--color-fog-light);
  border-radius: 0.4286rem;
  background-color: var(--white);
  box-shadow: 0 0.0714rem 0.2857rem 0 rgb(0 0 0 / 14%), 0 0.2143rem 0.1429rem 0 rgb(0 0 0 / 30%);
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}
.BackToTop:focus-visible {
  outline: 0.0714rem auto var(--brand-color-border-primary);
}
.BackToTop:hover {
  border: var(--sfly-border-thickness-thin) var(--sfly-border-style-solid) var(--text-color-fog);
  border-radius: 0.4286rem;
  background-color: var(--white);
}
.BackToTop:active {
  background-color: var(--back-to-top-bg);
}
@media screen and (max-width: 768px) {
  .BackToTop .hideOnMobile {
    display: none;
  }
}
.BackToTop span {
  box-sizing: unset;
  transform: rotate(90deg);
  height: 1.1786rem;
  width: 0.6979rem;
  fill: var(--text-color-fog);
  padding-left: 0.6786rem;
  display: inline-block;
}
.BackToTop div {
  padding: 0.5322rem 2.0714rem 0.85714rem;
  line-height: 1.5rem;
  color: var(--text-color-fog);
  font-weight: var(--brand-fontweight-callout);
  letter-spacing: 0;
  text-align: center;
  box-sizing: border-box;
}

/* src/components/SSRUniversalFooter/UniversalFooter.css */
#ssr-footer-container-element {
  position: absolute;
  left: 0;
  right: 0;
}
.footer-Brand-Value-Prop-Highlights {
  margin-top: 2rem;
  background-color: var(--brand-highLights-bg-color);
}
.uhf-footer-wrapper .external-links {
  display: flex;
  flex-direction: column;
  border: 0.0714rem var(--sfly-border-style-solid) var(--black);
  padding: 0.7143rem 2.1429rem;
}
.uhf-footer-wrapper .third-party-wrapper {
  padding: 0 1.4286rem;
}
.uhf-footer-wrapper .footerLinksSection {
  background-color: var(--footer-bg-color);
}
.uhf-footer-wrapper .n-columns-footer-links .ColumnContainer {
  margin: 2.8571rem 0 3.8571rem 0;
}
.uhf-footer-wrapper .NColumns-Container .ColumnContainer h2.ColumnHeader {
  margin-top: 0px;
  margin-bottom: 1.143rem;
}
.uhf-footer-wrapper .NColumns-Container .ColumnContainer h2.ColumnHeader a,
.NColumns-Container .ColumnContainer h2.ColumnHeader span {
  font-weight: var(--font-weight-bold);
}
.uhf-footer-wrapper .NColumns-Container .ColumnContent li {
  margin-bottom: 0.5714rem;
  margin-top: 0;
}
.uhf-footer-wrapper .third-party-components {
  height: 4.8571rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin: auto;
  max-width: 67.8571rem;
}
.uhf-footer-wrapper .NColumns-Container.Default {
  justify-content: space-between;
  max-width: 78.857rem;
  margin-top: 0;
  margin-bottom: 0px;
  padding: 0 1.714rem;
  box-sizing: unset;
}
.uhf-footer-wrapper .Copyright-Test-Wrapper {
  border-bottom: 0.0714rem var(--sfly-border-style-solid) var(--color-fog-light);
  margin-bottom: 0.3571rem;
}
.uhf-footer-wrapper .RowContent-Test-Wrapper {
  border: 0.0714rem var(--sfly-border-style-solid) var(--color-fog-light);
  margin-bottom: 0.3571rem;
}
.uhf-footer-wrapper .n-columns-footer-links .ColumnItem {
  line-height: 1.2 !important;
  color: var(--footer-text-color);
}
.uhf-footer-wrapper .NColumns-Links-Container {
  margin: 0 !important;
  width: 100vw !important;
  left: 0;
  top: unset;
}
.uhf-footer-wrapper .footer-site-links {
  width: 22.5rem;
  display: flex;
  justify-content: space-around;
  padding-top: 2.8571rem;
}
.uhf-footer-wrapper .third-party-wrapper_mobile {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  padding-top: 2.8571rem;
}
.uhf-footer-wrapper hr {
  border: none;
  margin: 0.5714rem 0;
  border-bottom: 0.0714rem var(--sfly-border-style-solid) var(--color-fog-light);
}
footer *:focus:not(:focus-visible) {
  outline: var(--brand-state-focus-outline);
}
.uhf-footer-wrapper .footer-copyright span,
.uhf-footer-wrapper .footer-copyright a {
  font-weight: var(--brand-fontweight-interactive);
  font-size: 0.8571rem;
  color: var(--text-color-fog);
}
.uhf-footer-wrapper .NColumns-Links-Container .Close-Links-Container span.CloseIcon {
  width: 1rem;
  height: 1rem;
}
@media screen and (min-width: 769px) {
  .uhf-footer-wrapper .hideOnDesktop {
    display: none;
  }
  .uhf-footer-wrapper .footer-site-links-wrapper {
    display: none;
  }
  .uhf-footer-wrapper .NColumns-Container .ColumnContent li a,
  .uhf-footer-wrapper .NColumns-Container .ColumnContent li span {
    color: var(--footer-text-color);
    line-height: 0.929rem;
  }
}
@media screen and (max-width: 768px) {
  .uhf-footer-wrapper .hideOnMobile {
    display: none;
  }
  .uhf-footer-wrapper .footer-site-links-wrapper .footer-site-links .NColumns-Links-Wrapper .ColumnContainer {
    margin: 0 0 1.7143rem;
  }
  .uhf-footer-wrapper .footer-site-links-wrapper .footer-site-links .NColumns-Links-Wrapper {
    margin: 2.5714rem 1.7143rem 0.8571rem;
    padding: 0;
  }
  .uhf-footer-wrapper .footer-site-links-wrapper,
  .uhf-footer-wrapper .footer-site-links-wrapper a.AppLink,
  .uhf-footer-wrapper .footer-site-links-wrapper .NColumns-Links-Label span {
    font-weight: var(--brand-fontweight-interactive);
    color: var(--footer-text-color);
  }
  .uhf-footer-wrapper .footer-site-links-wrapper {
    display: flex;
    justify-content: space-around;
    font-size: 0.8571rem;
    letter-spacing: 0;
    text-decoration: none;
    align-items: center;
    position: relative;
    flex-direction: column;
    background-color: var(--footer-bg-color);
  }
  .uhf-footer-wrapper .footer-site-links-wrapper a.AppLink {
    text-decoration: none;
    font-size: 0.8571rem;
    letter-spacing: 0;
  }
  .uhf-footer-wrapper .footer-site-links-wrapper .NColumns-Container {
    margin: 0 !important;
    position: initial !important;
  }
  .uhf-footer-wrapper .NColumns-Container .ColumnContainer h2.ColumnHeader a,
  .uhf-footer-wrapper .NColumns-Container .ColumnContainer h2.ColumnHeader span,
  .uhf-footer-wrapper .NColumns-Container .ColumnContainer a.AppLink,
  .uhf-footer-wrapper .NColumns-Container .ColumnContainer span {
    color: var(--text-color);
    line-height: 0.929rem;
  }
  .uhf-footer-wrapper .desktopOnly {
    display: none !important;
  }
  .uhf-footer-wrapper .row-content {
    max-width: 21.2143rem;
    margin: 0 auto;
  }
  .uhf-footer-wrapper .footer-copyright span,
  .uhf-footer-wrapper .footer-copyright a {
    font-size: 0.8571rem;
    font-weight: var(--brand-fontweight-interactive);
    line-height: 1.2857rem;
  }
}
@media screen and (min-width: 992px) {
  .uhf-footer-wrapper .row-content.footer-copyright em + em {
    border-left: 0.0714rem var(--sfly-border-style-solid) var(--color-fog-light);
  }
}
@media screen and (max-width: 991px) {
  .uhf-footer-wrapper .referralOfferLinks {
    display: none;
  }
  .uhf-footer-wrapper .socialMediaLinks .heading {
    font-size: 0.7857rem;
    letter-spacing: 0;
    text-align: center;
  }
}
