
.player_card {
    overflow: hidden;
}
.player_img {
    background: #fff;
}
.player_img img {
    max-width: 102% !important;
    width: 102% !important;
}
.player_img {
	position: relative;
}
.player_img::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-15deg);
	transform: skewX(-15deg);
}
.player_img:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.player_infos:before {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    content: "";
    background: #fff;
    width: 20px;
    height: 101%;
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.player_infos h4.card-title {
    font-size: 16px;
    margin-bottom: 0.4em;
    padding-left: 5px;
}
.player_infos .card-body {
    padding: 1.25rem 0.35rem 1.25rem 0.7rem;
}
.player_infos h5 {
    padding-left: 5px;
}
.player_infos .info_details {
    font-size: 12px;
}
.player_infos ul.social-icons {
    list-style: none;
}
.player_infos ul.social-icons li {
    float: left;
    padding: 0 5px;
}
