/**
<style type="text/css">   @import url("https://ncaaorg.s3.amazonaws.com/assets/styles/sidestyles.css"); </style>
<link href="https://ncaaorg.s3.amazonaws.com/assets/styles/sidestyles.css" rel="stylesheet" />
**/

/************* 
**   Root   **
**************/

:root {
	--sub-header-height: 70px;
	--light-blue-bg: #f6fcff;
	/* --color-default-theme-surface: #f9f9f9; */
}

/********************
** Special Headers **
*********************/

h2.feature-title {
	font-family: supria-sans-condensed, supria-sans, -apple-system, "Helvetica Neue", BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-weight: 600;
	font-size: 2rem;
	text-transform: uppercase;
	text-align: center;
	border-bottom: 3px solid var(--color-primary);
	border-top: 3px solid var(--color-primary);
	clear: both;
}

h3.feature-head, h3.feature-heading {
	font-family: supria-sans-condensed, supria-sans, -apple-system, "Helvetica Neue", BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-weight: 600;
	font-size: 1.5rem;
	text-transform: uppercase;
	text-align: center;
	border-bottom: 1px solid var(--color-default-theme-stroke);
	clear: both;
}

h4.feature-head, h4.feature-heading {
	font-family: supria-sans-condensed, supria-sans, -apple-system, "Helvetica Neue", BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-weight: 500;
	font-size: 1.25rem;
	font-style: italic;
	text-align: center;
	clear: both;
}

@media screen and (min-width: 768px) {
	h2.feature-title {
		font-size: 3rem;
	}
	h3.feature-head, h3.feature-heading {
		font-size: 2rem;
	}
	h4.feature-head, h4.feature-heading {
		font-size: 1.5rem
	}
}

/****************
**    Images   **
*****************/
figcaption {
	font-size: .75rem;
	padding:.5rem 1rem;
	font-weight:500;
	color:#636666;
}

/****************
**    Tables   **
*****************/
table {
	border-collapse: collapse;
	border-spacing: 0;
	border-top: 1px solid rgb(66, 70,74);
	border-bottom: 1px solid rgb(66, 70,74);
}
table caption {
	background: var(--color-default-theme-surface-alt);
	padding: .5rem;
	font-weight: 600;
}

table tr {
	border: none;
}

table tr:nth-child(2n+1) {
	background-color: rgb(224,226,225);
}

table th {
	padding: 0.5rem;
	background-color: rgb(66, 70,74);
	color: rgb(224,226,225);
	font-size: 0.875rem;
	font-weight:500;
	text-transform: uppercase;
	text-align: left;
	border: none;
}

table td {
	border: none;
	padding: .5rem;
	font-size: 0.875rem;
}


	


/*****************
** Inline Lists **
******************/

ul.inline, ul.buttons {
	list-style-type: none;
	padding: unset; 
}
	
ul.inline li {
	display: inline;
	padding: .25rem .5rem;
	margin: .25rem;
	line-height: 2.5;
}

//** buttons need work **//
ul.buttons li {
	display: inline;
	padding: .25rem .75rem;
	margin: .25rem;
	line-height: 2.5;
	border-radius: .5rem;
	border: 1px solid var(--color-nav-lvl2-gray);
}

ul.buttons li:hover {
	border-radius: .5rem;
	border: 1px solid var(--color-nav-border-gray);
	box-shadow: rgba(0, 0, 0, 0.498039) 0px 0px 1px 0px, rgba(0, 0, 0, 0.14902) -1px -1px 10px 0px;
}

/******************
**  Block quotes **
*******************/

blockquote {
	display: block;
	padding: 2rem 4rem;
	margin: 1rem auto 0;
	position: relative;
	background: #f9f9f9;
	font-family: mislab-std, serif;
	font-size: 1.5rem;
	font-weight:500;
	font-style: italic;
	line-height: 1.25;
	text-align: left;
	border-radius: .5rem;
	box-shadow: rgba(0, 0, 0, 0.498039) 0px 0px 1px 0px, rgba(0, 0, 0, 0.14902) 0px 1px 10px 0px;
}

blockquote.orange-bq {
	color: white;
	background: var(--color-secondary);
}

blockquote.blue-bq {
	color: white;
	background: var(--color-primary);
}

