
/* Translation Tag */
.bg-translation {
   background-color: #8be1f1;
   color: #000000;
}

.translation-wrapper {
   position: relative;
   line-height: normal;
   display: inline-block;
}

   .translation-wrapper .translation-tag {
      display: none;
      position: absolute;
      top: -12px;
      left: 0;
      font-size: 8px;
      white-space: nowrap;
      text-overflow: ellipsis;
      cursor: cell;
      background-color: #8be1f1;
      color: #000000;
      padding: 0 3px;
   }

      .translation-wrapper .translation-tag:hover {
      }

   .translation-wrapper.enabled {
      position: relative;
   }

      .translation-wrapper.enabled .translation-tag {
         display: inline-block;
         line-height: 12px;
      }

         .translation-wrapper.enabled .translation-tag:hover {
         }

      .translation-wrapper.enabled .translation-text {
         border: 1px solid #8be1f1;
      }
