.p-share{
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 38px;
	height: 38px;
	border-radius: 38px;
	border: 1px solid #2f2f2f;
	text-align: center;
}
.p-share > a{
	z-index: 2;
	margin: 0;
	padding: 0;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
}

.p-share > a > img{
	width: auto;
	height: 15px;
}
.p-share::before {
	content: '';
	position: absolute;
	top: 0;
	left: -180%;
	width: 160%;
	height: 102%;
	background: #ddd;
	z-index: 1;
	transform: skewX(20deg);
}


@media (hover: hover) {
	.p-share:hover::before {
		animation: skew .5s forwards;
	}
}