  /*  */
:root {
	--primary-red: #a71000;
	--dark-red: #660a00;
	--secondary-dark-gray: #68696e;
	--tertiary-light-gray: #bebec0;
	--f4-light-gray: #f4f4f4;
	--lighter-gray: #eee;
	--accent-blue: #00b2b2;
	--accent-orange: #ff7f00;
	--accent-yellow: #efc700;
	--gradient-blue-green: linear-gradient(
		100deg,
		#00b2b2 37.24%,
		#efc700 98.16%
	);
	--gradient-blue-green-trans: linear-gradient(
		100deg,
		rgba(0, 178, 178, 0.5) 37.24%,
		rgba(239, 199, 0, 0.5) 98.16%
	);
	--black: #000000;
	--white: #ffffff;

	--font-family-body: "Roboto Slab", serif;
	--font-family-heading: "Roboto Condensed", sans-serif;
	--font-family-script: "FilmotypeLucky", serif;

	--border-radius: 0.25em;
}

.right-flyout-tabs {
	position: absolute;
	right: 350px;
}

.right-flyout-tabs ul {
	list-style: none;
	padding: 0;
	min-width: 210px;
}

.right-flyout-tabs ul li {
	background-color: var(--primary-red);
	border-radius: var(--border-radius) 0 0 var(--border-radius);
	margin: 20px 0;
}

.right-flyout-tabs ul li a {
	text-decoration: none;
	color: var(--white);
	display: block;
	padding: 0.5rem 2rem 0.5rem 1rem;
}

.right-flyout-tabs ul li a span.fa {
	margin-right: 10px;
}

.right-flyout-tabs ul li a:hover {
	text-decoration: underline;
}

.flyout-header .flyout-header-menu {
	transition: all 0.3s ease-in-out;
}

.flyout-header-menu.hidden {
	/* right: -351px; */
	right: -367px;
}

.flyout-header-menu {
	right: 0;
}

#menuAccordion,
#sideBarSearch,
#sideBarNews {
	min-height: 400px;
	width: 350px;
	right: 0;
	background-color: var(--secondary-dark-gray);
}

@media screen and (max-width: 576px) {
	#menuAccordion,
	#sideBarSearch,
	#sideBarNews {
		width: 100%;
	}
}

#sideBarSearch a,
#sideBarNews a {
	font-family: var(--font-family-heading);
	color: var(--white) !important;
	text-decoration: none;
}
#sideBarSearch a:hover,
#sideBarNews a:hover {
	text-decoration: underline;
}

#sideBarNews .news-item {
	max-height: 76px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: flex;
	flex-flow: row nowrap;
	gap: 1em;
	margin-bottom: 1em;
}
#sideBarNews .news-item img,
#sideBarNews .news-item p {
	text-overflow: ellipsis;
	white-space: wrap;
	overflow: hidden;
	margin-bottom: 0;
}

#sideBarNews .event-item {
	font-family: var(--font-family-heading);
	max-height: 76px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: flex;
	flex-flow: row nowrap;
	gap: 1em;
	margin-bottom: 1em;
}

#sideBarNews .news-item img,
#sideBarNews .event-item .date {
	flex: 0 0 32%;
}

#sideBarNews .news-item p,
#sideBarNews .event-item .time-and-title {
	flex: 0 0 63%;
}

#sideBarNews .event-item .date {
	text-transform: uppercase;
	display: flex;
	flex-flow: column nowrap;
	font-size: 2.5em;
	line-height: 0.9em;
}
#sideBarNews .event-item .date .day {
	font-weight: 300;
}
#sideBarNews .event-item .date .month {
	font-weight: 700;
}

#sideBarNews .event-item .time-and-title {
	display: flex;
	flex-flow: column nowrap;
	text-overflow: ellipsis;
	white-space: wrap;
	overflow: hidden;
}

#sideBarNews .event-item .time-and-title .time {
	font-family: var(--font-family-body);
}
#sideBarNews .event-item .time-and-title .title {
	font-weight: 700;
}

/*  */

.flyout-header {
	position: relative;
	width: 100%;
	z-index: 99;
	background-color: var(--white);
	padding-right: 1.5em;
}

.flyout-header .navbar {
	padding: 0;
	max-height: 70px;
}

.flyout-header .navbar .row.navbar-inner {
	width: 100vw;
	margin: 0 auto;
	height: 68px;
}

