
@font-face {
	font-family: "Google Sans Flex";
	src: url(/style/fonts/google_sans_flex/GoogleSansFlex-VariableFont_GRAD,ROND,opsz,slnt,wdth,wght.ttf) format("truetype");
}

body,
html {
	padding: 0px;
	margin: 0px;
	background: dimgray;
	font-family: 'Google Sans Flex', sans-serif;
}

.nomContainer {
	word-break: break-word;
}

.cursor-pointer {
	cursor: pointer;
}

.text-link {
	color: #007bff !important;
	cursor: pointer;
}

.text-link:hover {
	cursor: pointer;
}

.container,
.container-fluid {
	background: white;
	padding: 0px;
	box-shadow: 2px 3px 24px;
}

.container {
	max-width: 1160px;
}

#navBar {
	position: sticky;
	top: 0;
	z-index: 99;
}
#navBarUpper {}


nav .link i.fas {
  margin-right: 1rem;
  display: inline-block;
  width: 1rem;
  color: #ececec;
}

.buttonIcon {
	background: none;
	border: 0px;
	outline: 0px;
	display: block;
	cursor: pointer;
}

.buttonIcon:focus {
	border: 0px;
	outline: none;
}

.addButton {

	border: 1px solid #4f7dfa;
	background: white;
	color: #4f7dfa;
	font-size: .8rem;
	font-weight: bold;
}

.fullHeight {
	height: 100%;
}

#loginArea {
	width: 95%;
	max-width: 512px;
	padding: 90px;
	border: 1px solid lightgray;
	border-radius: 5px;
	margin: 0 auto;
	box-shadow: 0px 1px 4px lightgray;
}

h1,
h2,
h3,
h4,
h5 {
	line-height: 1.2em;
	padding: 0px;
	margin: 0px;
}

.tab-nav-layout h5 {
	margin-bottom: .8rem;
}

.table thead th {
	border-top: 0px;
}

#contentInner {
	padding: 12px;
}

.trash {
	color: #dc3545;
	font-size: .9rem;
}

.add {
	color: #3ba03b;
	font-size: .9rem;
}

.textAreaFacade {
	background: inherit;
	border: 0px;
	outline: 0px;
	cursor: pointer;
	height: 100%;
	resize: none
}

.textAreaFacade:hover {
	border-radius: 5px;
	background: rgb(250, 250, 250);
}

textarea .textAreaFacade {
	height: 1.5em;
}

.nav-pills {
	text-align: center;
}


.camperNoteArea {
	width: 220%;
	height: 75%;
	margin-bottom: 10px;
}

.singleLineTextarea {
	height: 36px;
}


.row>*>section {
	padding: 6px;
}

@media (min-width: 576px) {}


@media (min-width: 768px) {}

@media (max-width:843px) {}

@media (max-width:900px) {
	.noMobile {
		display: none !important;
	}
}

@media (min-width:900px) {
	.mobileOnly {
		display: none;
	}

	.nav-pills {
		text-align: left;
	}
}


@media (min-width: 992px) {

	.camperNoteArea {
		width: auto;
		height: 75%;
	}
}


@media (min-width: 979px) {
	ul.nav li.dropdown:hover>ul.dropdown-menu {
		display: block;
	}
}

@media (min-width: 1200px) {}


#iconShelf {
	position: fixed;
	right: 1%;
	bottom: 1%;
	height: 32px;
	width: 32px;
	pointer-events:none;
}

#snackBar {
	transition: top .5s ease-in-out, opacity .5s ease-in-out; 
	opacity:0;
	pointer-events:none;
	min-width: 250px;
	color: black;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 101;
	left: 20%;
	right: 20%;
	top: 0px;
	font-size: 17px;
	font-weight: 300;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, .75);
	font-family: inherit;
	max-width: 600px;
  	margin: auto;
}

#snackBar.show {
	visibility: visible;
	top: 30px;
	opacity: 1;
	pointer-events:all;
}
#snackBar.snackBarAnimation:not(.manual) {
	visibility: visible;
	top: 30px;
	opacity: 1;
	pointer-events:all;
}
#snackBar .sb-close-button {
	display:none;
	margin-left: auto;
	font-size: 24px;
	margin-top: -15px;
  margin: 0px;
  height: auto;
  padding: 0px;
  line-height: 1rem;
}
#snackBar.manual .sb-close-button {
	display:block;
}

