@import url("https://fonts.googleapis.com/css?family=Open+Sans");

.dsc-wrapper {
	text-align: center;
	margin: 0;
	padding: 0;
}

.dsc-btn {
	font-family: 'Open Sans', 'sans-serif';
	display: inline-block;
	overflow: hidden;
	margin: 0px;
}

.dsc-link {
	width: 150px;
	height: 50px;
	background: #5865F2;
	float: left;
	border-radius: 5px;
	position: relative;
	color: #fff;
	cursor: pointer;
}

.dsc-link>svg {
	width: 40px;
	height: 40px;
	fill: #fff;
	position: absolute;
	top: 5px;
	left: 10px;
}

.dsc-link:hover {
	filter: saturate(1.5) brightness(1.1);
}

.dsc-link:hover svg {
	animation-name: spin;
	animation-duration: .8s;
	animation-timing-function: ease;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.df,
.dfn {
	position: absolute;
	left: 56px;
	line-height: 10px;
}

.df {
	top: 12px;
	font-size: 10px;
}

.dfn {
	top: 26px;
	font-size: 16px;
}
