/*
 * Oriibrands utility styles shared by the front end and block editor.
 * Kept as a normal enqueued stylesheet so caching/minification plugins and
 * WordPress' dependency graph can process it correctly.
 */
.is-style-oriibrands-gradient-text{background:var(--gradient-brand);-webkit-background-clip:text;background-clip:text;color:transparent;}
.is-style-oriibrands-flowing-gradient,
.oriibrands-flowing-gradient-bg {
  background: var(--gradient-brand) !important;
  background-size: 200% 200%;
  animation: oriibrands-gradient-flow 10s ease infinite;
}
.is-style-oriibrands-flowing-gradient > .wp-block-cover__background,
.is-style-oriibrands-flowing-gradient > img.wp-block-cover__image-background,
.is-style-oriibrands-flowing-gradient > video.wp-block-cover__video-background {
  display: none !important;
}
@keyframes oriibrands-gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .is-style-oriibrands-flowing-gradient,
  .oriibrands-flowing-gradient-bg { animation: none; background-position: 50% 50%; }
}
