/* Docs-only animation preview (sourced from ZenBlocks preview styles)
   Scope: documentation preview area only. */

.mock-panel-layout__preview-stage--animation {
  align-items: flex-start;
  padding-top: 28px;
}
.mock-panel-layout__preview-stage--animation .animation-preview-selector,
.mock-panel-layout__preview-stage--animation .icon-animation-preview-selector,
.mock-panel-layout__preview-stage--animation .frame-animation-preview-selector,
.mock-panel-layout__preview-stage--animation .button-animation-preview-selector {
  width: min(100%, 350px);
  margin: 0 auto;
}

/* icon animation keyframes from buttonBasic/styles/_icon_animation_default.scss */
@keyframes icon-animation-01 {
  0% { transform: translate(0, 0); opacity: 1; }
  33% { transform: translate(0, 0); opacity: 0; }
  66% { transform: translate(-10px, 0); opacity: 0; }
  100% { transform: translate(0, 0); opacity: 1; }
}
@keyframes icon-animation-02 {
  0% { transform: translate(0, 0); opacity: 1; }
  33% { transform: translate(10px, 0); opacity: 0; }
  66% { transform: translate(0, 0); opacity: 0; }
  100% { transform: translate(0, 0); opacity: 1; }
}
@keyframes icon-animation-03 {
  0% { transform: translate(0, 0); opacity: 1; }
  33% { transform: translate(10px, 0); opacity: 0; }
  66% { transform: translate(-10px, 0); opacity: 0; }
  100% { transform: translate(0, 0); opacity: 1; }
}
@keyframes icon-animation-04 {
  0% { transform: translate(0, 0); opacity: 1; }
  33% { transform: translate(0, -10px); opacity: 0; }
  66% { transform: translate(0, 0); opacity: 0; }
  100% { transform: translate(0, 0); opacity: 1; }
}
@keyframes icon-animation-05 {
  0% { transform: translate(0, 0); opacity: 1; }
  33% { transform: translate(0, 0); opacity: 0; }
  66% { transform: translate(0, 10px); opacity: 0; }
  100% { transform: translate(0, 0); opacity: 1; }
}
@keyframes icon-animation-06 {
  0% { transform: translate(0, 0); opacity: 1; }
  25% { transform: translate(0, -10px); opacity: 0; }
  50% { transform: translate(0, 10px); opacity: 0; }
  100% { transform: translate(0, 0); opacity: 1; }
}
@keyframes icon-animation-07 {
  0% { transform: translate(0, 0); opacity: 1; }
  25% { transform: translate(5px, -5px); opacity: 0; }
  50% { transform: translate(-5px, 5px); opacity: 0; }
  100% { transform: translate(0, 0); opacity: 1; }
}
@keyframes icon-animation-08 {
  0% { transform: translate(0, 0); }
  10% { transform: translate(-2px, 0); }
  30% { transform: translate(2px, 0); }
  50% { transform: translate(-2px, 0); }
  70% { transform: translate(2px, 0); }
  90% { transform: translate(-1px, 0); }
  100% { transform: translate(0, 0); }
}
@keyframes icon-animation-09 {
  0% { transform: translate(0, 0) rotate3d(1, 1, 0, 0deg); }
  100% { transform: translate(0, 0) rotate3d(1, 1, 0, 360deg); }
}

@media (max-width: 700px) {
  .mock-panel-layout__preview-stage--animation .animation-preview-selector,
  .mock-panel-layout__preview-stage--animation .icon-animation-preview-selector,
  .mock-panel-layout__preview-stage--animation .frame-animation-preview-selector,
  .mock-panel-layout__preview-stage--animation .button-animation-preview-selector {
    width: 100%;
  }
}
.animation-preview-selector {
  width: 100%;
  /* padding: 16px 0; */
}

.animation-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.animation-preview-item {
  cursor: pointer;
  transition: all 0.2s ease;
}

.animation-preview-item:hover .animation-preview-wrapper {
  box-shadow: none;
}

.animation-preview-item.is-active .animation-preview-wrapper {
  box-shadow: 0 0 0 2px #2271b1;
}

.animation-preview-item.is-active .animation-preview-wrapper button.animation-preview-button {
  background-color: #f0f6fc !important;
  border-color: #2271b1 !important;
}

.animation-preview-label {
  text-align: center;
  font-size: 11px;
  color: #757575;
  margin-top: 8px;
}

.animation-number {
  font-weight: 500;
  color: #1e1e1e;
  display: block;
}

.animation-description {
  display: none;
}

.animation-preview-wrapper {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 42px;
}

.animation-preview-item .animation-preview-wrapper button.animation-preview-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  height: 42px !important;
  padding: 12px 24px;
  background-color: #fff !important;
  color: #000 !important;
  border-radius: 3px;
  position: relative;
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ボタンコンテンツの基本スタイル */
.animation-preview-wrapper .wp-block-zenblocks-button-basic-content {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  pointer-events: none;
}

/* プレビューのデフォルトスタイルを確保 */
.animation-preview-wrapper .wp-block-zenblocks-button-basic-text {
  position: relative;
  display: inline-block !important;
  color: #000 !important;
  white-space: nowrap;
  pointer-events: none;
}

.animation-preview-wrapper .wp-block-zenblocks-button-basic-text .default {
  display: block !important;
  position: relative;
  opacity: 1 !important;
  visibility: visible !important;
  color: #000 !important;
}

.animation-preview-wrapper .wp-block-zenblocks-button-basic-text .hover {
  display: block !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  color: #000 !important;
}

.animation-preview-wrapper .wp-block-zenblocks-button-basic-text .char {
  display: inline-block !important;
  color: inherit;
}

/* 強制ホバー時（autoPlay）に:hoverスタイルを適用 */
.animation-preview-wrapper button.is-force-hover .wp-block-zenblocks-button-basic-text .default {
  opacity: 0 !important;
  visibility: hidden !important;
}

.animation-preview-wrapper button.is-force-hover .wp-block-zenblocks-button-basic-text .hover {
  opacity: 1 !important;
  visibility: visible !important;
}

/* マウスホバー時（is-hover-enabled）に:hoverスタイルを適用 */
.animation-preview-wrapper.is-hover-enabled button.animation-preview-button:hover .wp-block-zenblocks-button-basic-text .default {
  opacity: 0 !important;
  visibility: hidden !important;
}

