/* globals */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  font-family: 'Nunito', sans-serif;
	background-color: #b9b99b;
	color: rgba(35, 50, 90, 0.8);
  margin: 0 auto;
}
a, a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}
a:focus {
  outline: none;
}
ol, ul {
  list-style: none;
}
h1, h2, h3, h4, h5, h6, ul, ol, li, p {
  margin: 0;
  padding-right: 0;
  padding-left: 0;
}
img {
	max-width: 100%;
	height: auto;
}
.antique {
	width: 100%;
	height: 3.25px;
	background: #b9b99b;
}
.navy {
	width: 100%;
	height: 4.75px;
	background: #23325a;
}



/* for screens 319px and below */
#too_small {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 201;
  background-color: #ffffff;
}
#too_small img {
	position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	max-width: 100%;
	max-height: 100%;
	padding: 0.25rem;
}
@media (max-width: 319px) {
	#too_small {
		display: block;
	}
}



/* back to top button styles */
.to_top_btn {
	display: none;
	position: fixed;
	z-index: 151;
	width: 40px;
	height: 40px;
	bottom: 1.5%;
	right: 1.5%;
	-webkit-animation: onloadLogo 0.6s linear forwards;
	animation: onloadLogo 0.6s linear forwards;
}
@media (max-width: 399px) {
	a.to_top_btn {
		margin: 0 5px 5px 0;
	}
}
i.up_arrow {
	border: solid #23325a;
	border-width: 0 3px 3px 0;
	display: inline-block;
	padding: 6px;
  -webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	opacity: 0.6;
}
@media (max-width: 399px) {
	i.up_arrow {
		margin-left: 5px;
		margin-top: 20px;
	}
}
.page_jump:target {
		padding-top: 85.6px;
		margin-top: -85.6px;
	}



/* header area */
header {
	background: #dd0003;
	position: fixed;
	width: 100%;
	z-index: 150;
	-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
}
header {
	text-align: center;
}
header .header_logo {
	padding: 1.0rem 0.5rem 0;
	margin: 0 auto 0.5em;
}
	header .header_logo_crop {
		padding: 1.0rem 0.5rem 0;
		margin: 0 auto 0.5em;
	}
header .header_logo {
	align-self: center;
}
header .header_logo_crop {
	align-self: center;
}
.header_logo a img {
	width: 280px;
	height: 45px;
}
.header_logo_crop a img {
	width: 156.4px;
	height: 45px;
}
@media (max-width: 399px) {
	.header_logo_crop a img {
		min-width: 130.3px;
		max-width: 130.3px;
		height: 37.5px;
	}
}
@media (max-width: 511px) {
	.header_logo {
		display: none;
	}
}
@media (min-width: 512px) {
	.header_logo_crop {
		display: none;
	}
}
.burger_container {
	margin: 16px;
  cursor: pointer;
  padding-top: 3px;
}
.burger1, .burger2, .burger3 {
  width: 40px;
  height: 5px;
  background-color: #23325a;
  margin: 6px 0;
  transition: 0.4s;
}
.burgerChange .burger1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
  transform: rotate(-45deg) translate(-9px, 6px) ;
}
.burgerChange .burger2 {
  opacity: 0;
}
.burgerChange .burger3 {
  -webkit-transform: rotate(45deg) translate(-9px, -6px) ;
  transform: rotate(45deg) translate(-9px, -6px) ;
}
#small_header {
		display: flex;
		flex-direction: column;
	}
#header_container_small {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}
#year_select {
	margin: 16px;
	cursor: pointer;
}
.nav_year_link {
	height: 49px;
	padding: 12px 12.33px 10px 10px;
	margin: 8px 16px 18px;
	font-weight: 700;
	font-size: 1.0rem;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	transition-duration: 0.5s;
}
.nav_year_link, .nav_year_link:link, .nav_year_link:visited {
	color: #b9b99b;
	text-decoration: none;
	background-image: url("../Images/flag_50h.png");
}
.nav_year_link:hover {
	text-decoration: none;
	color: #dd0003;
}
@media (hover: none) {
	.nav_year_link:hover {
		color: #b9b99b;
	}
}



