.ajout {
	position: absolute;
	right: 30px;

	width: 200px;
	height: 170px;
	border-radius: 2px;
	border: 1px solid #fff;

	background: #27ae60;

	transform-origin: 100% 100%;
}

.ajout__visible {
	bottom: 5px;
	opacity: 1;
	transform: scale(1.000000000001);
	transition: opacity .33s ease-in-out, transform .33s ease-in-out, bottom .0001s ease-in-out;
}
.ajout__hidden {
		bottom: -300px;
	transition: opacity .33s ease-in-out, transform .33s ease-in-out, bottom .0001s ease-in-out 0.33s;
	opacity: 0;
	transform: scale(0.000000000001);
}

.ajout > form {
	width: 148px;
	height: 118px;
	border: 1px solid #fff;
	border-radius: 2px;
	margin: 25px 0 0 25px;

	overflow: hidden;
}
.ajout input[type="text"] {
	display: block;
	width: 148px;
	height: 40px;
	
	margin: 0;
	padding: 4px;

	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #27ae60;

	background: #fff;

	text-align: center;
}

.ajout input[type="submit"] {
	display: block;
	width: 148px;
	height: 38px;
	margin: 0;
	padding: 0;
	border-radius: 0;
	border: none;

	font-weight: bold;

	background: #27ae60;
	color: #fff;
} 