/* CKEditor5 CSS */
figure {
  overflow-x: scroll;
}

table {
  font-size: 0.9rem;
  border-collapse: collapse;
}

@media (max-width: 768px) {
  figure table thead {
    flex-wrap: nowrap;
    font-size: 0.5rem;
    margin: 0 0 auto 0;
  }

  figure table tbody {
    flex-wrap: nowrap;
    font-size: 0.5rem;
    margin: 0 0 auto 0;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.blink {
  animation: blink 1.2s infinite ease-in-out;
}

[x-cloak] { display: none !important; }