/* for hidden years selection-page jumps */
.nav_year_links {
	height: 43px;
	padding: 9px 16.5px 10px 10px;
	margin: 8px 16px 18px;
	font-weight: 700;
	font-size: 1.0rem;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	transition-duration: 0.5s;
}
.nav_year_links, .nav_year_links:link, .nav_year_links:visited {
	color: #b9b99b;
	text-decoration: none;
	background-image: url("../Images/flag_43h.png");
}
.nav_year_links:hover {
	text-decoration: none;
	color: #dd0003;
}
@media (hover: none) {
	.nav_year_links:hover {
		color: #b9b99b;
	}
}
#year_links_small {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	background: #dd0003;
}
#little_spacer {
	width: 100%;
	height: 25px;
}
@media (min-width: 768px) {
	#little_spacer {
		width: 100%;
		height: 92.5px;
	}
}
.years {
	max-height: 0px;
	overflow: hidden;
	-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
}
.showLinks {
	position: fixed;
	z-index: 100;
	max-height: 99em;
	-webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
}


/* for page navbar container specific */
.pagesNav {
	max-height: 0px;
	top: 0;
	bottom: 0;
	margin-top: 90px;
	position: fixed;
	overflow-x: hidden;
}
@media (min-width: 768px) {
	.pagesNav {
		top: 22px;
	}
}
.showNavbar {
	position: fixed;
	width: 100%;
	max-height: 361.25px;
}
@media (min-width: 768px) {
	.showNavbar {
		max-height: 466.25px;
		margin-top: 70px;
	}
}
.full_height {
	max-height: 99em;
}



/* spacer for navbar + header */
@media (max-width:  767px) {
	#spacer {
	width: 100%;
	height: 85.6px;
	}
}
@media (min-width:  768px) {
	#spacer {
	width: 100%;
	height: 18px;
	}
}



/* navbar area */
.blue_red_nav {
	text-align: left;
	padding: 1.5rem 2rem 0.5rem 0.75rem;
}
.blue_red_nav2 {
	text-align: left;
	padding: 1.75rem 2rem 0.5rem 0.75rem;
}
.section-blue, .section-blue2 {
	background-image: linear-gradient(to right, rgba(35, 50, 90, 1.0), rgba(35, 50, 90, 0.9) 100%);
	height: 66px;
	color: rgba(205, 205, 175, 1);
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.section-blue:hover, .section-blue2:hover {
	-webkit-filter: brightness(125%);
	filter: brightness(125%);
	-webkit-transition: -webkit-filter 0.5s linear;
	-moz-transition: -webkit-filter 0.5s linear;
	transition: -webkit-filter 0.5s linear;
	-webkit-transition: filter 0.5s linear;
	-moz-transition: filter 0.5s linear;
	transition: filter 0.5s linear;
}
.section-blue a, .section-blue2 a {
	color: rgba(205, 205, 175, 1);
}
.section-red, .section-red2 {
background-image: linear-gradient(to right, rgba(221, 0, 3, 1.0), rgba(221, 0, 3, 0.9) 100%);
	height: 66px;
	color: rgba(205, 205, 175, 1);
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.section-red:hover, .section-red2:hover {
	-webkit-filter: brightness(115%);
	filter: brightness(115%);
	-webkit-transition: -webkit-filter 0.5s linear;
	-moz-transition: -webkit-filter 0.5s linear;
	transition: -webkit-filter 0.5s linear;
	-webkit-transition: filter 0.5s linear;
	-moz-transition: filter 0.5s linear;
	transition: filter 0.5s linear;
}
.section-red a, .section-red2 a {
	color: rgba(205, 205, 175, 1);
}
.sect-h3 {
	display: block;
	font-family: 'Lora', serif;
	font-weight:300;
	font-size: 0.9rem;
}
@media (max-width: 1200px) {
	.sect-h3 {
		font-size: 0.75rem;
	}
}
@media (max-width: 851px) {
	.sect-h3 {
		font-size: 0.6rem;
	}
}
@media (max-width: 575px) {
	.sect-h3 {
		font-size: 0.55rem;
	}
}
#calendar_shadow {
	-webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.35);
	-moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.35);
	box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.35);
}