.sb-heading {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: -9px;  
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 1rem;
} 
@-webkit-keyframes fadeInsnackBar {
	from {
		top: 0;
		opacity: 0;
	}

	to {
		top: 30px;
		opacity: 1;
	}
}

@keyframes fadeInsnackBar {
	from {
		top: 0;
		opacity: 0;
	}

	to {
		top: 30px;
		opacity: 1;
	}
}

@-webkit-keyframes fadeOutsnackBar {
	from {
		top: 30px;
		opacity: 1;
	}

	to {
		top: 0;
		opacity: 0;
	}
}

@keyframes fadeOutsnackBar {
	from {
		top: 30px;
		opacity: 1;
	}

	to {
		top: 0;
		opacity: 0;
	}
}



.tooltip {
	position: relative;
	display: inline-block;
	opacity: 1;
	z-index: 1;
	cursor: help;
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 120px;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -60px;
	opacity: 0;
	transition: opacity 0.3s;


	box-shadow: 0px 0px 10px rgba(0, 0, 0, .75);
}

.tooltip.tooltip-bottom .tooltiptext {
	bottom: auto;
	top: 125%;
}

.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}

.tooltip.tooltip-bottom .tooltiptext::after {
	top: auto;
	bottom: 100%;
	border-color: transparent transparent #555 transparent;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

#secretPixel:link {
	color: dimgray;
}

.nxg-ico {

	display: inline-block;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: center;
}

.nxg-enter {
	background-image: url('data:image/svg+xml,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="88.363px" height="122.879px" viewBox="0 0 88.363 122.879" enable-background="new 0 0 88.363 122.879" xml:space="preserve"><g><path d="M42.078,64.589H3.118C1.396,64.589,0,63.179,0,61.439s1.396-3.149,3.118-3.149h38.958L29.405,43.778 c-1.137-1.298-1.017-3.281,0.268-4.429c1.285-1.148,3.248-1.027,4.385,0.271l17.238,19.742c1.059,1.208,1.027,3.009-0.02,4.179 L34.057,83.26c-1.137,1.298-3.1,1.419-4.385,0.271c-1.284-1.148-1.404-3.132-0.268-4.43L42.078,64.589L42.078,64.589z M47.434,122.786c-1.77,0.428-3.55-0.659-3.978-2.428s0.659-3.55,2.427-3.978c4.258-1.032,7.932-1.761,11.303-2.428 c15.99-3.168,24.566-4.866,24.566-27.147V34.258c0-20.817-9.068-22.512-24.086-25.318c-3.596-0.672-7.498-1.401-11.783-2.441 c-1.768-0.428-2.855-2.208-2.427-3.978c0.428-1.769,2.208-2.855,3.978-2.428c4.02,0.976,7.885,1.698,11.447,2.363 c18.383,3.436,29.482,5.51,29.482,31.801v52.548c0,27.705-10.443,29.773-29.912,33.63 C54.986,121.121,51.215,121.869,47.434,122.786L47.434,122.786z"/></g></svg>');
}

.nxg-exit {
	background-image: url('data:image/svg+xml,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="89.149px" height="122.88px" viewBox="0 0 89.149 122.88" enable-background="new 0 0 89.149 122.88" xml:space="preserve"><g><path d="M79.128,64.598H40.069c-1.726,0-3.125-1.414-3.125-3.157c0-1.744,1.399-3.158,3.125-3.158h39.057L66.422,43.733 c-1.14-1.301-1.019-3.289,0.269-4.439c1.288-1.151,3.257-1.03,4.396,0.271l17.281,19.792c1.061,1.211,1.029,3.019-0.02,4.19 l-17.262,19.77c-1.14,1.302-3.108,1.423-4.396,0.271c-1.287-1.151-1.408-3.139-0.269-4.44L79.128,64.598L79.128,64.598z M42.396,116.674c1.689,0.409,2.727,2.11,2.318,3.799c-0.409,1.689-2.109,2.728-3.799,2.318c-3.801-0.922-7.582-1.671-11.052-2.358 C10.426,116.583,0,114.519,0,86.871V34.188C0,7.96,11.08,5.889,29.431,2.46c3.572-0.667,7.448-1.391,11.484-2.371 c1.689-0.409,3.39,0.629,3.799,2.319c0.408,1.689-0.629,3.39-2.318,3.799c-4.291,1.041-8.201,1.771-11.805,2.445 C15.454,11.48,6.315,13.188,6.315,34.188v52.683c0,22.467,8.643,24.179,24.756,27.37C34.453,114.911,38.138,115.642,42.396,116.674 L42.396,116.674z"/></g></svg>');
}

