.al-ifield {
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0.25px;
	color: #666;
	height: 52px;
	background-color: #fff;
	border: 1px solid #999;
	border-radius: 6px;
	width: 100%;
	padding: 14px 42px 0 15px;
	margin: 0;
}
.al-ilabel {
	font-size: 14px;
	color: #666;
	font-weight: 500;
	position: absolute;
	pointer-events: none;
	left: 15px;
	top: 14px;
	transition: 0.2s ease all;
	max-width: calc(100% - 42px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.al-ifield:focus ~ .al-ilabel, .al-ifield.al-ifield-dirty ~ .al-ilabel{
	top: 1px;
	font-size: 12px;
	font-weight: 500;
	color: #666;
	background-color: transparent;
	padding: 0;
}
.al-ifield:hover {
	border: 1px solid #666;
}
.al-ierase {
	position: absolute;
	right: 12px;
	top: calc(50% - 12px);
	width: 24px;
	height: 24px;
	background-image: url(../img/icon/cansel.svg);
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	opacity: 0;
}
.al-ifield:focus ~ .al-ierase, .al-ifield.al-ifield-dirty ~ .al-ierase {
	opacity: 1;
}
.al-ifield-danger {
	border-color: #FB562C;
}
.al-ierror {
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	color: #FB562C;
	display: none;
	position: relative;
}
.al-ifield-danger ~ .al-ierror {
	display: block;
	top: 2px;
}
.al-ifield-danger ~ .al-ierase {
	top: calc(50% - 18px);
}

textarea.al-ifield {
	min-height: 104px;
}
.al-itextarea {
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0.25px;
	color: #666;
	opacity: 0;
	transition: 0.2s ease all;
}
textarea.al-ifield:focus + .al-itextarea {opacity: 1;}
@media (min-width: 769px) {
	.al-ifield {
		height: 56px;
	}
	.al-ierase {
		top: calc(50% - 21px);
	}
	.al-ifield-danger ~ .al-ierase {
		top: calc(50% - 22px);
	}
	.al-ifield-danger ~ .al-ierror {
		top: 6px;
	}
}