.cs_cart_item_note {
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0 15px;
}

.cs_cart_item_note input {
	height: 30px;
	line-height: 26px;
	border: 0;
	border-top: 1px solid rgba(151,151,151,0.2);
	background: transparent;
	color: black;
	display: block;
	width: 100%;
	padding: 0 7px;
	-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;
	background: #f1f1f1;
}

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

.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;
}