/*

.loader,
.loader:before,
.loader:after {
  background: #ffffff;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader {
  color: black;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.5em;
}*/
@-webkit-keyframes load1 {

	0%,
	80%,
	100% {
		box-shadow: 0 0;
		height: 4em;
	}

	40% {
		box-shadow: 0 -2em;
		height: 5em;
	}
}

@keyframes load1 {

	0%,
	80%,
	100% {
		box-shadow: 0 0;
		height: 4em;
	}

	40% {
		box-shadow: 0 -2em;
		height: 5em;
	}
}

code.alert.alert-danger {
	display: block;
}

.loader2 {
	color: official;
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}

.loader2 div {
	transform-origin: 32px 32px;
	animation: loader2 1.2s linear infinite;
}

.loader2 div:after {
	content: " ";
	display: block;
	position: absolute;
	top: 3px;
	left: 29px;
	width: 5px;
	height: 14px;
	border-radius: 20%;
	background: #fff;
}

.loader2 div:nth-child(1) {
	transform: rotate(0deg);
	animation-delay: -1.1s;
}

.loader2 div:nth-child(2) {
	transform: rotate(30deg);
	animation-delay: -1s;
}

.loader2 div:nth-child(3) {
	transform: rotate(60deg);
	animation-delay: -0.9s;
}

.loader2 div:nth-child(4) {
	transform: rotate(90deg);
	animation-delay: -0.8s;
}

.loader2 div:nth-child(5) {
	transform: rotate(120deg);
	animation-delay: -0.7s;
}

.loader2 div:nth-child(6) {
	transform: rotate(150deg);
	animation-delay: -0.6s;
}

.loader2 div:nth-child(7) {
	transform: rotate(180deg);
	animation-delay: -0.5s;
}

.loader2 div:nth-child(8) {
	transform: rotate(210deg);
	animation-delay: -0.4s;
}

.loader2 div:nth-child(9) {
	transform: rotate(240deg);
	animation-delay: -0.3s;
}

.loader2 div:nth-child(10) {
	transform: rotate(270deg);
	animation-delay: -0.2s;
}

.loader2 div:nth-child(11) {
	transform: rotate(300deg);
	animation-delay: -0.1s;
}

.loader2 div:nth-child(12) {
	transform: rotate(330deg);
	animation-delay: 0s;
}

@keyframes loader2 {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

#iconShelf {
	position: fixed;
	right: 1%;
	bottom: 1%;
	height: 82px;
	width: 82px;
	z-index: 90;
	poiner-events: none;
}
/*
.egg,
.egg:after {
	border-radius: 50%;
	width: 24px;
	height: 32px;
	margin-top: -2px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, .75);
}*/

.egg {
	background: url(/assets/img/stcircle-mini.png);
	font-size: 10px;
	position: relative;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 2.1s infinite cubic-bezier(.79,.14,.15,.86);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	width:64px;
	height:64px;
}

@-webkit-keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.egg:before,
.egg:after {
	content: none;
}




body,
html {
	/*overflow-x:hidden;*/
	background: white;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12 {
	padding: 0px;
}

.pRow {
	padding-left: 15px;
	padding-right: 15px;
}

.container {
	width: 100vw;
	max-width: 100%;
	/* <- scrollbar fix */
	margin: 0px;
	display: flex;
	box-shadow: 0px 0px;
}

.paddedLand {
	padding: 12px;
}

.row {
	margin: 0px;
}

/* EXPERIMENTAL */

#navBar {

	height: 100vh;
	/*flex-basis:18%;*/
	/*width:18%;*/

	width: 251px;

	margin: 0px;
	padding: 12px;
	padding-top: 4px;
	box-shadow: 5px 0px 5px rgba(0, 0, 0, .15);
	/*margin-right: .5%;*/
	position: sticky;

	background:#222c3c;

	flex-shrink: 0;
}

#navBar::-webkit-scrollbar {
	display: none;
}