/* new navbar styles */
.nav-box {
	display: flex;
	width: 100%;
	justify-content: flex-end;
}
.nav-content {
	display: flex;
	width: 100%;
	position: relative;
} 
.nav-btns {
	display: flex;
	flex-direction: column;
	width: 20%;
}
.panel1 {
	position: absolute;
	display: block;
	z-index: 2;
}
.panel2 {
	position: absolute;
	display: block;
	z-index: 2;
}
.panel3 {
	position: absolute;
	display: block;
	z-index: 2;
}
.panel4 {
	position: absolute;
	display: block;
	z-index: 2;
}



/* for javascript of navbar */
.show {
	z-index: 4;
}
.highlight {
	border: 2px solid rgba(205, 205, 175, 1) ;
}



/* accordian area */
.accordian_container {
  width: 100%;
  height: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;	
}
.accordian_padding {
	padding: 1.0rem 0.25rem 0.5rem;
}
@media (min-width: 768px) {
	.accordian_padding {
		padding-right: 1rem;
	}
}
@media (min-width: 768px) {
	.row_holder {
		padding-left: 10rem;
	}
}
.link_container {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-end;
	align-items: center;
}
.team_link {
	width: 45%;
	max-width: 76px;
	padding: 8px;
	margin: 4px;
	font-weight: 700;
	font-size: 0.67rem;
}
.american {
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	transition-duration: 0.2s;
}
.american, .american:link, .american:visited {
	color: #b9b99b;	
	text-decoration: none;
}
.american:hover, .american:active, .american:focus {
	text-decoration: none;
	color: #23325a;
}
.national {
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	transition-duration: 0.2s;
}
.national, .national:link, .national:visited {
	color: #b9b99b;
	text-decoration: none;
}
.national:hover, .national:active, .national:focus {
	text-decoration: none;
	color: #dd0003;
}
.right_national {
	background-image: linear-gradient(to left, rgba(35, 50, 90, 1), rgba(35, 50, 90, 1));
	border-radius: 30px;
	text-align: center;
}
.right_american {
	background-image: linear-gradient(to left, rgba(221, 0, 3, 1), rgba(221, 0, 3, 1));
	border-radius: 30px;	
	text-align: center;
}
.left_national {
	background-image: linear-gradient(to right, rgba(35, 50, 90, 1), rgba(35, 50, 90, 1));
	border-radius: 30px;
	text-align: center;
}
.left_american {
	background-image: linear-gradient(to right, rgba(221, 0, 3, 1), rgba(221, 0, 3, 1));
	border-radius: 30px;
	text-align: center;		
}



/*year title bars*/
@media (min-width: 768px) {
	#main_container {
		margin-top: 68px;
	}
}
.title_blue {
	display: flex;
	flex-direction: row-reverse;
	background-image: linear-gradient(to left, rgba(35, 50, 90, 0.85), rgba(35, 50, 90, 0.5) 100%), url(https://uniformlineups.files.wordpress.com/2020/04/pinstripes1.png);
	color: rgba(205, 205, 175, 1);
	height: 125px;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	-webkit-box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.25);
	box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.25);	
	text-align: right;
}
@media (min-width: 1350px) {
	.title_blue {
	padding-right: 12rem;
	}
}
@media (min-width: 992px) and (max-width: 1349px) {
	.title_blue {
	padding-right: 6rem;
	}
}
.title_red {
	display: flex;
	flex-direction: row;
	background-image: linear-gradient(to right, rgba(221, 0, 3, 0.75), rgba(221, 0, 3, 0.45) 100%), url(https://uniformlineups.files.wordpress.com/2020/04/pinstripes1.png);
	color: rgba(205, 205, 175, 1);
	height: 125px;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	-webkit-box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.25);
	box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.25);	
}
@media (min-width: 1350px) {
	.title_red {
	padding-left: 12rem;
	}
}
@media (min-width: 992px) and (max-width: 1349px) {
	.title_red {
	padding-left: 6rem;
	}
}
.title_bar {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1.5rem 0.5rem;
}
@media (min-width: 576px) {
	.title_bar {
		padding-right: 1.0rem;
		padding-left: 1.0rem;
	}
}
@media (min-width: 768px) {
	.title_bar {
		padding-right: 2rem;
	}
}
.title_bar_text {
	font-weight:300;
	font-size: 2.75rem;
	margin-bottom: -0.25rem;
}
@media (max-width: 767px) {
	.title_bar_text {
		font-size: 2.2rem;
	}
}
@media (max-width: 575px) {
	.title_bar_text {
		font-size: 1.6rem;
	}
}
h2.title_bar_text {
	font-family: 'Lora', serif;
}
h2 span {
	font-size: 2.5rem;
	word-spacing: -6px;
}
@media (max-width: 767px) {
	h2 span {
		font-size: 2.125rem;
	}
}
@media (max-width: 575px) {
	h2 span {
		font-size: 1.75rem;
	}
}
h4.title_bar_text {
	font-size: 1.25rem;
	padding-right: 0;
	padding-top: 0.25rem;
}
@media (max-width: 767px) {
	h4.title_bar_text {
		font-size: 1.05rem;
	}
}
@media (max-width: 575px) {
	h4.title_bar_text {
		font-size: 0.85rem;
	}
}
h4.title_right {
	text-align: right;
	padding-right: 1px;
	padding-left: 0;
}



