/**
 * Global settings.
 */
/**
 * Bacon overrides.
 */
/**
 * Mixins (imported after variables so they can use them)
 */
@keyframes skeleton-loading {
  0% {
    transform: translateX(-100%);
  }
  60% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.c-consent {
  position: relative;
}
.c-consent--grey {
  padding: var(--s-3xl) 0;
}
.c-consent:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: var(--c-grayscale-off-white);
  z-index: -1;
}
.c-consent--white:before {
  background-color: #fff;
}