#contentInner {

	/*	max-width:100%;
				min-width:75%;
				flex-basis:80%;*/
	flex-grow: 1;
	padding: 0px;
	/*margin-left:1em;*/
}

.collapse {
	color: inherit;
	/*bugger off linter. */
}

/*.dropdown-toggle::after { display:none; content:""; }*/
.navbar-nav .dropdown-menu {
	position: relative;
	float: none;
	display: block !important;
	border: 0px;
	margin: 0px;
	padding: 0px;
}

#navBar nav a.dropdown-item {
	padding-left:2rem;
}
nav .dropdown-item,
.logoutLink {
	font-size: 15px;
	color: #b7c0cd;
}

.dropdown-item.active:hover,
.dropdown-item.active {
	background: #92c7f3;
	color:black;
	border-radius: 60px;
}

nav .dropdown-item:hover {
	color: white;
	background: none;
}

a.nav-link.dropdown-toggle {
	color: white;
}

.dropdown-toggle {
	display:flex;
	justify-content:space-between;
}

.dropdown-toggle .caret {
	transition: transform .25s ease-in-out;
	transform:rotate(180deg);
}
.dropdown-toggle.open .caret {
	transform:rotate(270deg);
}
.dropdown-toggle .contract { display:none; }
.dropdown-toggle.open .expand { display:none; }
.dropdown-toggle .expand { display:block; }
.dropdown-toggle.open .contract { display:block; }
.dropdown-toggle::after { display:none; }

.dropdown-toggle + .dropdownLinks {
	height:0px;
	transition: height .5s ease-in-out;
	overflow:hidden;
} 

.dropdown-divider {
	border-top: 0px;
}

.nav-item.dropdown.show {
	overflow: visible;
	height: auto;
}

.nav-item.dropdown {
	overflow: hidden;
}

nav .dropdown-menu.show {
	position: relative !important;
	transform: none !important;
}

.navbar-brand {
	color: white;
	margin-top: 10px;
}

.dropdownLinks.inactive { 
}

/*#chillBar { width:100vw; background:#262626;height:30px; }*/

.locationAndQR {
	margin: 10px;
	margin-left: 0px;
	margin-right:0px;
	display: flex;
	align-items: center;
}

.locationAndQR a {
	padding: 12px;
}

#pageHeaderRow {
	position: -webkit-sticky;
	position: sticky;
	top: 0px;
	background: white;
	z-index: 2;
	padding: 12px;
	padding-bottom: 0px;
	margin-top: -12px;
	padding-top: 12px;
	align-items: baseline;
}

.col-md-2 .nav.nav-pills.row {
	position: sticky;
	top: 12px;
	background: white;
}

.navbar-toggler {
	display: none;
}

.navbar-brand {
	font-family: 'Quicksand', Sans-serif;
}

#expandon {
	display: none;
	height: 100%;
	align-items: flex-end;
}

.tab-nav-tab {
	padding: 12px;
	padding-top: 0px;
	display:none;
}
.tab-nav-tab.active {
	display:block;
}

.nav.nav-pills.row,
.nav.nav-pills.row.pillCup {
	border-right: 1px solid lightgray;
	vertical-align: top;
	padding: 12px;
}

#locationSelect {
	padding-left: .5em;
	background: rgba(0, 0, 0, 0.15);
	color: white;
	border: 1px solid #2727279c;
	box-shadow: 0px 0px 5px inset #0000003b;
	border-radius: 4px;
	height: auto;
	padding-top: 8px;
	padding-bottom: 8px;
}

.nav-pills .nav-link {
	border-radius: 0px;
}

.nav-pills a.nav-link:hover {
	background: #007bff0f;
}

.nav-pills a.nav-link.active:hover {
	background: #007bff;
}


/*The container */
.tab-nav-layout {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	flex-flow: wrap;
	justify-content: space-between;
	padding: 12px;
}