.animation-preview-wrapper.is-hover-enabled button.animation-preview-button:hover .wp-block-zenblocks-button-basic-text .hover {
  opacity: 1 !important;
  visibility: visible !important;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic > button.is-force-hover .wp-block-zenblocks-button-basic-text .default {
  opacity: 1 !important;
  visibility: visible !important;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover {
  opacity: 1 !important;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char {
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char {
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.8, 0, 1, 1), transform 0.9s cubic-bezier(0.8, 0, 1, 1);
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transition-delay: 0.06s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transition-delay: 0.12s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transition-delay: 0.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transition-delay: 0.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transition-delay: 0.66s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transition-delay: 0.72s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transition-delay: 0.78s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transition-delay: 0.84s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transition-delay: 0.96s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transition-delay: 1.02s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transition-delay: 1.08s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transition-delay: 1.14s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transition-delay: 1.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transition-delay: 1.26s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transition-delay: 1.32s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transition-delay: 1.38s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transition-delay: 1.44s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transition-delay: 1.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transition-delay: 1.56s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transition-delay: 1.62s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transition-delay: 1.68s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transition-delay: 1.74s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transition-delay: 1.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.9s cubic-bezier(0.8, 0, 1, 1), transform 0.9s cubic-bezier(0.8, 0, 1, 1);
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.38s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.46s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.62s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.78s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.86s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.94s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 1.02s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 1.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 1.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 1.26s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 1.34s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 1.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 1.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 1.58s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 1.66s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 1.74s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 1.82s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 1.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 1.98s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 2.06s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 2.14s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 2.22s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 2.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 2.38s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 2.46s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 2.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 2.62s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 2.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char {
  transform: translateX(-20px);
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transition-delay: 0.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transition-delay: 0.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transition-delay: 0.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transition-delay: 0.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transition-delay: 0.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transition-delay: 0.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transition-delay: 0.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transition-delay: 0.65s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transition-delay: 0.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transition-delay: 0.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transition-delay: 0.85s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transition-delay: 0.95s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transition-delay: 1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transition-delay: 1.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transition-delay: 1.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transition-delay: 1.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transition-delay: 1.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transition-delay: 1.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transition-delay: 1.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transition-delay: 1.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transition-delay: 1.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transition-delay: 1.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transition-delay: 1.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  transform: translateX(0);
  opacity: 1;
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.65s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.85s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.95s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 1.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 1.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 1.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 1.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 1.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 1.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 1.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 1.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 1.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 1.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 1.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 1.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 1.65s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 1.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 1.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 1.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char {
  transform: scale(0.5);
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transition-delay: 0.03s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transition-delay: 0.06s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transition-delay: 0.09s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transition-delay: 0.12s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transition-delay: 0.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transition-delay: 0.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transition-delay: 0.21s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transition-delay: 0.27s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transition-delay: 0.33s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transition-delay: 0.39s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transition-delay: 0.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transition-delay: 0.51s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transition-delay: 0.57s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transition-delay: 0.63s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transition-delay: 0.66s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transition-delay: 0.69s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transition-delay: 0.72s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transition-delay: 0.78s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transition-delay: 0.81s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transition-delay: 0.84s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transition-delay: 0.87s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  transform: scale(1);
  opacity: 1;
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.21s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.27s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.33s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.39s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.51s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 0.57s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 0.63s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 0.66s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 0.69s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 0.72s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 0.78s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 0.81s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 0.84s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 0.87s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 0.93s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 0.96s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 0.99s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 1.02s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 1.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transition-delay: 0.025s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transition-delay: 0.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transition-delay: 0.075s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transition-delay: 0.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transition-delay: 0.125s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transition-delay: 0.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transition-delay: 0.175s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transition-delay: 0.225s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transition-delay: 0.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transition-delay: 0.275s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transition-delay: 0.325s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transition-delay: 0.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transition-delay: 0.375s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transition-delay: 0.425s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transition-delay: 0.475s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transition-delay: 0.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transition-delay: 0.525s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transition-delay: 0.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transition-delay: 0.575s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transition-delay: 0.625s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transition-delay: 0.65s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transition-delay: 0.675s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transition-delay: 0.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transition-delay: 0.725s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.125s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.175s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.225s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.275s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.325s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.375s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.425s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 0.475s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 0.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 0.525s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 0.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 0.575s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 0.625s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 0.65s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 0.675s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 0.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 0.725s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 0.775s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 0.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 0.825s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 0.85s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char {
  opacity: 0;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transform: translateY(8px);
  transition-delay: 0.06s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transform: translateY(-8px);
  transition-delay: 0.12s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transform: translateY(8px);
  transition-delay: 0.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transform: translateY(-8px);
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transform: translateY(8px);
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transform: translateY(-8px);
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transform: translateY(8px);
  transition-delay: 0.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transform: translateY(-8px);
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transform: translateY(8px);
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transform: translateY(-8px);
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transform: translateY(8px);
  transition-delay: 0.66s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transform: translateY(-8px);
  transition-delay: 0.72s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transform: translateY(8px);
  transition-delay: 0.78s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transform: translateY(-8px);
  transition-delay: 0.84s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transform: translateY(8px);
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transform: translateY(-8px);
  transition-delay: 0.96s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transform: translateY(8px);
  transition-delay: 1.02s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transform: translateY(-8px);
  transition-delay: 1.08s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transform: translateY(8px);
  transition-delay: 1.14s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transform: translateY(-8px);
  transition-delay: 1.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transform: translateY(8px);
  transition-delay: 1.26s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transform: translateY(-8px);
  transition-delay: 1.32s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transform: translateY(8px);
  transition-delay: 1.38s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transform: translateY(-8px);
  transition-delay: 1.44s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transform: translateY(8px);
  transition-delay: 1.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transform: translateY(-8px);
  transition-delay: 1.56s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transform: translateY(8px);
  transition-delay: 1.62s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transform: translateY(-8px);
  transition-delay: 1.68s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transform: translateY(8px);
  transition-delay: 1.74s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transform: translateY(-8px);
  transition-delay: 1.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.21s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.27s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.33s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.39s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.51s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.57s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.63s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.69s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.81s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.87s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.93s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 0.99s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 1.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 1.11s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 1.17s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 1.23s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 1.29s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 1.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 1.41s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 1.47s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 1.53s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 1.59s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 1.65s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 1.71s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 1.77s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 1.83s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 1.89s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 1.95s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char {
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.5s ease-out, filter 0.5s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transition-delay: 0.02s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transition-delay: 0.04s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transition-delay: 0.06s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transition-delay: 0.08s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transition-delay: 0.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transition-delay: 0.12s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transition-delay: 0.14s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transition-delay: 0.16s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transition-delay: 0.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transition-delay: 0.22s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transition-delay: 0.26s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transition-delay: 0.28s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transition-delay: 0.32s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transition-delay: 0.34s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transition-delay: 0.38s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transition-delay: 0.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transition-delay: 0.44s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transition-delay: 0.46s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transition-delay: 0.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transition-delay: 0.52s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transition-delay: 0.56s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transition-delay: 0.58s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  filter: blur(0);
  opacity: 1;
  transition: opacity 0.5s ease-out, filter 0.5s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.12s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.14s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.16s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.22s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.26s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.28s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.32s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.34s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 0.38s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 0.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 0.44s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 0.46s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 0.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 0.52s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 0.56s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 0.58s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 0.62s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 0.64s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 0.66s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 0.68s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 0.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char {
  transform: translateY(-3px);
  opacity: 0;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transition-delay: 0.04s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transition-delay: 0.08s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transition-delay: 0.12s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transition-delay: 0.16s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transition-delay: 0.28s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transition-delay: 0.32s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transition-delay: 0.44s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transition-delay: 0.52s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transition-delay: 0.56s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transition-delay: 0.64s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transition-delay: 0.68s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transition-delay: 0.72s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transition-delay: 0.76s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transition-delay: 0.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transition-delay: 0.84s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transition-delay: 0.88s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transition-delay: 0.92s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transition-delay: 0.96s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transition-delay: 1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transition-delay: 1.04s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transition-delay: 1.08s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transition-delay: 1.12s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transition-delay: 1.16s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transition-delay: 1.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.19s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.23s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.27s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.31s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.39s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.43s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.47s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.51s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.59s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.63s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.67s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 0.71s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 0.79s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 0.83s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 0.87s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 0.91s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 0.95s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 0.99s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 1.03s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 1.07s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 1.11s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 1.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 1.19s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 1.23s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 1.27s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 1.31s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 1.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char {
  transform: scale(1.5) translateY(-10px);
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transition-delay: 0.03s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transition-delay: 0.06s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transition-delay: 0.09s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transition-delay: 0.12s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transition-delay: 0.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transition-delay: 0.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transition-delay: 0.21s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transition-delay: 0.27s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transition-delay: 0.33s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transition-delay: 0.39s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transition-delay: 0.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transition-delay: 0.51s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transition-delay: 0.57s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transition-delay: 0.63s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transition-delay: 0.66s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transition-delay: 0.69s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transition-delay: 0.72s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transition-delay: 0.78s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transition-delay: 0.81s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transition-delay: 0.84s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transition-delay: 0.87s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  transform: scale(1) translateY(0);
  opacity: 1;
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.21s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.27s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.33s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.39s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.51s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 0.57s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 0.63s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 0.66s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 0.69s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 0.72s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 0.78s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 0.81s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 0.84s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 0.87s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 0.93s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 0.96s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 0.99s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 1.02s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 1.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char {
  transform: rotate(-15deg) translateY(-5px);
  transform-origin: center bottom;
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transition-delay: 0.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transition-delay: 0.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transition-delay: 0.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transition-delay: 0.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transition-delay: 0.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transition-delay: 0.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transition-delay: 0.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transition-delay: 0.65s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transition-delay: 0.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transition-delay: 0.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transition-delay: 0.85s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transition-delay: 0.95s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transition-delay: 1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transition-delay: 1.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transition-delay: 1.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transition-delay: 1.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transition-delay: 1.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transition-delay: 1.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transition-delay: 1.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transition-delay: 1.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transition-delay: 1.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transition-delay: 1.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transition-delay: 1.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  transform: rotate(0deg) translateY(0);
  transform-origin: center bottom;
  opacity: 1;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.65s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 0.85s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 0.95s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 1.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 1.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 1.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 1.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 1.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 1.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 1.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 1.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 1.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 1.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 1.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 1.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10 > button.is-force-hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 1.65s;
}

/*# sourceMappingURL=animation-preview-force-hover.css.map */
.icon-animation-preview-selector {
  width: 100%;
  /* padding: 16px 0; */
}

.icon-animation-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.icon-animation-preview-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.icon-animation-preview-item:hover .icon-animation-preview-wrapper {
  box-shadow: none;
}

.icon-animation-preview-item.is-active .icon-animation-preview-wrapper {
  box-shadow: 0 0 0 2px #2271b1;
}

.icon-animation-preview-item.is-active .icon-animation-preview-button {
  background: #f0f6fc !important;
  border-color: #2271b1 !important;
}

.icon-animation-preview-item.is-active .icon-animation-preview-button .wp-block-zenblocks-button-basic-content {
  background: #f0f6fc !important;
}

.icon-animation-preview-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
}

.icon-animation-preview-button {
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100% !important;
}

.icon-animation-preview-button .wp-block-zenblocks-button-basic-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #fff !important;
}

.icon-animation-preview-button .wp-block-zenblocks-button-basic-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  transform: none !important;
  width: 24px !important;
  height: 24px !important;
  /* _icon.scss のトランジションがプレビューに干渉するのを防止 */
  transition: none !important;
}

/* wrap_icon の ::before 擬似要素（アイコンフレーム）を無効化 */
.icon-animation-preview-button .wp-block-zenblocks-button-basic-icon.wrap_icon::before {
  display: none !important;
}

/* .default と .hover は absolute で重ねる */
.icon-animation-preview-button .wp-block-zenblocks-button-basic-icon > .default,
.icon-animation-preview-button .wp-block-zenblocks-button-basic-icon > .hover {
  position: absolute !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  /* _icon.scss の opacity/visibility トランジションがプレビューに干渉するのを防止 */
  transition: none !important;
  /* transform は force-hover.scss で各アニメーションごとに設定 */
}

.icon-animation-preview-button .wp-block-zenblocks-button-basic-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  color: #000;
  stroke: #000;
}

.icon-animation-preview-label {
  text-align: center;
  font-size: 11px;
  color: #757575;
}

.icon-animation-number {
  font-weight: 500;
  color: #1e1e1e;
}
.icon-animation-preview-wrapper.wp-block-zenblocks-button-basic>.icon-animation-preview-button .wp-block-zenblocks-button-basic-content .wp-block-zenblocks-button-basic-icon{width:20px;height:20px}.icon-animation-preview-wrapper.wp-block-zenblocks-button-basic>.icon-animation-preview-button .wp-block-zenblocks-button-basic-content .wp-block-zenblocks-button-basic-icon>svg{animation:none}.icon-animation-preview-wrapper.wp-block-zenblocks-button-basic>.icon-animation-preview-button.is-force-hover .wp-block-zenblocks-button-basic-content .wp-block-zenblocks-button-basic-icon>svg{animation-play-state:running !important}.icon-animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-icon-01>.icon-animation-preview-button.is-force-hover .wp-block-zenblocks-button-basic-icon>svg{animation:icon-animation-01 1s ease-in-out 0s forwards !important}.icon-animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-icon-02>.icon-animation-preview-button.is-force-hover .wp-block-zenblocks-button-basic-icon>svg{animation:icon-animation-02 1s ease-in-out 0s forwards !important}.icon-animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-icon-03>.icon-animation-preview-button.is-force-hover .wp-block-zenblocks-button-basic-icon>svg{animation:icon-animation-03 1s ease-in-out 0s forwards !important}.icon-animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-icon-04>.icon-animation-preview-button.is-force-hover .wp-block-zenblocks-button-basic-icon>svg{animation:icon-animation-04 1s ease-in-out 0s forwards !important}.icon-animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-icon-05>.icon-animation-preview-button.is-force-hover .wp-block-zenblocks-button-basic-icon>svg{animation:icon-animation-05 1s ease-in-out 0s forwards !important}.icon-animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-icon-06>.icon-animation-preview-button.is-force-hover .wp-block-zenblocks-button-basic-icon>svg{animation:icon-animation-06 1s ease-in-out 0s forwards !important}.icon-animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-icon-07>.icon-animation-preview-button.is-force-hover .wp-block-zenblocks-button-basic-icon>svg{animation:icon-animation-07 1s ease-in-out 0s forwards !important}.icon-animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-icon-08>.icon-animation-preview-button.is-force-hover .wp-block-zenblocks-button-basic-icon>svg{animation:icon-animation-08 1s ease-in-out 0s forwards !important}.icon-animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-icon-09>.icon-animation-preview-button.is-force-hover .wp-block-zenblocks-button-basic-icon>svg{animation:icon-animation-09 1s ease-in-out 0s forwards !important}/*# sourceMappingURL=icon-animation-preview-force-hover.css.map */.frame-animation-preview-selector {
  padding: 0;
}

.frame-animation-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.frame-animation-preview-item {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 8px;
  transition: all 0.2s ease;
  background: #f0f0f0;
}

.frame-animation-preview-item:hover {
  border-color: #2669e6;
  background: #e8f4fd;
}

.frame-animation-preview-item.is-active {
  border-color: #2669e6;
  background: #e8f4fd;
  box-shadow: 0 0 0 1px #2669e6;
}

.frame-animation-preview-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 6px;
}

.frame-animation-preview-button {
  position: relative;
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 3px;
  background: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
}

.frame-animation-preview-button .wp-block-zenblocks-button-basic-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-animation-preview-button .wp-block-zenblocks-button-basic-text {
  display: block;
}

.frame-animation-preview-button .wp-block-zenblocks-button-basic-text .default {
  display: block;
}

.frame-animation-preview-button .wp-block-zenblocks-button-basic-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  overflow: hidden;
}

.frame-animation-preview-button .wp-block-zenblocks-button-basic-bg-color {
  position: absolute;
  inset: 0;
  background: #1e1e1e;
}

.frame-animation-preview-button .wp-block-zenblocks-button-basic-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
}

/* neon-01はbox-shadowを使うのでoverflow: visibleが必要 */
.frame-animation-preview-neon-01 .frame-animation-preview-button {
  font-size: 14px;
  overflow: visible;
}

.frame-animation-preview-neon-01 .frame-animation-preview-button .wp-block-zenblocks-button-basic-frame {
  overflow: visible;
}

.frame-animation-preview-label {
  text-align: center;
}

.frame-animation-preview-label .frame-animation-name {
  font-size: 11px;
  color: #1e1e1e;
  font-weight: 500;
}

/* ====================================
   フレームアニメーション プレビュー用スタイル
   ==================================== */

/* shine-01: 左から右へ光が流れる */
.frame-animation-preview-shine-01 .frame-animation-preview-button.is-force-animation .wp-block-zenblocks-button-basic-frame::before,
.frame-animation-preview-shine-01.is-hover-enabled .frame-animation-preview-button:hover .wp-block-zenblocks-button-basic-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: frame-shine-01 var(--frame-animation-duration, 2000ms) var(--frame-animation-easing, ease-in-out) infinite;
}

/* shine-02: 斜めに光が流れる */
.frame-animation-preview-shine-02 .frame-animation-preview-button.is-force-animation .wp-block-zenblocks-button-basic-frame::before,
.frame-animation-preview-shine-02.is-hover-enabled .frame-animation-preview-button:hover .wp-block-zenblocks-button-basic-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  animation: frame-shine-02 var(--frame-animation-duration, 2000ms) var(--frame-animation-easing, ease-in-out) infinite;
}

/* sparkle-01: 6箇所で星がキラキラ光る */
.frame-animation-preview-sparkle-01 .frame-animation-preview-button.is-force-animation .wp-block-zenblocks-button-basic-frame::before,
.frame-animation-preview-sparkle-01 .frame-animation-preview-button.is-force-animation .wp-block-zenblocks-button-basic-frame::after,
.frame-animation-preview-sparkle-01.is-hover-enabled .frame-animation-preview-button:hover .wp-block-zenblocks-button-basic-frame::before,
.frame-animation-preview-sparkle-01.is-hover-enabled .frame-animation-preview-button:hover .wp-block-zenblocks-button-basic-frame::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, transparent 70%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.frame-animation-preview-sparkle-01 .frame-animation-preview-button.is-force-animation .wp-block-zenblocks-button-basic-frame::before,
.frame-animation-preview-sparkle-01.is-hover-enabled .frame-animation-preview-button:hover .wp-block-zenblocks-button-basic-frame::before {
  animation: frame-sparkle-01a var(--frame-animation-duration, 2000ms) ease-in-out infinite;
}

.frame-animation-preview-sparkle-01 .frame-animation-preview-button.is-force-animation .wp-block-zenblocks-button-basic-frame::after,
.frame-animation-preview-sparkle-01.is-hover-enabled .frame-animation-preview-button:hover .wp-block-zenblocks-button-basic-frame::after {
  animation: frame-sparkle-01b var(--frame-animation-duration, 2000ms) ease-in-out infinite;
  animation-delay: 150ms;
}

/* border-run-01: 光のラインがボタンの周囲を走る */
.frame-animation-preview-border-run-01 .frame-animation-preview-button.is-force-animation .wp-block-zenblocks-button-basic-frame::before,
.frame-animation-preview-border-run-01.is-hover-enabled .frame-animation-preview-button:hover .wp-block-zenblocks-button-basic-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 50% 3px;
  background-repeat: no-repeat;
  background-position: -50% 0;
  animation: frame-border-run-01 var(--frame-animation-duration, 2000ms) linear infinite;
}

