.wm_typing_content {
	display:none;
}

#wm_typing_wrap {
	height: 8em;
}
.wm_typing_container {
	text-align: center;
	min-height: 2.5em;
}

.wm_typing_text{
  color: #fff;
  font-family: Courier New;
  font-size: 1.5em;
  line-height: 1em;
  display: contents;
  vertical-align: middle;
  letter-spacing: 2px;
}

.wm_typing_cursor {
	display: none;
	vertical-align: middle;
	width: 3px;
	height: 1em;
	background-color: #fff;
	animation: blink .75s step-end infinite;
  	margin-left: 3px;
}

@keyframes blink {
	from, to { 
		background-color: transparent 
	}
	50% { 
		background-color: #fff; 
	}
}
