.word-corrector {
  position: relative;
}
.word-corrector .read-popup-btn {
  display: block;
  background-color: transparent;
  color: inherit;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: inherit;
  font-weight: 600;
  border: none;
  border-bottom: 1px solid;
  line-height: inherit;
  height: inherit;
}

#word-corrector-popup {
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#word-corrector-popup.active {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto;
}

#word-corrector-popup.active .word-corrector-popup-box {
  animation: popupFadeIn 0.35s ease forwards;
}

@keyframes popupFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.80);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
