/*
Implementation Skeleton v3 - 12/6/18
Add styles to overwrite customer CSS and global oustyles CSS. USE WITH CAUTION.
*/

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

/* SOCIAL MEDIA COMPONENT STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
		
.social-links {
	margin-top: 75px;
	margin-bottom: 75px;
}

.socialMediaWrapper {
	display:flex;
	flex-wrap:wrap;
	margin-top: 25px;
	margin-bottom: 40px;
	padding-left: 10%;
	padding-top: 20px;
	border-left: 12px solid #a6192e;
}

.socialMediaWrapper .icon {
  color: #a6192e;
  margin: 0 20px 40px 20px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  position: relative;
  z-index:2;
}

.socialMediaWrapper .icon span {
  position:relative;
  z-index:2;
  height: 120px;
  width: 120px;
  display:block;
  background: #fff;
  box-shadow: 0 10px 10px rgba(0,0,0,0.1);
  border-radius:50%;
  text-align:center;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-size: 50px;
  line-height: 120px;
}

.socialMediaWrapper .icon:hover span {
  text-shadow: 0px -1px 0px rgba(0,0,0,0.4);
}
.socialMediaWrapper .icon:hover span {
  color: #fff;
}
.socialMediaWrapper .facebook:hover span {
  background:#3B5999;
}
.socialMediaWrapper .twitter:hover span {
  background:#46C1F6;
}
.socialMediaWrapper .github:hover span {
  background:#333;
}
.socialMediaWrapper .youtube:hover span {
  background:#de463b;
}

.socialMediaWrapper .linkedin:hover span { 
  background:#0a66c2;
}
.socialMediaWrapper .snapchat:hover span {
  background:#0a66c2;
}

.socialMediaWrapper .instagram:hover span {
    background: #f09433; 
}