/* neon-01: ネオンサインのように発光 */
.frame-animation-preview-neon-01 .frame-animation-preview-button.is-force-animation .wp-block-zenblocks-button-basic-frame::before,
.frame-animation-preview-neon-01.is-hover-enabled .frame-animation-preview-button:hover .wp-block-zenblocks-button-basic-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: frame-neon-01 var(--frame-animation-duration, 2000ms) var(--frame-animation-easing, ease-in-out) infinite;
}

/* laser-01: 上下のレーザー光線 */
.frame-animation-preview-laser-01 .frame-animation-preview-button.is-force-animation .wp-block-zenblocks-button-basic-frame::before,
.frame-animation-preview-laser-01.is-hover-enabled .frame-animation-preview-button:hover .wp-block-zenblocks-button-basic-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: frame-laser-horizontal var(--frame-animation-duration, 2000ms) linear infinite;
}

.frame-animation-preview-laser-01 .frame-animation-preview-button.is-force-animation .wp-block-zenblocks-button-basic-frame::after,
.frame-animation-preview-laser-01.is-hover-enabled .frame-animation-preview-button:hover .wp-block-zenblocks-button-basic-frame::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: frame-laser-horizontal var(--frame-animation-duration, 2000ms) linear infinite reverse;
}
.button-animation-preview-selector {
  padding: 0;
}

