.cs_cart_item_note {
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin-top: 5px;
}

.cs_cart_item_note input {
	height: 33px;
	line-height: 33px;
	border: 0;
	color: black;
	background: rgba(211,236,222,0.5) url(edit.svg) right 12px center no-repeat;
	background-size: 13px auto;
	display: block;
	width: 100%;
	padding: 0 36px 0 16px;
	border-radius: 50px;
	font-size: 14px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.cs_cart_item_note input:focus {
	outline: none;
}

.cs_cart_item_note input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #000;
}
.cs_cart_item_note input::-moz-placeholder { /* Firefox 19+ */
	color: #000;
}
.cs_cart_item_note input:-ms-input-placeholder { /* IE 10+ */
	color: #000;
}
.cs_cart_item_note input:-moz-placeholder { /* Firefox 18- */
	color: #000;
}

.cs_cart_item_note button {
	display: none !important;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	left: -100%;
	top: 0;
	height: 100%;
	width: auto;
	border: 0;
	background: black;
	color: white;
	padding: 0 10px;
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.cs_cart_item_note button.active {
	visibility: visible;
	opacity: 1;
	left: 0;
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.cs_cart_item_note button.success {
	background: #8dac61;
}

.cs_cart_item_note button.failed {
	background: #da425e;
}