#visual-editor-interaction-overlay {
    z-index: 999997;
    pointer-events: auto;
    background: 0 0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0
}

.semi-portal {
    z-index: 999999 !important
}

[class~=hover\:text-primary]:hover {
    color: inherit !important
}

[class~=hover\:underline]:hover {
    text-decoration: none !important
}

[contenteditable] {
    outline: none !important
}

.editing-breathing-bg {
    animation: 2s ease-in-out infinite breathing-bg-anim !important
}

@keyframes breathing-bg-anim {
    0% {
        background-color: rgba(0, 102, 255, .05)
    }

    50% {
        background-color: rgba(0, 102, 255, .1)
    }

    to {
        background-color: rgba(0, 102, 255, .15)
    }
}