/* app/styles/popover.css */
.agcra-popover.popover-style-yellow .popover-panel {
  animation: none 3s linear infinite;
  animation-fill-mode: both;
  animation-name: bouncing-vertical-top;
}
.agcra-popover .popover-arrow {
  position: absolute;
  width: 10px;
  height: 10px;
}
.agcra-popover .popover-arrow:after {
  content: " ";
  position: absolute;
  top: -25px;
  left: 0;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: inherit;
  box-shadow: -1px -1px 1px #0000001a;
}
.agcra-popover[data-popper-placement^=top] > .popover-arrow {
  bottom: -30px;
}
.agcra-popover[data-popper-placement^=top] > .popover-arrow:after {
  box-shadow: 1px 1px 1px #0000001a;
}
.agcra-popover[data-popper-placement^=bottom] .popover-arrow {
  top: 20px;
}
@keyframes bouncing-vertical-top {
  0%, 30%, 40%, 53.3%, 66.667%, to {
    transform: translateZ(0);
    animation-timing-function: ease-out;
  }
  35% {
    transform: translate3d(0, 25px, 0);
    animation-timing-function: ease-in;
  }
  46.667% {
    transform: translate3d(0, 12.5px, 0);
    animation-timing-function: ease-in;
  }
  60% {
    transform: translate3d(0, 6.25px, 0);
    animation-timing-function: ease-in;
  }
}
/*# sourceMappingURL=/_static/build/_assets/popover-E42RC7FV.css.map */
