/*	==========================================================================
		level10-core.css
		==========================================================================	*/

/*	module: share
  	--------------------------------------------------------------------------	*/

.level10-share-module {
	background: var(--ultralight);
	border-radius: var(--border-radius);
	padding: 2rem;
}
.level10-share-module ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 2rem 0 0 0;
	font-size: calc(var(--font-size) + 1rem);
	animation: none;
}
.level10-share-module ul > li {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition: 0.5s;
  cursor: pointer;
}
.level10-share-module ul > li:hover,
.level10-share-module ul > li:focus,
.level10-share-module ul > li:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.level10-share-module .email {
	color: #777;
}
.level10-share-module .facebook {
	color: #1877f2;
}
.level10-share-module .twitter {
	color: #1da1f2;
}
.level10-share-module .pinterest {
	color: #bd081c;
}
.level10-share-module .google {
	color: #4285f4;
}

/*	end module: share
  	--------------------------------------------------------------------------	*/