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

ol.decimal {
	counter-reset: dec;
}
ol.upper-alpha {
	counter-reset: up-alpha;
}
ol.upper-roman {
	counter-reset: up-roman;
}
ol.decimal > li {
	counter-increment: dec;
}
ol.upper-alpha > li {
	counter-increment: up-alpha;
}
ol.upper-roman > li {
	counter-increment: up-roman;
}
.wysiwyg ol.decimal > li::before {
	content: counter(dec) ". ";
}
.wysiwyg ol.upper-alpha > li::before {
	content: counter(up-alpha, upper-alpha) ". ";
}
.wysiwyg ol.upper-roman > li::before {
	content: counter(up-roman, upper-roman) ". ";
}

/* SITE SPECIFIC TEXT STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.sas-quote {
	background-color: #efefef;
	border-left: 10px solid #a6192e;
	padding: 25px;
}
.sas-quote-with-link {
	background-color: #efefef;
	border-left: 10px solid #a6192e;
	padding: 25px 25px 0 25px;
}
.accordion-image {
	float: left;
	padding-right: 15px;
}
.disclaimer {
	margin-bottom: 25px;
}

.intro-paragraph {
	margin-top: 75px;
}

/* TABLE STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.two-col-left {
	width: 70%;
}
.two-col-right {
	width: 30%;
}
.three-col-left {
	width: 50%;
}
.three-col-middle {
	width: 25%;
}
.three-col-right {
	width: 25%;
}
.seven-col-left {
	width: 28%;
}
.seven-col-right {
	width: 12%;
}
.eight-col-left {
	width: 16%  !important;
}
.eight-col-right {
	width: 10.5% !important;
}
.table-heading {
	text-transform: uppercase;
	font-size: 14px !important;
}

.left-fees-heading {
	width: 70%;
	text-transform: uppercase;
}
.right-fees-heading {
	width: 30%;
	text-transform: uppercase;
}
.left-fees-body {
	width: 70%;
}
.right-fees-body {
	width: 30%;
}


/* SOCIAL MEDIA COMPONENT STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.social-links {
    margin-top: 75px;
    margin-bottom: 75px;
}

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

.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: 60px;
  width: 60px;
  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:25px;
  line-height:60px;
}

.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; 
}