

.show-more {
	max-height: 80px;
	overflow: hidden;
	position: relative;
	transition: max-height 1s;
}
a.show-more-button{
	background:#FFF;
	color: #2B87C8;
	/*height: 30px;*/
	border-radius: 2px !important;
	border: 1px solid #F4F4F4;
	bottom: 0;
	line-height: 15px;
	font-size: 14px;
}
.show-more:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 120px;
	display: block;
	background: linear-gradient(rgba(255,255,255,0), #fff 88%);
	z-index: 9;
	opacity: 1;
	visibility: visible;
	transition: all 1s;
}
.show-more.visible {
	max-height: 2000px;
}
.show-more.visible:after, .show-more.visible .show-more-button {
	opacity: 0;
	visibility: visible;
}
.show-more-button {
	position: absolute;
	bottom: -20px;
	left: 0;
	margin-left: 50%;
	transform: translateX(-50.5%);
	z-index: 10;
	text-align: center;
	display: block;
	opacity: 1;
	min-width:200px;
	visibility: visible;
	transition: all 0.3s;
	padding: 5px 10px;
}
.show-more-button i {
	margin-left: 5px;
    position: relative;
    top: 0px;
    font-size: 14px;
}