.button-animation-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.button-animation-preview-item {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 8px;
  transition: all 0.2s ease;
  background: #f0f0f0;
}

.button-animation-preview-item:hover {
  border-color: #2669e6;
  background: #e8f4fd;
}

.button-animation-preview-item.is-active {
  border-color: #2669e6;
  background: #e8f4fd;
  box-shadow: 0 0 0 1px #2669e6;
}

.button-animation-preview-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 6px;
}

.button-animation-preview-button {
  position: relative;
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 3px;
  background: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
}

.button-animation-preview-button .wp-block-zenblocks-button-basic-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-animation-preview-button .wp-block-zenblocks-button-basic-text {
  display: block;
}

.button-animation-preview-button .wp-block-zenblocks-button-basic-text .default {
  display: block;
}

.button-animation-preview-button .wp-block-zenblocks-button-basic-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  overflow: hidden;
}

.button-animation-preview-button .wp-block-zenblocks-button-basic-bg-color {
  position: absolute;
  inset: 0;
  background: #1e1e1e;
}
.button-animation-preview-label {
  text-align: center;
}

.button-animation-preview-label .button-animation-name {
  font-size: 11px;
  color: #1e1e1e;
  font-weight: 500;
}

/* ====================================
   プレビュー用キーフレーム（0-100%でアニメーション完了）
   実際のボタンは別のキーフレーム（静止期間付き）を使用
   ==================================== */

