.typed-text {
    margin-right: calc( var(--cursor-width) / 2 );
}

.typed-text:not(:empty):after {
    content: "";
    position: absolute;
    height: .75em;
    margin-top: -.05125em;
    width: var(--cursor-width);
    background-color: var(--cursor-color);
    animation: blink .75s infinite;
}

@keyframes blink {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}