.flyout-header .header-logo {
	display: block;
	padding-top: 10px;
}

.flyout-header .header-logo img {
	max-width: 200px;
	height: auto;
}

.flyout-header .header-buttons .nav-item {
	display: flex;
	align-content: center;
	max-height: 70px;
	font-family: var(--font-family-heading);
	font-weight: 400;
}

.flyout-header .header-buttons .nav-item .nav-link {
/* 	background-color: var(--white); */
	color: var(--black);
	text-transform: uppercase;
	background-color: transparent; 
}

.flyout-header .header-buttons .nav-item .nav-link,
.flyout-header .apply-link {
	height: 40px;
}

.flyout-header .apply-link {
	align-self: flex-start;
	margin-top: 1em;
	white-space: nowrap;
}

.flyout-header .header-buttons .nav-item:not(:last-child) .nav-link:after {
	content: "|";
	margin-left: 6px;
}

@media screen and (min-width: 1200px) {
	.flyout-header .header-buttons .nav-item:not(:last-child) .nav-link:after {
		content: "|";
		margin-left: 25px;
	}
}

.flyout-header .header-buttons .nav-item:hover .nav-link {
	background-color: var(--light-gray);
	color: var(--primary-color);
	text-decoration: underline;
}

.flyout-header .search-toggle {
	background-color: var(--light-gray);
	color: var(--black);
}

#header_search_desktop {
	z-index: 2;
	height: 40px;
	position: relative;
	margin-top: 10px;
}

.flyout-header .search-toggle,
#header_search_desktop {
	right: 0;
	transition: all 0.2s ease-in-out;
}

.flyout-header-menu {
	position: fixed;
	height: 100%;
	background-color: var(--primary-color);
	color: var(--white);
	right: 0;
	z-index: 9999;
	top: 40px;
	padding-bottom: 40px;
}

.flyout-header-menu .accordion-header {
	/* border-bottom: 1px solid rgba(255, 255, 255, 0.25); */
	padding: 10px 0;
	position: relative;
}
.flyout-header-menu .accordion-item:after {
	content: "";
	display: inline-block;
	height: 1px;
	width: 80%;
	margin-left: 10%;
	background-color: rgba(255, 255, 255, 0.25);
	position: absolute;
	margin-top: -1px;
}

.flyout-header-menu .accordion-header:last-of-type {
	border-bottom: none;
}

.flyout-header-menu .accordion-header a {
	width: 82%;
	color: var(--white);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.5rem;
}

.flyout-header-menu .accordion-button {
	width: 16%;
	border-left: 2px solid hsla(0, 0%, 100%, 0.15) !important;
}

.flyout-header-menu .accordion-button:focus-visible {
	outline: 5px auto rgba(0, 150, 255, 1);
	border: 1px solid rgba(0, 0, 0, 0);
}

.flyout-header-menu .accordion-button span,
.flyout-header-menu .fa {
	font-size: 1.25rem;
	color: var(--white);
	margin: 0 auto;
}

.flyout-header-menu .accordion-header a,
.flyout-header-menu .accordion-header .accordion-button {
	font-family: var(--font-family-heading);
	font-weight: 700;
	display: inline-flex;
	text-decoration: none;
	line-height: 1;
	transition: 0.1s;
}

.flyout-header-menu .accordion-header a {
	padding: 10px 30px;
	margin-left: 20px;
}
.flyout-header-menu .accordion-header .accordion-button {
	padding: 10px 18px;
	margin-right: 30px;
}

.flyout-header-menu .accordion-header a:hover,
.flyout-header-menu .accordion-header .accordion-button:hover {
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 3px;
}

.flyout-header-menu .accordion-item,
.flyout-header-menu .accordion-button {
	background-color: transparent;
	border-radius: 0;
	border: none;
}

.flyout-header-menu .accordion-item a.no-dropdown {
}
.flyout-header-menu .accordion-item a.no-dropdown:after {
	font-family: "Font Awesome 5 Free";
	font-size: 1.5rem;
	font-weight: 900;
	content: "\f078";
	transform: rotate(-90deg);
	position: absolute;
	right: 45px;
}

.flyout-header .accordion-button:not(.collapsed) {
	border: none;
}

.flyout-header .accordion-button.collapsed::after,
.flyout-header .accordion-button:not(.collapsed)::after {
	font-family: "Font Awesome 5 Free";
	font-size: 1.5rem;
	font-weight: 900;
	content: "\f078";
	color: var(--white);
	background-image: none;
}
.flyout-header .accordion-button:not(.collapsed)::after {
	margin-left: 4px;
}

