/* CSS Document */

.shareList {
	list-style:none;
	display: flex;
    justify-content: flex-end;
	flex-wrap:wrap;
	width:100%;
	margin:0;
	padding:0;
	color:#fff;
}

.shareList__item {
    flex-grow: 1;
	height:50px;
	line-height:50px;
	min-width:100px;
	text-align:center;
}

.shareList__link {
	display:block;
	color:#ffffff;
	text-decoration: none;
}

.shareList__link:link,
.shareList__link:hover,
.shareList__link:visited{
	color:#fff;
}

.shareList__link::before{
	font-size:20px;
	display:block;
	transition: ease-in-out .2s;
}

.shareList__link:hover::before{
	background:#ffffff;
	/*transform: scale(1.2);*/
	box-shadow:1px 1px 4px 0px rgba(0,0,0,0.15);
}

.shareList__link.icon-twitter{background:#55acee;}
.shareList__link.icon-twitter:hover::before{color:#55acee;}

.shareList__link.icon-facebook{background:#3B5998;}
.shareList__link.icon-facebook:hover::before{color:#3B5998;}

.shareList__link.icon-line{background:#1dcd00;}
.shareList__link.icon-line:hover::before{color:#1dcd00;}


@media screen and (max-width: 768px) {
	
	
}