#wpadminbar .elemenda-admin-bar-tool > .ab-item {
  position: relative;
  padding-left: 22px;
  cursor: pointer; }
  #wpadminbar .elemenda-admin-bar-tool > .ab-item:before {
    font-family: "eleicon";
    font-style: normal;
    font-weight: normal;
    speak: none;
    text-decoration: inherit;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 13px;
    display: inline-block;
    position: absolute;
    content: "\e84d";
    top: 4px;
    left: 5px;
    opacity: .75; }

#elemenda-loaders {
  display: none;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  top: 0;
  left: 0;
  align-content: center;
  align-items: center;
  text-align: center;
  justify-content: center; }
  #elemenda-loaders.tampilkan {
    display: flex; }
  #elemenda-loaders span.generating {
    display: block;
    overflow: hidden;
    /* Ensures the content is not revealed until the animation */
    border-right: .15em solid orange;
    /* The typwriter cursor */
    white-space: nowrap;
    /* Keeps the content on a single line */
    margin: -20px auto 0;
    /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em;
    /* Adjust as needed */
    animation: typing 3.5s infinite, blink-caret .75s step-end infinite; }

/* The typing effect */
@keyframes typing {
  from {
    width: 0; }
  to {
    width: 100%; } }

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to {
    border-color: transparent; }
  50% {
    border-color: orange; } }