@keyframes button-preview-shake-01 {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}

@keyframes button-preview-bounce-01 {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

@keyframes button-preview-heartbeat-01 {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.05); }
  28% { transform: scale(1); }
  42% { transform: scale(1.08); }
  70% { transform: scale(1); }
}

@keyframes button-preview-wobble-01 {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  15% { transform: translateX(-4px) rotate(-3deg); }
  30% { transform: translateX(3px) rotate(2deg); }
  45% { transform: translateX(-2px) rotate(-1deg); }
  60% { transform: translateX(1px) rotate(1deg); }
  75% { transform: translateX(-1px) rotate(0deg); }
}

@keyframes button-preview-swing-01 {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(10deg); }
  40% { transform: rotate(-8deg); }
  60% { transform: rotate(5deg); }
  80% { transform: rotate(-3deg); }
}

@keyframes button-preview-rubberband-01 {
  0%, 100% { transform: scale3d(1, 1, 1); }
  30% { transform: scale3d(1.15, 0.85, 1); }
  40% { transform: scale3d(0.85, 1.15, 1); }
  50% { transform: scale3d(1.08, 0.92, 1); }
  65% { transform: scale3d(0.95, 1.05, 1); }
  75% { transform: scale3d(1.03, 0.97, 1); }
}

@keyframes button-preview-tada-01 {
  0%, 100% { transform: scale(1) rotate(0deg); }
  10%, 20% { transform: scale(0.95) rotate(-2deg); }
  30%, 50%, 70%, 90% { transform: scale(1.05) rotate(2deg); }
  40%, 60%, 80% { transform: scale(1.05) rotate(-2deg); }
}

@keyframes button-preview-pulse-01 {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes button-preview-flash-01 {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.3; }
}

@keyframes button-preview-headshake-01 {
  0%, 100% { transform: translateX(0) rotateY(0deg); }
  6.5% { transform: translateX(-4px) rotateY(-6deg); }
  18.5% { transform: translateX(3px) rotateY(5deg); }
  31.5% { transform: translateX(-2px) rotateY(-3deg); }
  43.5% { transform: translateX(1px) rotateY(2deg); }
  50% { transform: translateX(0) rotateY(0deg); }
}

@keyframes button-preview-pop-01 {
  0%, 100% { transform: scale(1); }
  20% { transform: scale(1.15); }
  40% { transform: scale(0.95); }
  60% { transform: scale(1.05); }
  80% { transform: scale(0.98); }
}

@keyframes button-preview-vibrate-01 {
  0%, 100% { transform: translate(0); }
  10% { transform: translate(-1px, 1px); }
  20% { transform: translate(1px, -1px); }
  30% { transform: translate(-1px, -1px); }
  40% { transform: translate(1px, 1px); }
  50% { transform: translate(-1px, 0); }
  60% { transform: translate(1px, 0); }
  70% { transform: translate(0, -1px); }
  80% { transform: translate(0, 1px); }
  90% { transform: translate(-1px, 1px); }
}

/* ====================================
   ボタンアニメーション プレビュー用スタイル
   ==================================== */

/* shake-01: 左右に揺れる */
.button-animation-preview-shake-01 .button-animation-preview-button.is-force-animation,
.button-animation-preview-shake-01.is-hover-enabled .button-animation-preview-button:hover {
  animation: button-preview-shake-01 var(--button-animation-duration, 2000ms) var(--button-animation-easing, ease-in-out) infinite;
}

/* bounce-01: 上下に跳ねる */
.button-animation-preview-bounce-01 .button-animation-preview-button.is-force-animation,
.button-animation-preview-bounce-01.is-hover-enabled .button-animation-preview-button:hover {
  animation: button-preview-bounce-01 var(--button-animation-duration, 2000ms) var(--button-animation-easing, ease-in-out) infinite;
}

/* heartbeat-01: 心臓の鼓動のように拡縮 */
.button-animation-preview-heartbeat-01 .button-animation-preview-button.is-force-animation,
.button-animation-preview-heartbeat-01.is-hover-enabled .button-animation-preview-button:hover {
  animation: button-preview-heartbeat-01 var(--button-animation-duration, 2000ms) var(--button-animation-easing, ease-in-out) infinite;
}

