.divTextInput
{
	position:relative;
	-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}

.divTextInput .txtTextInput
{
	background-color:transparent;
	border:none;
	color:rgba(0, 0, 0, 0.8);
	font-family:Comfortaa, sans-serif;
	font-size:14px;
	height:35px;
	line-height:35px;
	outline:none;
	padding:0px;
	width:100%;
}

.divTextInput.disabled .txtTextInput
{
	color:rgba(0, 0, 0, 0.5);
}

.divTextInput.clearButton .txtTextInput
{
	padding-right:36px;
	width:calc(100% - 36px);
}

.divTextInput ::-webkit-input-placeholder
{
	color:#bbbbbb;
}

.divTextInput :-moz-placeholder
{
	color:#bbbbbb;
}

.divTextInput ::-moz-placeholder
{
	color:#bbbbbb;
}

.divTextInput :-ms-input-placeholder
{
	color:#bbbbbb;
}

.divTextInput .textInputLabel
{
	color:rgba(0, 0, 0, 0.5);
	font-size:14px;
	height:35px;
	line-height:35px;
	left:0px;
	position:absolute;
	transition:color 0.25s, font-size 0.25s, top 0.25s;
	top:0px;
}

.divTextInput.focus .textInputLabel
{
	color:#547736;
	font-size:12px;
	top:-22px;
}

.divTextInput.hasValue .textInputLabel
{
	font-size:12px;
	top:-22px;
}

.divTextInput .borderLine
{
	background-color:#dddddd;
	bottom:0px;
	height:1px;
	left:0px;
	position:absolute;
	right:0px;
}

.divTextInput .focusLine
{
	background-color:#547736;
	bottom:0px;
	height:2px;
	left:0px;
	opacity:0;
	position:absolute;
	right:0px;
	transition:opacity 0.25s;
}

.divTextInput.focus .focusLine
{
	opacity:1;
}

.divTextInput.disabled.focus .focusLine
{
	opacity:0;
}

.divTextInput .btnClear
{
	cursor:pointer;
	height:36px;
	position:absolute;
	right:0px;
	top:0px;
	width:36px;
}

.divTextInput .btnClear:before, .divTextInput .btnClear:after
{
	background-color:#bbbbbb;
	content:"";
	height:2px;
	left:10px;
	position:absolute;
	top:18px;
	transition:background-color 0.25s;
	width:16px;
}

.divTextInput .btnClear:before
{
	transform:rotate(45deg);
}

.divTextInput .btnClear:after
{
	transform:rotate(-45deg);
}

.divTextInput .btnClear:hover:before, .divTextInput .btnClear:hover:after
{
	background-color:#888888;
}