/* image content areas */
.bg_img {
	background-image: url(https://uniformlineups.files.wordpress.com/2020/04/background2.jpg);
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
}
.content_container {
	padding: 4rem 1rem 5rem;
	-webkit-box-shadow: inset 0px 5px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 5px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 5px 10px 0px rgba(0,0,0,0.25);
}
@media (max-width: 767px) {
	.content_container {
		padding: 3rem 1rem 4rem;
	}
}
@media (max-width: 600px) {
	.content_container {
		padding: 2rem 1rem 3rem;
	}
}
.content_container img {
	-webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.35);
	-moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.35);
	box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.35);
}
.content {
	display: block;
	width: 100%;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}


/* specific for TEAM CARDS pages */
.teams_content_container {
	padding: 3rem 1rem 3.5rem;
	-webkit-box-shadow: inset 0px 5px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0px 5px 10px 0px rgba(0,0,0,0.25);
	box-shadow: inset 0px 5px 10px 0px rgba(0,0,0,0.25);
}
@media (max-width: 767px) {
	.teams_content_container {
		padding: 2.5rem 1rem 3rem;
	}
}
@media (max-width: 600px) {
	.teams_content_container {
		padding: 2rem 1rem 2.5rem;
	}
}
.teams_content_container img {
	-webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.35);
	-moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.35);
	box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.35);
}
.teams {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}
.teams_container {
	height: auto;
	margin: 10px;
	cursor: pointer;
}
@media (max-width: 511px) {
	.teams_container {
		max-width: 90px;
		margin: 5px;
	}
}
@media (min-width: 512px) {
	.teams_container {
		max-width: 135px;
		margin: 7.5px;
	}
}
@media (min-width: 650px) {
	.teams_container {
		max-width: 180px;
	}
}

/* for image lightbox - team cards only */
#fullcard_container img {
	position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	width: 324px;
	/*width: 283.5px;*/
	max-height: 100%;
	padding: 1rem;
}


/* specific for uni lineups content area */
.calendars {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}
@media (max-width: 575px) {
	.calendars {
		flex-flow: column nowrap;
		align-items: center;
	}
}
.lineup_container {
	max-width: 450px;
	height: auto;
	margin: 10px;
	cursor: pointer;
}
@media (min-width: 576px) {
	.lineup_container {
		flex: 1 1 33vw;
	}
}
@media (min-width: 992px) {
	.lineup_container {
		flex: 1 1 25vw;
	}
}
@media (min-width: 1912px) {
	.lineup_container {
		flex: 1 1 12.5vw;
	}
}
.lineup_container img {
	max-width: 100%;
}


/* for image lightbox - uni lineups only */
#img_overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.75);
  z-index: 200;
  cursor: pointer;
}
#fullsize_container {	
	max-width: 900px;
}
#fullsize_container img {
	position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	max-width: 100%;
	max-height: 100%;
	padding: 1rem;
}