/* wobble-01: グラグラ揺れる */
.button-animation-preview-wobble-01 .button-animation-preview-button.is-force-animation,
.button-animation-preview-wobble-01.is-hover-enabled .button-animation-preview-button:hover {
  animation: button-preview-wobble-01 var(--button-animation-duration, 2000ms) var(--button-animation-easing, ease-in-out) infinite;
}

/* swing-01: 振り子のように揺れる */
.button-animation-preview-swing-01 .button-animation-preview-button.is-force-animation,
.button-animation-preview-swing-01.is-hover-enabled .button-animation-preview-button:hover {
  transform-origin: top center;
  animation: button-preview-swing-01 var(--button-animation-duration, 2000ms) var(--button-animation-easing, ease-in-out) infinite;
}

/* rubberband-01: ゴムのように伸縮 */
.button-animation-preview-rubberband-01 .button-animation-preview-button.is-force-animation,
.button-animation-preview-rubberband-01.is-hover-enabled .button-animation-preview-button:hover {
  animation: button-preview-rubberband-01 var(--button-animation-duration, 2000ms) var(--button-animation-easing, ease-in-out) infinite;
}

/* tada-01: 注目を集める動き */
.button-animation-preview-tada-01 .button-animation-preview-button.is-force-animation,
.button-animation-preview-tada-01.is-hover-enabled .button-animation-preview-button:hover {
  animation: button-preview-tada-01 var(--button-animation-duration, 2000ms) var(--button-animation-easing, ease-in-out) infinite;
}

/* pulse-01: 拡大縮小を繰り返す */
.button-animation-preview-pulse-01 .button-animation-preview-button.is-force-animation,
.button-animation-preview-pulse-01.is-hover-enabled .button-animation-preview-button:hover {
  animation: button-preview-pulse-01 var(--button-animation-duration, 2000ms) var(--button-animation-easing, ease-in-out) infinite;
}

/* flash-01: 点滅する */
.button-animation-preview-flash-01 .button-animation-preview-button.is-force-animation,
.button-animation-preview-flash-01.is-hover-enabled .button-animation-preview-button:hover {
  animation: button-preview-flash-01 var(--button-animation-duration, 2000ms) var(--button-animation-easing, ease-in-out) infinite;
}

/* headshake-01: 首を横に振る */
.button-animation-preview-headshake-01 .button-animation-preview-button.is-force-animation,
.button-animation-preview-headshake-01.is-hover-enabled .button-animation-preview-button:hover {
  animation: button-preview-headshake-01 var(--button-animation-duration, 2000ms) var(--button-animation-easing, ease-in-out) infinite;
}

/* pop-01: ポンと飛び出す */
.button-animation-preview-pop-01 .button-animation-preview-button.is-force-animation,
.button-animation-preview-pop-01.is-hover-enabled .button-animation-preview-button:hover {
  animation: button-preview-pop-01 var(--button-animation-duration, 2000ms) var(--button-animation-easing, ease-in-out) infinite;
}

/* vibrate-01: 細かく振動する */
.button-animation-preview-vibrate-01 .button-animation-preview-button.is-force-animation,
.button-animation-preview-vibrate-01.is-hover-enabled .button-animation-preview-button:hover {
  animation: button-preview-vibrate-01 var(--button-animation-duration, 2000ms) linear infinite;
}

