body.on-page-editor [data-words-counter="true"] {
  padding-bottom: 50px;
  position: relative;
}

body.on-page-editor [data-words-counter="true"] .words-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 5px;
  bottom: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 4px 12px;
  opacity: 0.4;
  -webkit-transform: translateY(0px) scale(0.9);
  -ms-transform: translateY(0px) scale(0.9);
  transform: translateY(0px) scale(0.9);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

body.on-page-editor [data-words-counter="true"] .words-counter > div:not(:first-child) {
  margin-left: 8px;
}

body.on-page-editor [data-words-counter="true"]:hover .words-counter {
  opacity: 1;
  -webkit-transform: translateY(0px) scale(1);
  -ms-transform: translateY(0px) scale(1);
  transform: translateY(0px) scale(1);
}