/*The page title */
.tab-nav-layout>h2 {
	display: block;
	flex-basis: 100%;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

/* The Page Links */
.tab-nav-menu {
	display: block;
	flex-basis: 12%;
}

.tab-nav-menu a.active {
	background: #007bff;
	color: white;
}

.tab-nav-menu a.active:hover {
	background: #007bff;
	color: white;
}

.tab-nav-menu a { 
	padding: .5rem 1rem;
	color: #007bff;
	text-decoration: none;
	background-color: transparent;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}

.tab-nav-menu a:hover {
	color: #0056b3;
	background: #007bff0f;
}

/* The individual sub-pages */
.tab-nav-pages {
	display: flex;
	flex-grow: .85;
	flex-basis: 80%;
	padding: 12px;
}

.tab-nav-tab {

	width: 960px;
	max-width: 100%;
	margin-right: auto;
	margin-left: 2rem;
}

.tab-nav-tab h3 {
	display: block;
	margin-bottom: 14px;
}

.rLabel {
	display: none;
}


[data-birthday="true"] [data-jbui-name="name"]:after {
	content: ' 🧁';
	text-decoration: none;
	opacity: .8;
	pointer-events: none;
}

/* Rene's green dot */
@media screen and (min-width:991px) {
	[data-checkin-direction="in"] .checkinCheckoutPlate:before {
		position: absolute;
		display: block;
		width: 12px;
		height: 12px;
		border-radius: 43px;
		content: ' ';
		background: #4CAF50;
		overflow: hidden;
		margin-left: -1.5rem;
		margin-top: .6rem;
	}
}

@media only screen and (max-width: 1447px) {

	.tab-nav-tab {

		width: 100%;

		margin-right: auto;
		margin-left: auto;
	}
}

@media only screen and (min-width: 1201px) {
	.tab-nav-menu {
		height: -moz-fit-content;
		height: fit-content;
		position: sticky;
		top: 83px;
		max-height: calc(100vh - 83px);
	}

	.curriculum #project-selector {
		display: none;
	}
}

@media only screen and (max-width: 1200px) {

	.curriculum #project-selector {
		display: block;
	}

	.curriculum b,
	.curriculum br,
	.curriculum a {
		display: none;
	}

	.tab-nav-layout>h2 {
		flex-basis: auto;
		flex-shrink: 1;
		margin-bottom: 0px;
		padding-bottom: 0px;
		border-bottom: 0px;
	}

	.tab-nav-menu {
		flex-basis: auto;
		flex-grow: 1;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.tab-nav-menu select {
		margin-left: .5rem;
	}

	.tab-nav-pages {
		flex-basis: 100%;
		margin-top: 1rem;
		padding-top: 1rem;
		border-top: 1px solid rgba(0, 0, 0, .1);
	}
}

.mobile-nav {
	display:none;
}
#blackout {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: black;
  z-index: 3;
  opacity: 0;
  pointer-events:none;
  transition: opacity .25s ease-in-out;
}



.tab-nav-menu .fas {
  display: inline-block;
  width: 1rem;
  margin-right: .75rem;
  aspect-ratio: 1 / 1;
}

.blackout #blackout  {
	opacity: .5;
	pointer-events:auto;
}

