.bu-stories-story-page-image-container {
  text-align: center;
}

figure.bu-stories-story-page-image {
  display: inline-flex;
  margin: 0;
  max-width: none;
  padding: 0;
}
figure.bu-stories-story-page-image img {
  max-width: none;
  width: 100%;
  height: auto;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  height: intrinsic;
}

.bu-stories-image-has-alignment-left {
  text-align: left;
}

.bu-stories-image-has-alignment-center {
  text-align: center;
}

.bu-stories-image-has-alignment-right {
  text-align: right;
}
/**
 * ----------------------------------------
 * animation bounce
 * ----------------------------------------
 */
@-webkit-keyframes bounce {
  0% {
    transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  65% {
    transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  82% {
    transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  93% {
    transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  25%, 55%, 75%, 87% {
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
}
@keyframes bounce {
  0% {
    transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  65% {
    transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  82% {
    transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  93% {
    transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  25%, 55%, 75%, 87% {
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation: flip
 * ----------------------------------------
 */
@-webkit-keyframes flip {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(180deg);
  }
}
@keyframes flip {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(180deg);
  }
}
/**
 * ----------------------------------------
 * animation pulsate
 * ----------------------------------------
 */
@-webkit-keyframes pulsate {
  from {
    transform: scale(1);
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes pulsate {
  from {
    transform: scale(1);
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
/**
 * ----------------------------------------
 * animation: rotate
 * ----------------------------------------
 */
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/**
 * ----------------------------------------
 * animation: scale-down
 * ----------------------------------------
 */
@-webkit-keyframes scale-down {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes scale-down {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
/**
 * ----------------------------------------
 * animation: scale-up
 * ----------------------------------------
 */
@-webkit-keyframes scale-up {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scale-up {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
/**
 * ----------------------------------------
 * animation slide-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-right {
  0% {
    transform: translateX(-400px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(-400px);
  }
  100% {
    transform: translateX(0);
  }
}
/**
 * ----------------------------------------
 * animation slide-down
 * ----------------------------------------
 */
@-webkit-keyframes slide-down {
  0% {
    transform: translateY(-400px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-down {
  0% {
    transform: translateY(-400px);
  }
  100% {
    transform: translateY(0);
  }
}
/**
 * ----------------------------------------
 * animation: swing
 * ----------------------------------------
 */
@-webkit-keyframes swing {
  0% {
    transform: rotateY(0);
    transform-origin: right;
  }
  100% {
    transform: rotateY(-180deg);
    transform-origin: right;
  }
}
@keyframes swing {
  0% {
    transform: rotateY(0);
    transform-origin: right;
  }
  100% {
    transform: rotateY(-180deg);
    transform-origin: right;
  }
}
/**
 * ----------------------------------------
 * animation vibrate
 * ----------------------------------------
 */
@-webkit-keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
/**
 * ----------------------------------------
 * animation roll-in
 * ----------------------------------------
 */
@-webkit-keyframes roll-in {
  0% {
    transform: translateX(-800px) rotate(-540deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes roll-in {
  0% {
    transform: translateX(-800px) rotate(-540deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation scale-in
 * ----------------------------------------
 */
@-webkit-keyframes scale-in {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation rotate-in
 * ----------------------------------------
 */
@-webkit-keyframes rotate-in {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotate-in {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: rotate(0);
    opacity: 1;
  }
}
.bu-stories-story-page[data-position="0"] .bu-stories-has-animate-scale-up,
.block-editor .has-child-selected .bu-stories-has-animate-scale-up,
.block-editor .is-selected .bu-stories-has-animate-scale-up {
  -webkit-animation: scale-up 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both 250ms;
  animation: scale-up 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both 250ms;
}
.bu-stories-story-page[data-position="0"] .bu-stories-has-animate-scale-down,
.block-editor .has-child-selected .bu-stories-has-animate-scale-down,
.block-editor .is-selected .bu-stories-has-animate-scale-down {
  -webkit-animation: scale-down 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 250ms;
  animation: scale-down 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 250ms;
}
.bu-stories-story-page[data-position="0"] .bu-stories-has-animate-rotate,
.block-editor .has-child-selected .bu-stories-has-animate-rotate,
.block-editor .is-selected .bu-stories-has-animate-rotate {
  -webkit-animation: rotate 0.6s ease-in-out both 250ms;
  animation: rotate 0.6s ease-in-out both 250ms;
}
.bu-stories-story-page[data-position="0"] .bu-stories-has-animate-flip,
.block-editor .has-child-selected .bu-stories-has-animate-flip,
.block-editor .is-selected .bu-stories-has-animate-flip {
  -webkit-animation: flip 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) both 250ms;
  animation: flip 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) both 250ms;
}
.bu-stories-story-page[data-position="0"] .bu-stories-has-animate-slide-down,
.block-editor .has-child-selected .bu-stories-has-animate-slide-down,
.block-editor .is-selected .bu-stories-has-animate-slide-down {
  -webkit-animation: slide-down 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 250ms;
  animation: slide-down 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 250ms;
}
.bu-stories-story-page[data-position="0"] .bu-stories-has-animate-slide-right,
.block-editor .has-child-selected .bu-stories-has-animate-slide-right,
.block-editor .is-selected .bu-stories-has-animate-slide-right {
  -webkit-animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 250ms;
  animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 250ms;
}
.bu-stories-story-page[data-position="0"] .bu-stories-has-animate-vibrate,
.block-editor .has-child-selected .bu-stories-has-animate-vibrate,
.block-editor .is-selected .bu-stories-has-animate-vibrate {
  -webkit-animation: vibrate 0.3s linear infinite both 250ms;
  animation: vibrate 0.3s linear infinite both 250ms;
}
.bu-stories-story-page[data-position="0"] .bu-stories-has-animate-bounce,
.block-editor .has-child-selected .bu-stories-has-animate-bounce,
.block-editor .is-selected .bu-stories-has-animate-bounce {
  -webkit-animation: bounce 0.9s both 250ms;
  animation: bounce 0.9s both 250ms;
}
.bu-stories-story-page[data-position="0"] .bu-stories-has-animate-pulsate,
.block-editor .has-child-selected .bu-stories-has-animate-pulsate,
.block-editor .is-selected .bu-stories-has-animate-pulsate {
  -webkit-animation: pulsate 1.5s ease-in-out infinite both 250ms;
  animation: pulsate 1.5s ease-in-out infinite both 250ms;
}
.bu-stories-story-page[data-position="0"] .bu-stories-has-animate-scale-in,
.block-editor .has-child-selected .bu-stories-has-animate-scale-in,
.block-editor .is-selected .bu-stories-has-animate-scale-in {
  -webkit-animation: scale-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 250ms;
  animation: scale-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 250ms;
}
.bu-stories-story-page[data-position="0"] .bu-stories-has-animate-rotate-in,
.block-editor .has-child-selected .bu-stories-has-animate-rotate-in,
.block-editor .is-selected .bu-stories-has-animate-rotate-in {
  -webkit-animation: rotate-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 250ms;
  animation: rotate-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 250ms;
}
.bu-stories-story-page[data-position="0"] .bu-stories-has-animate-fade-in,
.block-editor .has-child-selected .bu-stories-has-animate-fade-in,
.block-editor .is-selected .bu-stories-has-animate-fade-in {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both 250ms;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both 250ms;
}
.bu-stories-story-page[data-position="0"] .bu-stories-has-animate-roll-in,
.block-editor .has-child-selected .bu-stories-has-animate-roll-in,
.block-editor .is-selected .bu-stories-has-animate-roll-in {
  -webkit-animation: roll-in 0.6s ease-out both 250ms;
  animation: roll-in 0.6s ease-out both 250ms;
}

/*# sourceMappingURL=style-index.css.map*/