/*  */
.flyout-header-menu .accordion-button::before {
	content: unset;
}
/*  */
.flyout-header-menu ul {
	list-style: none;
	padding-left: 0;
}

.flyout-header-menu .accordion .accordion-body {
	padding: 0 1em;
}
.flyout-header-menu .accordion ul li {
	padding: 0.75em 0 0.75em 2.5em;
}

.flyout-header-menu ul li a {
	font-family: var(--font-family-body);
	font-size: 1em;
	text-decoration: none;
	color: var(--white);
}
.flyout-header-menu ul.utility li a:before {
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: 900;
}

.flyout-header-menu ul li a:hover {
	color: #9ea2a2;
	transition: 0.1s;
	text-decoration: underline;
}

.flyout-header-menu .resources-title {
	color: #9ea2a2;
	font-size: 1.5rem;
	font-weight: bold;
}

.skip {
	color: black !important;
	position: absolute;
	top: -1000px;
	left: 15px;
	width: auto;
	height: auto;
	text-align: left;
	overflow: hidden;
	text-decoration: none;
	-webkit-transition: 0.25s;
	-moz-transition: 0.25s;
	transition: 0.25s;
}
.skip:active,
.skip:focus,
.skip:hover {
	outline: 3px solid #fff;
	outline-offset: 1px;
	left: 15px;
	top: 15px;
	width: auto;
	height: auto;
	overflow: visible;
	background: #f4bb33;
	padding: 15px;
	color: #000;
	font-weight: bold;
	box-shadow: 0 0 10px 0 #000;
	z-index: 50001;
	text-decoration: none !important;
}

.mountain-edge {
	width: 100vw;
	height: 77px;
	display: block;
	background: url(/_resources/images/Header-horizontal-Mtn-Line-1.png);
	position: absolute;
	background-repeat: repeat-x;
	z-index: -1;
	top: 68px;
}

.flyout-header-menu.sticky .sidemenu-toggler {
	background-color: var(--primary-red);
	position: fixed;
	top: 0;
	right: 0;
	border-bottom-left-radius: var(--border-radius);
}
.flyout-header-menu.sticky .search-toggler,
.flyout-header-menu.sticky .news-toggler {
	display: none;
}
.flyout-header-menu.sticky #menuAccordion {
	top: -28px;
}

#mobile-search {
	width: calc(100% - 2em);
	margin: 0 1em;
}

.sidemenu-toggler.mobile {
	background-color: var(--primary-red);
	color: var(--white);
	padding: 0.5em 1em 0.75em 1.5em;
	position: absolute;
	top: 0;
	right: 0;
	text-decoration: none;
}

.sidemenu-toggler.mobile:hover {
	text-decoration: underline;
}

.sidemenu-toggler.mobile .fa {
	right: 10px;
	position: relative;
}

.sidemenu-toggler.mobile {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	background-color: var(--primary-red);
	border-radius: 0 0 0 var(--border-radius);
	padding: 0.5rem 2rem 0.5rem 1rem;
	border: none;
}

.sidemenu-toggler.mobile .fa {
	font-size: 1.25rem;
	margin-left: 10px;
}

@media screen and (max-width: 992px) {
	.sidemenu-toggler.mobile {
		display: block;




	}

	.flyout-header-menu {
		overflow: scroll;
	}

	.flyout-header.transparent {
		background-color: var(--white);
	}

	.flyout-header .header-buttons {
		margin-bottom: 20px;
		text-align: center;
	}

	.flyout-header .header-buttons a {
		display: inline;
		padding: 0;
	}

	.flyout-header-menu .accordion-header a {
		font-size: 1.1rem;
	}

	.flyout-header-menu ul li a {
		font-size: 1rem;
	}

	.flyout-header-menu .resources-title {
		font-size: 1.2rem;
	}

	.mountain-edge {
		top: 68px;
	}

	.flyout-header .navbar {
		padding: 0;
		/* max-height: 45px; */
	}
}

@media screen and (max-width: 767px) {
	.flyout-header .navbar {
		padding: 0;
		max-height: 70px;
	}

	.flyout-header .header-logo {
		padding-top: 5px;
	}

	.flyout-header .header-logo img {
		max-width: 150px;
		margin-bottom: 5px;
		height: auto;
	}
}