/* Mobile Styles */
@media only screen and (max-width:900px) {
	.mobile-nav {
		
		position: sticky;
		top:0;
		height: 50px;
		width: 100%;
		background: #222c3c;
		justify-content: space-between;
		align-items: center;
		display: flex;
		z-index:1;
	}
	.navbar-brand {
		margin-top: 0px;
	}

	body>.container {
		flex-direction: column;
		/*overflow-x: hidden;*/
	}

	#navBar {

		overflow: hidden;
		transition: right .25s ease-out;
		resize: none;
		right:100%;
		position: fixed; 
		width: 65%;
	}

	.nav-open #navBar { 
		right: 35%; 
	}

	.blackout #blackout, 
	.nav-open #blackout {
		opacity: .5;
		pointer-events:auto;
	}
	#navBarUpper .navbar-brand {
		visibility: hidden;
	}

	#expandon {
		display:block;
		float: right; 
		transform: rotate(180deg);
		height:auto;
	}
	#expandon a {
		color:white;
		font-weight: bold;
		font-size: 1.5rem;
		text-decoration:none;
	}

	.navbar-toggler {
		display: inline;
		float: right;
		color: white;
	}

	.col-md-2 .nav.nav-pills.row {
		top: 0px;
		position: relative;
	}

	#pageHeaderRow {
		top: 50px;
		/* margin-left:-12px;*/
		/*width:100vw;*/
	}

	#loginArea {
		box-shadow: none;
		border: 0px;
		margin: 0px;
		width: auto;
		padding: 0px;
	}

	.rosterRow {
		width: 100%;
		padding: 0px;
		margin: 0px;
		margin-bottom: 2px;
	}

	.rosterRow .col-5,
	.rosterRow .col-7,
	.rosterRow .col-6 {
		padding: 0px;
	}

	.rosterRow textarea {
		width: 90vw;
	}


	#pageHeaderRow h2 {
		font-size: 26px;
	}

	#filterBox {
		height: calc(1.8125rem + 2px);
	}


	.tab-nav-tab {
		padding: 0px;
	}

	#contentInner {
		margin-left: 0px;
	}

	div.tab-nav-pages {
		margin-top: 0px;
	}

	.tab-nav-layout {
		padding: 0px;
	}

	.tab-nav-menu {
		padding: 0px 12px;
		background: #d9d9d9;
		z-index: 2;
		position: sticky;
		/*top: 50px;*/
		/*box-shadow: 3px 3px 3px rgba(0,0,0,.1);*/
		top: unset;
		bottom: 0;
		position: fixed;
		padding: 0px;
		border-top: 1px solid #80808021;
		justify-content: center;
		flex-wrap: nowrap !important;
		overflow: auto;
		width: 100vw;
	}

	.tab-nav-menu a.tab-nav-link {
		text-align:center;
		border-radius:0px;
		transition:border-radius .25s ease-in-out, background .25s ease-in-out;
	}
	.tab-nav-menu a.tab-nav-link.active {
		border-radius: 32px;
	}
	

	.tab-nav-layout>h2 {
		padding: 0px 12px;
		background: white;
		z-index: 2;
		position: sticky;
		top: 50spx;
		/*box-shadow: 3px 3px 3px rgba(0,0,0,.1);*/
		display: none;
	}


	.rLabel {
		font-weight: 500;
		display: inline;
	}

	.noMobile {
		display: none;
	}

}

@media only screen and (max-width: 450px) {
	.tab-nav-layout>h2 {
		font-size: 1.4em;
		display: none;
	}
}

@media screen and (max-width:350px) {

	.tab-nav-menu a.tab-nav-link .text {
		width:0px;
		transition: width .25s ease-in-out;
		overflow: hidden;
		display:inline-block;
		vertical-align:middle;  
		white-space: nowrap;
	}
	.tab-nav-menu a.tab-nav-link {
		transition:border-radius .25s ease-in-out, background .25s ease-in-out;
	}
	.tab-nav-menu a.tab-nav-link.active {
		
	}
	.tab-nav-menu a.tab-nav-link.active .text { 
		width: var(--text-width);
	}
}

@media only screen and (min-width:901px) {
	#navBar {
		height: 100vh !important;
		max-height: 100vh !important;
		overflow: auto;
		z-index: 0;
		scrollbar-width: thin;
	}

	#navBar:scrollBar {
		width: 1px;
	}

	.navbar-brand {
		display: block;
		text-align: center;
	}
}

/* Always mobile navbar styles */
body.always-mobile #navBar {
	height: 50px !important;
	max-height: 50px !important;
	min-height: 50px !important;
	width: 100% !important;
	overflow: hidden !important;
	transition: height .25s ease-out !important;
	z-index: 1;
}

body.always-mobile .navbar-toggler {
	display: inline !important;
	float: right !important;
	color: white !important;
}

body.always-mobile .col-md-2 .nav.nav-pills.row {
	top: 0px !important;
	position: relative !important;
}

body.always-mobile #pageHeaderRow {
	top: 50px !important;
}

body.always-mobile .noMobile {
	display: none !important;
}

body.always-mobile .navbar-brand {
	display: inline !important;
}

body.always-mobile .container {
	flex-flow: column;
}

body.always-mobile #navBar.open {
	height: 101vh !important;
	max-height: 101vh !important;
	overflow: auto !important;
	position: fixed !important;
	z-index: 1;
}

@keyframes blink {
	0% { opacity:1 } 75% { opacity:1 } 76% { opacity:0 } 100% { opacity:0 }
}

blink, .blink-css, .blink-smooth {
	animation:blink 0.75s ease-in infinite alternate;
}
#fortune-container {
	font-family: monospace;
	font-size: .8rem;
	margin-bottom: 1rem;
	font-style: italic;
	margin-top:1rem;
}