i.mce-ico.mce-i-jairephrase::before {
    content: "";
    display:block;
    height:20px;
    width:20px;
    background-size: 20px 20px;
    background-image: url(../../img/icon-rephrase.svg);
    background-repeat: no-repeat;
}

i.mce-ico.mce-i-jaiexpand::before {
    content: "";
    display:block;
    height:20px;
    width:20px;
    background-size: 20px 20px;
    background-image: url(../../img/icon-expand.svg);
    background-repeat: no-repeat;
}

i.mce-ico.mce-i-jaicommand::before {
    content: "";
    display:block;
    height:20px;
    width:20px;
    background-size: 20px 20px;
    background-image: url(../../img/icon-prompt.svg);
    background-repeat: no-repeat;
}

.jai-classic-disabled {
    position: relative;
  }

  .jai-classic-disabled::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 444;
  }

  .jai-classic-disabled::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #eee;
    border-top-color: #007bff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: jai-classic-disabled-animation 1s linear infinite;
    z-index: 555;
  }

  @keyframes jai-classic-disabled-animation {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  .wp-admin .jaicommand-tooltip {
    position: absolute;
    top: 50%;
    left: calc(100% + 8px);
    transform: translateY(-50%);
    padding: 6px;
    background-color: #333;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 15px;
    opacity: 1;
    transition: opacity 0.2s ease-out;
    }

    .wp-admin .jaicommand-tooltip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -4px;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #333;
    }

  .wp-admin .jaicommand-tooltip.fade-out {
    opacity: 0;
  }