/* footer area */
#footer {
	position: relative;
	background: #dd0003;
	width: 100%;
	margin: 0 auto;
	padding: 0 0 0.25rem;
	z-index: 30;
	-webkit-box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.5);
	box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.5);
}
#footer_p_container {
	text-align: center;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
.footer_p {
	color: rgba(35, 50, 90, 0.85);
	font-size: 0.65rem;
	margin: 0;
}
#top_footer_p {
	font-size: 0.85rem;
	padding-top: 1rem;
	padding-bottom: 0.25rem;
}
#bottom_footer_p {
	line-height: 0.75rem;
	padding-bottom: 0.75rem;
}
#about_link {
	color: rgba(35, 50, 90, 0.85);
}
#about_link:visited {
	color: rgba(35, 50, 90, 0.85);
}
@media (max-width: 575px) {
	.footer_p {
		font-size: 0.55rem;
	}
	#top_footer_p {
		font-size: 0.75rem;
	}
}



/* additional styles for paragraph text */
.p_text {
	text-align: center;
	padding: 0 1rem 2rem;
	font-size: 1rem;
	font-weight: 400;
}
@media (min-width: 767px) {
	.p_text{
		padding: 0 1rem 2.5rem;
	}
}
@media (min-width: 1200px) {
	.p_text {
		font-size: 1.125em;
		padding: 0 3rem 3rem;
	}
}
@media (max-width: 575px) {
	.p_text {
		font-size: 0.85em;
		padding: 0 0.5rem 1.25rem;
	}
}



/* additional styles for internal links */
.internal_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	padding: 2.5rem 1.67rem 0;
}
@media (max-width: 575px) {
	.internal_container {
		padding: 1.5rem 1.67rem 0;
	}
}
@media (min-width: 1200px) {
	.internal_container {
		padding: 3rem 1.67rem 0;
	}
}
.internal_links_blue, .internal_links_blue:link, .internal_links_blue:visited {
	font-size: 0.65rem;
	text-decoration: none;
	text-align: center;
	color: #b9b99b;
	background-color: rgba(35, 50, 90, 0.8);
	border-radius: 1px;
	padding: 2px 6px;
	margin: 5px;
	cursor: pointer;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	transition-duration: 0.5s;
}
.internal_links_blue:hover {
	text-decoration: none;
	color: #dd0003;
}
@media (hover: none) {
	.internal_links_blue:hover {
		color: #23325a;
	}
}
@media (min-width: 400px) {
	.internal_links_blue, .internal_links_blue:link, .internal_links_blue:visited {
		font-size: 0.75rem;
	}
}
@media (min-width: 575px) {
	.internal_links_blue, .internal_links_blue:link, .internal_links_blue:visited {
		font-size: 0.85rem;
	}
}
@media (min-width: 1200px) {
	.internal_links_blue, .internal_links_blue:link, .internal_links_blue:visited {
		font-size: 0.95rem;
	}
}
.internal_links_red, .internal_links_red:link, .internal_links_red:visited {
	font-size: 0.65rem;
	text-decoration: none;
	text-align: center;
	color: #b9b99b;
	background-color: rgba(221, 0, 3, 0.7);
	border-radius: 1px;
	padding: 2px 6px;
	margin: 5px;
	cursor: pointer;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	transition-duration: 0.5s;
}
.internal_links_red:hover {
	text-decoration: none;
	color: #23325a;
}
@media (hover: none) {
	.internal_links_red:hover {
		color: #23325a;
	}
}
@media (min-width: 400px) {
	.internal_links_red, .internal_links_red:link, .internal_links_red:visited {
		font-size: 0.75rem;
	}
}
@media (min-width: 575px) {
	.internal_links_red, .internal_links_red:link, .internal_links_red:visited {
		font-size: 0.85rem;
	}
}
@media (min-width: 1200px) {
	.internal_links_red, .internal_links_red:link, .internal_links_red:visited {
		font-size: 0.95rem;
	}
}

/* to disable/grey out flag links - TEAM CARDS ONLY */
.flag_disable {
	pointer-events: none;
	filter: grayscale(100%) opacity(50%) invert(100%);
}