.is-help {
  cursor: help;
}

.is-overflow-wrap {
    overflow-wrap: anywhere;
}

/* toast */
.toast {
    position: fixed;
    z-index: 100;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.toast-visible {
    opacity: 0.90;
    visibility: visible;
}

/* Those are classes from bulma itself, which gets purged out. The purge process must be done differently. */
.is-hidden {
    display: none !important;
}