/* Docs text hover compatibility */
.animation-preview-wrapper.wp-block-zenblocks-button-basic.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default {
  opacity: 1 !important;
  visibility: visible !important;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover {
  opacity: 1 !important;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char {
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-01.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char {
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.8, 0, 1, 1), transform 0.9s cubic-bezier(0.8, 0, 1, 1);
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transition-delay: 0.06s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transition-delay: 0.12s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transition-delay: 0.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transition-delay: 0.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transition-delay: 0.66s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transition-delay: 0.72s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transition-delay: 0.78s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transition-delay: 0.84s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transition-delay: 0.96s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transition-delay: 1.02s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transition-delay: 1.08s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transition-delay: 1.14s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transition-delay: 1.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transition-delay: 1.26s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transition-delay: 1.32s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transition-delay: 1.38s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transition-delay: 1.44s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transition-delay: 1.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transition-delay: 1.56s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transition-delay: 1.62s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transition-delay: 1.68s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transition-delay: 1.74s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transition-delay: 1.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.9s cubic-bezier(0.8, 0, 1, 1), transform 0.9s cubic-bezier(0.8, 0, 1, 1);
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.38s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.46s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.62s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.78s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.86s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.94s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 1.02s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 1.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 1.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 1.26s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 1.34s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 1.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 1.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 1.58s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 1.66s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 1.74s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 1.82s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 1.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 1.98s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 2.06s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 2.14s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 2.22s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 2.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 2.38s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 2.46s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 2.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 2.62s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-02.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 2.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char {
  transform: translateX(-20px);
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transition-delay: 0.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transition-delay: 0.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transition-delay: 0.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transition-delay: 0.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transition-delay: 0.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transition-delay: 0.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transition-delay: 0.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transition-delay: 0.65s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transition-delay: 0.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transition-delay: 0.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transition-delay: 0.85s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transition-delay: 0.95s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transition-delay: 1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transition-delay: 1.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transition-delay: 1.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transition-delay: 1.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transition-delay: 1.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transition-delay: 1.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transition-delay: 1.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transition-delay: 1.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transition-delay: 1.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transition-delay: 1.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transition-delay: 1.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  transform: translateX(0);
  opacity: 1;
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.65s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.85s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.95s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 1.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 1.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 1.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 1.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 1.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 1.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 1.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 1.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 1.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 1.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 1.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 1.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 1.65s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 1.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 1.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-03.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 1.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char {
  transform: scale(0.5);
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transition-delay: 0.03s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transition-delay: 0.06s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transition-delay: 0.09s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transition-delay: 0.12s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transition-delay: 0.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transition-delay: 0.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transition-delay: 0.21s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transition-delay: 0.27s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transition-delay: 0.33s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transition-delay: 0.39s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transition-delay: 0.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transition-delay: 0.51s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transition-delay: 0.57s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transition-delay: 0.63s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transition-delay: 0.66s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transition-delay: 0.69s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transition-delay: 0.72s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transition-delay: 0.78s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transition-delay: 0.81s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transition-delay: 0.84s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transition-delay: 0.87s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  transform: scale(1);
  opacity: 1;
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.21s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.27s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.33s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.39s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.51s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 0.57s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 0.63s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 0.66s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 0.69s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 0.72s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 0.78s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 0.81s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 0.84s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 0.87s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 0.93s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 0.96s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 0.99s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 1.02s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-04.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 1.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transition-delay: 0.025s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transition-delay: 0.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transition-delay: 0.075s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transition-delay: 0.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transition-delay: 0.125s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transition-delay: 0.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transition-delay: 0.175s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transition-delay: 0.225s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transition-delay: 0.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transition-delay: 0.275s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transition-delay: 0.325s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transition-delay: 0.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transition-delay: 0.375s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transition-delay: 0.425s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transition-delay: 0.475s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transition-delay: 0.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transition-delay: 0.525s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transition-delay: 0.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transition-delay: 0.575s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transition-delay: 0.625s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transition-delay: 0.65s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transition-delay: 0.675s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transition-delay: 0.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transition-delay: 0.725s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.125s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.175s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.225s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.275s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.325s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.375s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.425s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 0.475s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 0.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 0.525s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 0.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 0.575s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 0.625s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 0.65s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 0.675s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 0.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 0.725s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 0.775s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 0.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 0.825s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-05.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 0.85s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char {
  opacity: 0;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transform: translateY(8px);
  transition-delay: 0.06s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transform: translateY(-8px);
  transition-delay: 0.12s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transform: translateY(8px);
  transition-delay: 0.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transform: translateY(-8px);
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transform: translateY(8px);
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transform: translateY(-8px);
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transform: translateY(8px);
  transition-delay: 0.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transform: translateY(-8px);
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transform: translateY(8px);
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transform: translateY(-8px);
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transform: translateY(8px);
  transition-delay: 0.66s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transform: translateY(-8px);
  transition-delay: 0.72s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transform: translateY(8px);
  transition-delay: 0.78s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transform: translateY(-8px);
  transition-delay: 0.84s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transform: translateY(8px);
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transform: translateY(-8px);
  transition-delay: 0.96s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transform: translateY(8px);
  transition-delay: 1.02s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transform: translateY(-8px);
  transition-delay: 1.08s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transform: translateY(8px);
  transition-delay: 1.14s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transform: translateY(-8px);
  transition-delay: 1.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transform: translateY(8px);
  transition-delay: 1.26s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transform: translateY(-8px);
  transition-delay: 1.32s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transform: translateY(8px);
  transition-delay: 1.38s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transform: translateY(-8px);
  transition-delay: 1.44s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transform: translateY(8px);
  transition-delay: 1.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transform: translateY(-8px);
  transition-delay: 1.56s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transform: translateY(8px);
  transition-delay: 1.62s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transform: translateY(-8px);
  transition-delay: 1.68s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transform: translateY(8px);
  transition-delay: 1.74s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transform: translateY(-8px);
  transition-delay: 1.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.21s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.27s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.33s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.39s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.51s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.57s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.63s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.69s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.81s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.87s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.93s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 0.99s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 1.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 1.11s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 1.17s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 1.23s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 1.29s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 1.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 1.41s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 1.47s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 1.53s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 1.59s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 1.65s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 1.71s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 1.77s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 1.83s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 1.89s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-06.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 1.95s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char {
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.5s ease-out, filter 0.5s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transition-delay: 0.02s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transition-delay: 0.04s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transition-delay: 0.06s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transition-delay: 0.08s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transition-delay: 0.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transition-delay: 0.12s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transition-delay: 0.14s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transition-delay: 0.16s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transition-delay: 0.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transition-delay: 0.22s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transition-delay: 0.26s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transition-delay: 0.28s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transition-delay: 0.32s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transition-delay: 0.34s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transition-delay: 0.38s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transition-delay: 0.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transition-delay: 0.44s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transition-delay: 0.46s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transition-delay: 0.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transition-delay: 0.52s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transition-delay: 0.56s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transition-delay: 0.58s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  filter: blur(0);
  opacity: 1;
  transition: opacity 0.5s ease-out, filter 0.5s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.12s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.14s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.16s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.22s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.26s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.28s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.32s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.34s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 0.38s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 0.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 0.44s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 0.46s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 0.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 0.52s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 0.56s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 0.58s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 0.62s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 0.64s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 0.66s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 0.68s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-07.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 0.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char {
  transform: translateY(-3px);
  opacity: 0;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transition-delay: 0.04s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transition-delay: 0.08s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transition-delay: 0.12s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transition-delay: 0.16s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transition-delay: 0.28s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transition-delay: 0.32s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transition-delay: 0.44s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transition-delay: 0.52s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transition-delay: 0.56s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transition-delay: 0.64s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transition-delay: 0.68s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transition-delay: 0.72s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transition-delay: 0.76s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transition-delay: 0.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transition-delay: 0.84s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transition-delay: 0.88s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transition-delay: 0.92s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transition-delay: 0.96s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transition-delay: 1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transition-delay: 1.04s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transition-delay: 1.08s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transition-delay: 1.12s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transition-delay: 1.16s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transition-delay: 1.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.19s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.23s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.27s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.31s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.39s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.43s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.47s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.51s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.59s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.63s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.67s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 0.71s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 0.79s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 0.83s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 0.87s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 0.91s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 0.95s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 0.99s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 1.03s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 1.07s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 1.11s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 1.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 1.19s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 1.23s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 1.27s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 1.31s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-08.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 1.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char {
  transform: scale(1.5) translateY(-10px);
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transition-delay: 0.03s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transition-delay: 0.06s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transition-delay: 0.09s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transition-delay: 0.12s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transition-delay: 0.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transition-delay: 0.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transition-delay: 0.21s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transition-delay: 0.27s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transition-delay: 0.33s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transition-delay: 0.39s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transition-delay: 0.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transition-delay: 0.51s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transition-delay: 0.57s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transition-delay: 0.63s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transition-delay: 0.66s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transition-delay: 0.69s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transition-delay: 0.72s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transition-delay: 0.78s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transition-delay: 0.81s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transition-delay: 0.84s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transition-delay: 0.87s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  transform: scale(1) translateY(0);
  opacity: 1;
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.18s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.21s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.24s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.27s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.33s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.36s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.39s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.42s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.48s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.51s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.54s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 0.57s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 0.63s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 0.66s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 0.69s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 0.72s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 0.78s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 0.81s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 0.84s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 0.87s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 0.93s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 0.96s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 0.99s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 1.02s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-09.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 1.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char {
  transform: rotate(-15deg) translateY(-5px);
  transform-origin: center bottom;
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(1) {
  transition-delay: 0.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(2) {
  transition-delay: 0.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(3) {
  transition-delay: 0.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(4) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(5) {
  transition-delay: 0.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(6) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(7) {
  transition-delay: 0.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(8) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(9) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(10) {
  transition-delay: 0.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(11) {
  transition-delay: 0.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(12) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(13) {
  transition-delay: 0.65s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(14) {
  transition-delay: 0.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(15) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(16) {
  transition-delay: 0.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(17) {
  transition-delay: 0.85s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(18) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(19) {
  transition-delay: 0.95s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(20) {
  transition-delay: 1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(21) {
  transition-delay: 1.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(22) {
  transition-delay: 1.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(23) {
  transition-delay: 1.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(24) {
  transition-delay: 1.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(25) {
  transition-delay: 1.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(26) {
  transition-delay: 1.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(27) {
  transition-delay: 1.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(28) {
  transition-delay: 1.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(29) {
  transition-delay: 1.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .default .char:nth-child(30) {
  transition-delay: 1.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char {
  display: inline-block;
  transform: rotate(0deg) translateY(0);
  transform-origin: center bottom;
  opacity: 1;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(1) {
  transition-delay: 0.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(2) {
  transition-delay: 0.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(3) {
  transition-delay: 0.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(4) {
  transition-delay: 0.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(5) {
  transition-delay: 0.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(6) {
  transition-delay: 0.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(7) {
  transition-delay: 0.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(8) {
  transition-delay: 0.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(9) {
  transition-delay: 0.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(10) {
  transition-delay: 0.65s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(11) {
  transition-delay: 0.7s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(12) {
  transition-delay: 0.75s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(13) {
  transition-delay: 0.8s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(14) {
  transition-delay: 0.85s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(15) {
  transition-delay: 0.9s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(16) {
  transition-delay: 0.95s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(17) {
  transition-delay: 1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(18) {
  transition-delay: 1.05s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(19) {
  transition-delay: 1.1s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(20) {
  transition-delay: 1.15s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(21) {
  transition-delay: 1.2s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(22) {
  transition-delay: 1.25s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(23) {
  transition-delay: 1.3s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(24) {
  transition-delay: 1.35s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(25) {
  transition-delay: 1.4s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(26) {
  transition-delay: 1.45s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(27) {
  transition-delay: 1.5s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(28) {
  transition-delay: 1.55s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(29) {
  transition-delay: 1.6s;
}
.animation-preview-wrapper.wp-block-zenblocks-button-basic.zenblocks-button-hover-animation-text-10.is-hover-enabled > button:hover .wp-block-zenblocks-button-basic-text .hover .char:nth-child(30) {
  transition-delay: 1.65s;
}

/*# sourceMappingURL=animation-preview-force-hover.css.map */

/* Frame animation keyframes (from ZenBlocks frame animation styles) */
@keyframes frame-shine-01 {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}
@keyframes frame-shine-02 {
  0% { left: -150%; }
  50%, 100% { left: 150%; }
}
@keyframes frame-sparkle-01a {
  0% { top: 18%; left: 72%; opacity: 0; transform: scale(0) rotate(0deg); }
  3% { top: 18%; left: 72%; opacity: 1; transform: scale(1.1) rotate(30deg); }
  12% { top: 18%; left: 72%; opacity: 1; transform: scale(0.9) rotate(120deg); }
  18% { top: 18%; left: 72%; opacity: 0; transform: scale(0) rotate(180deg); }
  28% { top: 65%; left: 22%; opacity: 0; transform: scale(0) rotate(0deg); }
  32% { top: 65%; left: 22%; opacity: 1; transform: scale(1) rotate(45deg); }
  45% { top: 65%; left: 22%; opacity: 1; transform: scale(1) rotate(150deg); }
  52% { top: 65%; left: 22%; opacity: 0; transform: scale(0) rotate(200deg); }
  68% { top: 35%; left: 58%; opacity: 0; transform: scale(0) rotate(0deg); }
  73% { top: 35%; left: 58%; opacity: 1; transform: scale(1.2) rotate(60deg); }
  82% { top: 35%; left: 58%; opacity: 1; transform: scale(0.85) rotate(140deg); }
  90%, 100% { top: 35%; left: 58%; opacity: 0; transform: scale(0) rotate(180deg); }
}
@keyframes frame-sparkle-01b {
  0% { top: 12%; left: 15%; opacity: 0; transform: scale(0) rotate(0deg); }
  5% { top: 12%; left: 15%; opacity: 1; transform: scale(0.95) rotate(50deg); }
  18% { top: 12%; left: 15%; opacity: 1; transform: scale(1.05) rotate(160deg); }
  26% { top: 12%; left: 15%; opacity: 0; transform: scale(0) rotate(210deg); }
  42% { top: 72%; left: 78%; opacity: 0; transform: scale(0) rotate(0deg); }
  47% { top: 72%; left: 78%; opacity: 1; transform: scale(1.15) rotate(35deg); }
  56% { top: 72%; left: 78%; opacity: 1; transform: scale(0.9) rotate(110deg); }
  62% { top: 72%; left: 78%; opacity: 0; transform: scale(0) rotate(170deg); }
  78% { top: 48%; left: 38%; opacity: 0; transform: scale(0) rotate(0deg); }
  82% { top: 48%; left: 38%; opacity: 1; transform: scale(1) rotate(40deg); }
  92% { top: 48%; left: 38%; opacity: 1; transform: scale(1) rotate(130deg); }
  98%, 100% { top: 48%; left: 38%; opacity: 0; transform: scale(0) rotate(180deg); }
}
@keyframes frame-border-run-01 {
  0% { background-position: -50% 0; background-size: 50% 3px; background-image: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%); }
  25% { background-position: 150% 0; background-size: 50% 3px; background-image: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%); }
  25.1% { background-position: 100% -50%; background-size: 3px 50%; background-image: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%); }
  50% { background-position: 100% 150%; background-size: 3px 50%; background-image: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%); }
  50.1% { background-position: 150% 100%; background-size: 50% 3px; background-image: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%); }
  75% { background-position: -50% 100%; background-size: 50% 3px; background-image: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%); }
  75.1% { background-position: 0 150%; background-size: 3px 50%; background-image: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%); }
  100% { background-position: 0 -50%; background-size: 3px 50%; background-image: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%); }
}
@keyframes frame-neon-01 {
  0%, 100% { box-shadow: inset 0 0 5px rgba(255,255,255,0.5), 0 0 5px rgba(255,255,255,0.3), 0 0 10px rgba(255,255,255,0.2); }
  50% { box-shadow: inset 0 0 10px rgba(255,255,255,0.8), 0 0 15px rgba(255,255,255,0.5), 0 0 30px rgba(255,255,255,0.4), 0 0 50px rgba(255,255,255,0.2); }
}
@keyframes frame-laser-horizontal {
  0% { transform: translateX(-100%); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}
