/***********/
/**PREFFIX*/
/***********/
/***********/
/**MAX-WIDTH*/
/***********/
/***********/
/**FONTS/
/***********/
/***********/
/**COLORS*/
/***********/
/**************/
/**BREKPOINTS**/
/**************/
/**************/
/**CONTAINER HEIGHTS**/
/**************/
/**************/
/**CONTAINER WIDTHS**/
/**************/
/**************/
/**GAPS**/
/**************/
/***********/
/**FONT-SIZES*/
/***********/
/**************/
/**ANIMATION**/
/**************/
/***********/
/**PREFFIX*/
/***********/
/***********/
/**MAX-WIDTH*/
/***********/
/***********/
/**FONTS/
/***********/
/***********/
/**COLORS*/
/***********/
/**************/
/**BREKPOINTS**/
/**************/
/**************/
/**CONTAINER HEIGHTS**/
/**************/
/**************/
/**CONTAINER WIDTHS**/
/**************/
/**************/
/**GAPS**/
/**************/
/***********/
/**FONT-SIZES*/
/***********/
/**************/
/**ANIMATION**/
/**************/
/**
 * fullheight
 */
/**
 * Touch
 */
/**
 * No Touch
 */
/**
 * Touch
 */
/**
 * background-color rgba
 */
/**
 * color rgba
 */
/**
 * breakpoint
 */
.zm-wpb_bubble {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.zm-wpb_bubble .wrapper {
  display: block;
  flex-grow: 1;
  width: 100%;
}
.zm-wpb_bubble.has-link .bubble .liquid-hover {
  opacity: 1;
}
html:not(.is-device-touch) .zm-wpb_bubble.has-link .bubble:hover .liquid-normal {
  transform: scale(0.8);
}
html:not(.is-device-touch) .zm-wpb_bubble.has-link .bubble:hover .liquid-hover {
  transform: scale(1);
}
.zm-wpb_bubble .bubble {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  aspect-ratio: 1;
  margin: auto;
}
.zm-wpb_bubble .bubble .liquid {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% + 50px);
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.zm-wpb_bubble .bubble .liquid-bg {
  position: relative;
  line-height: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}
.zm-wpb_bubble .bubble .liquid-normal, .zm-wpb_bubble .bubble .liquid-hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform-origin: center center;
}
.zm-wpb_bubble .bubble .liquid-hover {
  opacity: 0;
  border-radius: 100%;
  transform: scale(0.8);
  transition: transform 0.3s ease-out;
}
.zm-wpb_bubble .bubble .liquid-normal {
  animation: zm-wpb_bubble-ani 20s ease-out infinite alternate;
  transform: scale(1);
  transition: transform 0.3s ease-out;
}
.zm-wpb_bubble .bubble .inner {
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease-out;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.zm-wpb_bubble.ambient-green .bubble .liquid-normal,
.zm-wpb_bubble.ambient-green .bubble .liquid-hover {
  background: #4a492b;
}
.zm-wpb_bubble.ambient-yellow .bubble .liquid-normal,
.zm-wpb_bubble.ambient-yellow .bubble .liquid-hover {
  background: #B19C92;
}
.zm-wpb_bubble.size-small .bubble .inner {
  padding: 20px;
}
.zm-wpb_bubble.size-standard .bubble .inner {
  padding: 30px;
}

@keyframes zm-wpb_bubble-ani {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}