.see-more {
	font-size: 16px;
	font-weight: bolder;
	position: relative;
	padding-left: 32px;
	cursor: pointer;
	transition: all 0.5s;
	margin-top: 0;
	background-color: transparent;
	border: none;
}

.see-more:before {
	content: "";
	background: url("img/expand.svg") no-repeat;
	height: 22px;
	width: 22px;
	left: 0;
	background-position: 50% 50%;
	position: absolute;
	transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transition: transform 0.3s;
}

.see-more-arrow:before {
	transform: scaleY(-1);
	-ms-transform: scale(-1);
	-webkit-transform: scale(-1);
	-moz-transform: scale(-1);
	-o-transform: scale(-1);
}

@media only screen and (min-width: 768px) {
	.see-more {
		display: block;
	}
}
