html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  --bbva-foundations-grid-tools-template-container-base-header-bg-color: transparent;
  --cells-template-paper-drawer-panel-section-bg: transparent;
  background-color: #f7f8f8;
}

[id^=cells-template-] {
  display: contents;
}

#announcer {
  position: fixed;
  height: 0;
  overflow: hidden;
}

#__spinner__ {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 100;
  pointer-events: none;
  background-color: #ffffff;
}
#__spinner__ figure {
  margin: 0;
  width: 3rem;
  height: 3rem;
  position: relative;
}
#__spinner__ figure div {
  margin: auto;
}
#__spinner__ svg {
  display: block;
}
#__spinner__ .lead-dot {
  fill: #001391;
  animation: 1.5s linear infinite both lead-dot-anim;
}
#__spinner__ .sr-only {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  margin: -0.0625rem;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  word-wrap: normal;
}
#__spinner__ .progress {
  fill: none;
  stroke-width: 1.5rem;
  stroke-linecap: round;
  transform: translate(120, 120);
}
#__spinner__ .progress.flash {
  stroke: #001391;
  animation: 1.5s linear infinite both flash-anim-rotation, 1.5s linear infinite forwards flash-anim-visibility, 1.5s linear infinite both flash-anim-dash-array;
}
#__spinner__ .progress.stela {
  stroke: #cad1d8;
  animation: 1.5s linear infinite both stela-anim-rotation, 1.5s linear infinite forwards stela-anim-visibility, 1.5s linear infinite both stela-anim-opacity, 1.5s linear infinite both stela-anim-dash-array;
}
@keyframes stela-anim-rotation {
  0% {
    transform: translate(7.5rem, 7.5rem) rotate(0deg);
  }
  4.467% {
    transform: translate(7.5rem, 7.5rem) rotate(0deg);
    animation-timing-function: cubic-bezier(0.4, 0.2, 0.2, 0.6);
  }
  100% {
    transform: translate(7.5rem, 7.5rem) rotate(720deg);
  }
}
@keyframes stela-anim-visibility {
  0% {
    visibility: hidden;
    animation-timing-function: steps(1);
  }
  4.467% {
    visibility: visible;
    animation-timing-function: steps(1);
  }
  88.867% {
    visibility: hidden;
    animation-timing-function: steps(1);
  }
  100% {
    visibility: hidden;
    animation-timing-function: steps(1);
  }
}
@keyframes stela-anim-opacity {
  0% {
    opacity: 1;
  }
  75.533% {
    opacity: 1;
  }
  88.867% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes stela-anim-dash-array {
  0% {
    stroke-dasharray: 0 43rem;
  }
  4.467% {
    stroke-dasharray: 0 43rem;
  }
  50% {
    stroke-dasharray: 21.25rem 43rem;
  }
  88.867% {
    stroke-dasharray: 0 43rem;
  }
  100% {
    stroke-dasharray: 0 43rem;
  }
}
@keyframes flash-anim-rotation {
  0% {
    transform: translate(7.5rem, 7.5rem) rotate(0deg);
  }
  4.467% {
    transform: translate(7.5rem, 7.5rem) rotate(0deg);
    animation-timing-function: cubic-bezier(0.4, 0.2, 0.2, 0.6);
  }
  100% {
    transform: translate(7.5rem, 7.5rem) rotate(720deg);
  }
}
@keyframes flash-anim-visibility {
  0% {
    visibility: visible;
    animation-timing-function: steps(1);
  }
  100% {
    visibility: hidden;
    animation-timing-function: steps(1);
  }
}
@keyframes flash-anim-dash-array {
  0% {
    stroke-dasharray: 0 43rem;
  }
  4.467% {
    stroke-dasharray: 0 43rem;
  }
  50% {
    stroke-dasharray: 10.063rem 43rem;
  }
  92.2% {
    stroke-dasharray: 0 43rem;
  }
  100% {
    stroke-dasharray: 0 43rem;
  }
}
@keyframes lead-dot-anim {
  0% {
    transform: translate(7.5rem, 7.5rem) rotate(0deg) translateY(-6.75rem);
    animation-timing-function: cubic-bezier(0.4, 0.2, 0.2, 0.6);
  }
  100% {
    transform: translate(7.5rem, 7.5rem) rotate(720deg) translateY(-6.75rem);
  }
}