.overflow{
	overflow:hidden;
	display: inline-block;
	transition: 0.3s;
}

.closed{
	max-height: 35px;

}

.opened{
	max-height:none;
}

.overflow::after{
	padding-right: 30px;
	text-align: right;
	width: 100%;
	height: 30px;
	right: 0px;
	bottom: -2px;
	background: -webkit-linear-gradient(to bottom, rgba(200, 200, 200, 0), rgba(255, 255, 255, 1));
	background: -o-linear-gradient(to bottom, rgba(200, 200, 200, 0), rgba(255, 255, 255, 1));
	background: -moz-linear-gradient(to bottom, rgba(200, 200, 200, 0), rgba(255, 255, 255, 1));
	background: linear-gradient(to bottom, rgba(200, 200, 200, 0), rgba(255, 255, 255, 1));
}