/*
03. Fancy Text Style
*/

.sa_el_fancy_text_container {
    color: #676767;
}

.sa_el_fancy_text_container p {
    margin: 0;
}

.sa_el_fancy_text_strings,
.sa_el_fancy_text_prefix,
.sa_el_fancy_text_suffix {
    display: inline-block;
}

.morphext>.animated {
    display: inline-block;
}

.typed-cursor {
    opacity: 1;
    -webkit-animation: blink_cursor 0.7s infinite;
    animation: blink_cursor 0.7s infinite;
}

@keyframes blink_cursor {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink_cursor {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/*--- Style 2 ---*/

.sa_el_fancy_text_container.style-2 {
    font-size: 24px;
}

.sa_el_fancy_text_container.style-2 .sa_el_fancy_text_strings {
    background: #fff;
    color: #ff5544;
    padding: 5px 5px;
}