blockquote.cite:after {
	content: "\2013 \2003" attr(cite);
	display: block;
	text-align: right;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5rem;
	margin-top: 10px;
	font-family:  supria-sans-condensed, supria-sans, -apple-system, "Helvetica Neue", BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
blockquote.cite.orange-bq:after, blockquote.cite.blue-bq:after  {
	color: white;
}

/*** COMPONENTS ***/

/**************** 
**  Submenu's  **
*****************/

.submenu {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	margin: -24px 0 1rem;
	padding: 0 24px;
	background: var(--color-dark);
	min-height: var(--sub-header-height);
}
.submenu-header {
	display: flex;
	flex: 0 0 auto;
	font-size: 1.3125rem;
	font-weight: 700;
	color: var(--color-text-on-primary);
	padding: .5rem 1rem;
	align-items: center;
	text-transform: uppercase;
	font-family:supria-sans-condensed,sans-serif;
}
.submenu-items {
	display: flex;
	flex: 1 0 auto;
	justify-content: flex-end;
	align-items: center;
}

.submenu-items.centered{
	display: flex;
	flex: 1 0 auto;
	justify-content: center;
	align-items: center;
}
.submenu-item {
	display: flex;
	flex: 0 0 auto;
	font-size: 1rem;
	font-weight: 700;
	padding: 1rem 1rem;
	margin: 0 .125rem 0 0;
	font-family:supria-sans-condensed,sans-serif;
}
div.submenu-item {
	color: var(--color-text-on-primary);
	align-items: center;
	height: 100%;
}
a.submenu-item {
	color: var(--color-text-on-primary);
	text-decoration: none;
	align-items: center;
	height: 100%;
}
a.submenu-item:hover {
	background: var(--color-subnav-hover-gray);
	transition: all .25s linear 0s;
}
/*****************
*** Accordions ***
******************/

/*** Example: https://www.ncaa.org/student-athlete-activism ***/

.ac-container {
		width: 100%;
	}
	
	.ac-container label {
		padding: .5rem 1.5rem;
		margin: .5rem 0;
		position: relative;
		z-index: 20;
		display: block;
		cursor: pointer;
		font-size: 1rem;
		font-weight: 600;
		color: var(--color-primary);
		border-radius: .5rem;
	}
	.ac-container label:hover {
		color: var(--color-dark-theme-brand-text);
		font-weight:800;
	}
	
	.ac-container label:hover:before,
	.ac-container input + label:hover:before { 
		content: '+';
		position: absolute;
		width: 24px;
		height: 24px;
		left: .5rem;
		top: .4rem;
	}
	.ac-container input:checked + label:hover:before {
		content: '-';
		position: absolute;
		width: 24px;
		height: 24px;
		left: .5rem;
		top: .4rem;
	}
	.ac-container input {
		display: none;
	}
	.ac-container article {
		margin-top: -1px;
		overflow: hidden;
		height: 0;
		position: relative;
		z-index: 10;
		transition: height 0.3s ease-in-out linear;
		padding: 0 2rem;
	}
	
	.ac-container input:checked ~ article {
		transition: height 0.5s ease-in-out linear;
		height: auto;
	}
	
	.ac-container article p {
		padding: 0 1rem;
	}

/***  LAYOUT  ***/

/********************
** Full Width Hack **
*********************/

.full-width {
	width: 100vw;
	margin-left: calc(-50vw + 100% / 2);
}


/****************
**  flex rows  **
*****************/

.f-rows {
	display:flex;
	flex-flow: row wrap;
	width: 100%;
	justify-content: center;
}

.f-fifth, .f-one-fifth, .f-third, .f-half, .f-two-thirds, .f-one-third, .f-full {
	flex: 0 0 100%;
	margin: 1rem 0;
}

@media screen and (min-width: 768px) {
	.f-fifth, .f-one-fifth {
		flex: 0 0 30.3%;
		margin: 1rem 1.5%;
	}
	.f-third, .f-one-third, .f-half {
		flex: 0 0 48%;
		margin: 1rem 1%;
	}
	.f-third.fill-space, .f-one-third.fill-space, .f-half.fill-space {
		flex: 1 0 48%;
		max-width:98%;
		margin: 1rem 1%;
	}
	.f-two-thirds, .f-full {
		flex: 0 0 98%;
		margin: 1rem 1%;
	}
}
@media screen and (min-width: 1280px) {
	.f-fifth, .f-one-fifth {
		flex: 0 0 19%;
		margin: 1rem .5%;
	}
	.f-third, .f-one-third {
		flex: 0 0 30.3%;
		margin: 1rem 1.5%;
	}
	.f-two-thirds {
		flex: 0 0 63.6%;
		margin: 1rem 1.5%;
	}
	.f-third.fill-space, .f-one-third.fill-space {
		flex: 1 0 30.3%;
		max-width:97%;
		margin: 1rem 1.5%;
	}
    .f-two-thirds.fill-space {
		flex: 1 0 63.6%;
		max-width:97%;
		margin: 1rem 1.5%;
	}
	.f-full {
		flex: 0 0 97%;
		margin: 1rem 1.5%;
	}
}

/****************
**    Insets   **
*****************/

.inset-sm {
	width: 50%;
	margin: 0 0 20px;
	box-shadow: rgba(0, 0, 0, 0.498039) 0px 0px 1px 0px, rgba(0, 0, 0, 0.14902) 0px 1px 10px 0px;
}

.inset-sm.float-right {
	margin-left: 20px;
}

.inset-sm.float-left {
	margin-right: 20px;
}

.inset-md {
	width: 100%;
	margin: 0 0 20px;
	box-shadow: rgba(0, 0, 0, 0.498039) 0px 0px 1px 0px, rgba(0, 0, 0, 0.14902) 0px 1px 10px 0px;
}

.inset-lg {
	width: 100%;
	margin: 0 0 20px;
	box-shadow: rgba(0, 0, 0, 0.498039) 0px 0px 1px 0px, rgba(0, 0, 0, 0.14902) 0px 1px 10px 0px;
}

.inset-full {
	width: 100%;
	margin: 20px auto;
	box-shadow: rgba(0, 0, 0, 0.498039) 0px 0px 1px 0px, rgba(0, 0, 0, 0.14902) 0px 1px 10px 0px;
}

.limit-full {
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
}

.s-feature .inset-full {
	max-width: 768px;
}

@media screen and (min-width: 768px) {

	.inset-sm {
		width: 33%;
		max-width: 250px;
	}
	
	.inset-md {
		width: 40%;
	}
	
	.inset-lg {
		width: 55%;
	}
	
	.inset-md.float-right, .inset-lg.float-right {
		margin-left: 20px;
	}
	.inset-md.float-left, .inset-lg.float-left{
		margin-right: 20px;
	}
}

@media screen and (min-width: 540px) {

}

/**************** 
**     Card    **
*****************/
.card {
	display: block;
	box-shadow: rgba(0, 0, 0, 0.498039) 0px 0px 1px 0px, rgba(0, 0, 0, 0.14902) 0px 1px 10px 0px;
}

.f-column .card {
	margin-bottom: 2rem;
}

.f-column .card:last-child {
	margin-bottom: 0;
}

.card-body {
	padding: 1rem;
}

.card .card-heading, h3.card-heading {
	font-size:1.125rem !important;
	font-weight:700;
	line-height:1.25;
	text-transform: unset;
}

.card .card-sub-heading, h4.card-heading {
	font-size:1.125rem !important;
	font-weight: 400;
	font-style:italic;
	line-height:1.25;
}

.card-heading a, .card-sub-heading a {
	color: unset;
	text-decoration: none;
}



/*********************************************/
/***            Common Feature             ***/
/*********************************************/
.c-feature {
	
}
.c-feature h3.feature-head {
	background: var(--color-primary);
	color: var(--color-default-theme-page);
}
.c-feature section {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 2rem 5%;
	clear:both;
}

/**********************************************/
/***                                        ***/
/***    Special Features (i.e. ChampMag)    ***/
/***                                        ***/
/**********************************************/

.s-feature {
	
}

.s-feature section {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 2rem 5%;
	//border-bottom: .5px solid var(--color-primary);
	clear: both;
}

.s-feature section ul {
	margin-block-start: unset;
	margin-block-end: unset;
}

.s-feature section p, .s-feature section ul {
	font-family: mislab-std, serif;
	font-size: 1.25rem;
	margin-right: auto;
	margin-left: auto;
}



.s-feature .inset-sm p, .s-feature .inset-md p, .s-feature .inset-lg p, .s-feature .inset-full p {
	font-family: supria-sans-condensed,sans-serif;
	font-size: 1rem;
	margin: 1rem;
}

.s-feature .inset-sm h3, .s-feature .inset-md h3, .s-feature .inset-lg h3, .s-feature .inset-full h3 {
	font-family: supria-sans-condensed,sans-serif;
	font-size: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 1rem;
}
.s-feature .inset-sm h4, .s-feature .inset-md h4, .s-feature .inset-lg h4, .s-feature .inset-full h4 {
	font-family: supria-sans-condensed,sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	margin: 1rem;
}

@media screen and (min-width: 768px) {
	.s-feature section p, .s-feature section ul {
		max-width: 768px;
	}
}

@media screen and (min-width: 540px) {
	.s-feature section p, .s-feature section ul  {
		max-width: 768px;
	}
}



/*********************/
/***    Utility    ***/
/*********************/

.zero-edge {
	padding: 0;
	margin: 0;
	border: 0;
}

.dropcap {
	float: left;
	font-size: 2.25rem;
	font-weight: 700;
	padding-right: 4px;
}

.no-shadow {
	box-shadow: none;
}

/*** Classes ***/
/*
.bg-color-surface {
	background-color: var(--color-default-theme-surface);
}
*/

/**** Old cols ****/
/**************** 
**  3 columns  **
*****************/

div.three-col {
	display:flex;
	flex-flow: row wrap;
	width: 100%;
	justify-content: center;
}
.three-col .card, .three-col .item {
	flex: 0 0 100%;
	margin: 1rem 0;
}
@media screen and (min-width: 768px) {
	.three-col .card, .three-col .item {
		flex: 0 0 48%;
		margin: 1rem 1%;
	}
}
@media screen and (min-width: 1280px) {
	.three-col .card, .three-col .item  {
		flex: 0 0 30%;
		margin: 1rem 1.5%;
	}
}

/**************** 
**  2 columns  **
*****************/

div.two-col {
	display:flex;
	flex-flow: row wrap;
	width: 100%;
	justify-content: center;
}
.two-col .card, .two-col .item {
	flex: 0 0 100%;
	margin: 1rem 0;
}
@media screen and (min-width: 768px) {
	.two-col .card, .two-col .item {
		flex: 0 0 48%;
		margin: 1rem 1%;
	}
}