/* code for animated blinking cursor */
.typed-cursor{
    opacity: 1;
    font-weight: 100;
    animation: blink 0.7s infinite;
}
@-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-ms-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-o-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
.kc-fancy-texts{
    color: #666;
    line-height: 1.5;
}
.kc-fancy-texts-play{
    color: #fff;
    background: #42BCE2;
    padding: 4px 10px;
    margin: 0px 6px;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    position: relative;
    box-sizing: content-box;
}
.kc-fancy-texts > span{
    display: inline-block;
    vertical-align: middle;
    line-height: 1.5;

}
.kc-fancy-texts-play > span{
    clear: both;
    display: block;
    text-align: center;
    margin-top: 0;
    white-space: nowrap;
    line-height: 1.5;
}
span.kc-fancy-display{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    display: inline-block;
    float: left;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    line-height: 1.5;
}

.kc-fancy-texts[data-effect=typing] span{
    display: inline-block;
}

div[data-effect=fly] .kc-fancy-texts-play-typing{
    display: none !important;
}