/* Globals */
:root {
	--index-heading: #fff;
	--index-green: #7d7;
	--index-link: #fff;
	--markdown-h1: #eee;
	--markdown-h2: #fff;
	--markdown-h3: #afa;
	--markdown-link: #fa1;
	--school-hue: 180;
	--accent: #D3212D;
	--markdown-h1: #ee3432;
	--markdown-link: #ee3432;
	--accent: #ee3432;

}
*, *:before, *:after {
	box-sizing: border-box;
}
body {
	font-family: 'Rubik', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	margin: 2em auto;
	max-width: 90%;
	background: #222 radial-gradient(circle, rgba(43,61,56,1) 0%, rgba(17,27,37,1) 76%, rgba(22,24,25,1) 100%);
	/* background: #222 radial-gradient(circle, hsl(var(--school-hue),17%,20%) 0%, hsl(var(--school-hue),37%,10%) 76%, hsl(var(--school-hue),6%,9%) 100%); */
	background-attachment: fixed;
	color: #eee;
	overflow-y: scroll;
	position: relative;
}
body::before {
	/* content: ""; */
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: url(/static/ui/odds.jpg) no-repeat;
	background-size: cover;
	opacity: 0.25;
	z-index: -1;
	filter: blur(5px);
}
a {
	text-decoration: none;
	color: #38d;
}
h1 {
	color: #fff;
	font-size: 2em;
	font-weight: 700;
	margin: 1em auto 1em;
	text-align: center;
}
h2 {
	font-size: 1.5em;
	font-weight: 700;
	color: #ddd;
	margin: 1em auto 1em;
}
h3 {
	font-weight: 400;
	color: #eee;
}
h3 > b {
	color: #fff;
}
hr {
	height: 1px;
	border: 0;
	background-color: #ccc;
	width: 50%;
	max-width: 900px;
	margin: 4em auto;
}
img {
	max-width: 100%;
}
.page-index,
.page-players,
.page-player_form,
.page-eula,
.page-dashboard,
.page-page {
	/* background: radial-gradient(circle, rgba(39,88,110,1) 0%, rgba(2,0,36,1) 100%); */
	/* background: radial-gradient(circle, rgba(32,96,101,1) 0%, rgba(2,0,36,1) 100%); */
	/* background-image: radial-gradient(circle, rgba(49,68,63,1) 0%, rgba(17,27,37,1) 100%); */
}
/* Utils */
.center {
	text-align: center;
}
.left {
	text-align: left;
}
.small {
	font-size: 0.8em;
}
.bold {
	font-weight: 700;
}
.green {
	color: #4c933f;
}
.page-width {
	margin: 0 auto;
	max-width: 1400px;
}

/* Branding */
.Players_nlf_logo {
	width: 250px;
	margin: 0 auto 3em;
	padding-top: 3em;
}

/* Forms */
form:after {
	content: "";
	display: table;
	clear: both;
}
form fieldset {
	vertical-align: top;
	margin-bottom: 3em;
	background: #fafafa;
	border-radius: 2px;
	border: 0;
}
form fieldset.simple {
	width: 100%;
	height: auto;
}
form legend {
	padding: 0.5em 1em;
	background: #5e5e5e;
	border-radius: 4px;
	color: white;
	font-weight: 700;
}
form label {
	display: inline-block;
	text-align: right;
	margin-right: 1em;
	font-size: 0.9em;
	font-weight: 700;
	color: #666;
}
form input[type="checkbox"] + label {
	font-weight: 500;
	color: #888;
}
form input[type="checkbox"]:checked + label {
	font-weight: 700;
	color: #444;
}
form label:not(.long) {
	width: 12em;
}
form input[type="checkbox"] {
	/* margin-left: 10em; */
}
form input[type="text"],
form input[type="url"],
form input[type="number"],
form input[type="password"],
form select {
	padding: 0.25em 1em;
	border-radius: 2px;
	background-color: #f0f0f0;
	font-family: 'Rubik', sans-serif;
	border: 1px solid #bbb;
	width: calc(95% - 12em);
	font-size: 1.0em;
	font-weight: 700;
}
form input:invalid:focus,
form input:focus {
	-moz-box-shadow: none;
	border-color: #09f !important;
}
form input:invalid:not(:focus):placeholder-shown {
	border-color: #bbb;
}
form input:required:invalid, input:focus:invalid {
	-moz-box-shadow: none;
	/* border-color: red; */
}
form textarea {
	width: 100%;
	height: 10em;
	font-size: 1.1em;
	font-weight: 700;
	padding: 1em;
	border-radius: 2px;
	background-color: #f0f0f0;
	border: 1px solid #bbb;
	font-family: inherit;
}
form fieldset.simple label.top {
	vertical-align: top;
}
form fieldset.simple textarea {
	display: inline-block;
	width: calc(90% - 8em);
	width: calc(95% - 8em);
	font-size: 1.0em;
	font-weight: 700;
}
form .inline_textarea {
	width: calc(95% - 7.3em);
	vertical-align: top;
}
form select {
	width: 100%
}
form span {
	color: #333;
}

/* Tables */
table {
	background-color: #fafafa;
	border: 1px solid #7a7a7a;
	border-radius: 2px;
	border-collapse: collapse;
	width: 100%;
	color: #333;
}
table td, table th {
	border: none;
	padding: 0.5em 0.7em;
	font-size: 0.9em;
}
table tr:nth-child(even) {
	background: #f0f0f0;
}
table thead {
	background: #444;
}
table thead th {
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	text-align: left;
}
th.disabled {
	color: #999;
}
table tr.disabled td {
	color: #aaa;
	font-style: italic;
}
table td .btn {
	font-size: 0.8em;
}
table td a,
table td a:visited {
	color: #55b;
}
table tr.no-rows {
	color: #444;
	font-size: 1.5em;
	font-style: italic;
	font-weight: 700;
	text-align: center;
	padding: 3em 0;
}
table tr.no-rows td {
	padding: 3em 0;
}
.Admin_button_container {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}
.Admin_form_button {
	margin: 0;
}
.Admin_form_button .btn {
	margin: 0;
}

/* Buttons */
.btn {
	background-color: #999;
	border: none;
	border-radius: 2px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;
	font-size: 1em;
	margin-right: 0.25em;
	margin-bottom: 0.25em;
	padding: 0.5em 1em;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.25);
	word-spacing: 0.2em;
}
.btn.active {
	background: #5b5;
}
.btn.warning {
	background-color: #A2264B;
}
.btn.right {
	float: right;
	margin-bottom: 1em;
}
.btn.light {
	/* background-color: #2b555f; */
	background-color: #3159d6;
}
.btn.green {
	background-color: #4c933f;
	font-size: 1.2em;
}
.btn.red {
	background-color: var(--accent);
	font-size: 1.2em;
}
.btn.disabled {
	cursor: not-allowed;
}

.no-action-needed {
	color: #444;
	font-size: 1.5em;
	font-style: italic;
	font-weight: 700;
	margin: 3em auto;
	text-align: center;
}
.not-applicable {
	color: #999;
	font-weight: 700;
}
.Login_form {
	width: 25em;
	margin: 0 auto;
}
nav.selector_bar {
	position: relative;
}
.search {
	position: absolute;
	right: 0;
	top: 0;
}
.search .search_input {
	width: 12em;
	border-radius: 1em;
	font-weight: bold;
	font-size: 1em;
	padding: 0.5em 1em;
}
.search .search_input:focus {
	outline: none;
	border: 2px solid #55b;
}

.welcome {
	max-width: 50em;
	width: 65%;
	font-style: italic;
	color: #ccc;
	margin: 1em auto;
	text-align: center;
	line-height: 1.33;
}
.welcome a {
	font-weight: 700;
	color: var(--markdown-link);
}
.copyright {
	text-transform: uppercase;
	color: #777;
	font-size: 0.7em;
	border-top: 1px solid #777;
	padding-top: 1em;
	margin-top: 2em;
	letter-spacing: 0.1em;
}

/* Add Player Form */
.Player_form {
	max-width: 45em;
	margin: 0 auto;
}

/* EULA */
.Eula_container {
	max-width: 40em;
	margin: 2em auto;
	border: 1px solid #ccc;
	border-radius: 2em;
	height: 40vh;
	background: rgba(0,0,0,0.5);
	padding: 2em 0 2em 2em;
}
.Eula_text {
	overflow-y: scroll;
	color: #eee;
	height: 100%;
	font-size: 0.8em;
	font-weight: 300;
	line-height: 1.25;
	padding-right: 2em;
}

/* Cover Page */
.Cover {
	/*
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 40%;
	*/
	max-width: 600px;
	text-align: center;
	margin: 5vh auto 0;
}
.Cover.Dashboard {
	margin-top: 5vh;
}
.Cover h1 img {
	width: 300px;
}
.Cover p  {
	font-size: 0.9em;
}
.Cover p b {
	font-size: 1.2em;
	color: white;
}
.Cover .btn.signup {
	font-size: 1.2em;
	margin-bottom: 1em;
}
.Cover_login {
	margin-bottom: 2em;
}
.Cover_login_inputs {
	max-height: 0;
	overflow: hidden;
	transition: all 1s ease;
}
.Cover_login_inputs.show {
	height: auto;
	max-height: 300px;
}
.Cover_login_inputs input {
	text-align: center;
	font-family: 'Rubik', sans-serif;
	padding: 0.5em 1em !important;;
	border: 0 !important;
}
.Cover_login_inputs input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	font-weight: 400;
}
.Cover_login_inputs input::-moz-placeholder { /* Firefox 19+ */
	font-weight: 400;
}
.Cover_login_inputs input:-ms-input-placeholder { /* IE 10+ */
	font-weight: 400;
}
.Cover_login_inputs input:-moz-placeholder { /* Firefox 18- */
	font-weight: 400;
}


/* Player Dashboard */
.Dashboard_box {
	width: 45%;
	margin: 1em 2.5%;
	float: left;
	display: flex;
	align-items: center;
	position: relative;
	box-sizing: border-box;
	border: 3px solid transparent;
	border-radius: 25px;
	background: #222;
	box-shadow: 1px 1px 15px rgba(0,0,0,0.25);
	background-clip: padding-box;
	/* transition: all 0.6s ease; */
}
@media (max-width: 1000px) {
	.Dashboard_box {
		font-size: 0.9em;
	}
}
.Dashboard_box:hover {
	background: #222 linear-gradient(45deg, hsla(120, 60%, 66.7%, 0.05), hsla(16.2, 100%, 50%, 0.05) 50%, hsla(60, 100%, 50%, 0.05));
	background-clip: padding-box;
}
.Dashboard_box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	margin: -3px;
	border-radius: inherit;
	background: linear-gradient(45deg, #7d7, orange 50%, yellow);
	transition: all 1s ease;
}
.Dashboard_box:hover:before {
	background: linear-gradient(225deg, #7d7, orange 50%, yellow);
}
.Dashboard_player {
	display: block;
	padding: 1em 2em 1em 1em;
	text-align: left;
	width: 100%;
}
.Dashboard_name {
	font-size: 1.25em;
	color: white;
	display: block;
	margin-bottom: 0.25em;
}
.Dashboard_jersey {
	width: 2.5em;
	font-size: 2.5em;
	color: #666;
	float: left;
	font-weight: 700;
	text-align: center;
	padding-right: 1em;
	transition: color 0.33s ease;
}
.Dashboard_box:hover .Dashboard_jersey {
	color: #fff;
}
.Dashboard_position {
	text-transform: uppercase;
	font-size: 0.8em;
	display: block;
	color: #999;
	font-weight: 700;
	letter-spacing: 0.1em;
	transition: color 0.33s ease;
}
.Dashboard_box:hover .Dashboard_position {
	color: #fff;
}
.Dashboard_percentage {
	font-size: 1.5em;
	float: right;
	color: var(--markdown-link);
	position: relative;
	top: 0.35em;
	transition: color 0.33s ease;
}
.Dashboard_box:hover .Dashboard_percentage {
	color: #7d7;
}

/* Content Index */
.P-index {
	opacity: 0;
	transform: translateY(-200px);
	transition: opacity 1s ease;
}
.P-index.show {
	opacity: 1;
	transform: translateY(0);
}
.P-index h1 {
	display: none;
}
.P-index h2 {
	margin: 1em auto 1em;
	/* width: 16em; */
	/* font-weight: 500; */
	text-align: center;
}
.P-index h2 a {
	color: var(--index-heading);
}
.P-index ol {
	width: 24em;
	margin: 0 auto !important;
	color: var(--index-link);
}
.P-index ol li {
	margin-bottom: 1em;
	padding-left: 1em;
}
.P-index ol li a {
	display: block;
	color: var(--index-link);
	max-width: 95%;
}
.P-index ol li.seen {
	color: var(--index-green);
}
.P-index ol li.seen a {
	color: var(--index-green);
}
.P-index ol li.seen a:after {
	content: "\2713";
	padding-left: 0.5em;
	color: var(--index-green);
}

/* Markdown Generic Content */
.markdown {
	max-width: 50em;
	margin: 0 auto;
	line-height: 1.5;
}
.Page-content {
	/* background: rgba(20, 20, 20, 0.3); */
	border-radius: 8px;
	/* max-width: 90%; */
	margin: 0 auto 5em;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
}
.Page-content .inner {
	background: rgba(20, 20, 20, 0.40);
	padding: 0em 10%;
	border-radius: 8px;
	border: 1px solid rgba(200, 200, 255, 0.15);
}
.Page-content h1 {
    color: var(--markdown-h1);
    font-weight: 400;
	font-size: 1.25em;
    margin-bottom: 3em;
    position: relative;
    margin: 0 -12.5% 4em;
    background: rgba(0,0,0,0.5);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 1em;
	color: #ffb604;
	text-shadow: 0 0 15px rgba(255, 155, 0, 0.89);
}
.Page-content h1::after {
	display: none;
	position: absolute;
	content: '';
	width: 5em;
	border-bottom: 1px solid #ccc;
	bottom: -0.75em;
	left: 50%;
	margin-left: -2.5em;
}
.Page-content h2 {
	color: var(--markdown-h2);
	text-align: center;
	margin-bottom: 2em;
	font-weight: 700;
	letter-spacing: 0.05em;
	font-size: 1.6em;
	font-size: 2em;
	text-shadow: 0px 5px 8px rgba(0,0,0,0.6);
}
.Page-content h3 {
    color: var(--markdown-h3);
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 3em;
    margin-top: 8em;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.06em;
    background: rgba(0,0,0,0.5);
    padding: 1em 5%;
    margin: 6em -5% 4em;
    border: 1px solid rgba(200,200,200,0.25);
    border-radius: 10px;
    text-align: center;
	text-shadow: 0 0 15px rgba(155, 255, 0, 0.69);
	border: 1px solid rgba(170, 255, 170, 0.5);
	box-shadow: 0 0 5px rgba(170, 255, 170, 0.2);
}
.Page-content h4 {
	margin: 3em 0 0;
	font-size: 1.25em;
	font-weight: 500;
}

.Page-content h5 {
	font-size: 1.12em;
	font-style: italic;
}
.Page-content p {
	margin: 0 auto 1.5em;
}
.Page-content ul,
.Page-content ol {
	margin: 0 0 3em 0;
	line-height: 1.75;
}
.Page-content ol ol,
.Page-content ul ul {
	margin-bottom: 1.5em;
	margin-top: 1em !important;
	font-size: 0.9em;
	list-style: none;
}
.Page-content ul {
	list-style: none;
}
.Page-content ol {
	counter-reset: list-counter;
	margin-left: 0em;
	padding-left: 3em;
	list-style: none;
}
.Page-content ol > li::before {
	content: counter(list-counter);
	display: inline-block;
	text-align: center;
	background: black;
	color: var(--markdown-h3);
	border: 1px solid rgba(170, 255, 170, 0.5);
	box-shadow: 0 0 5px rgba(170, 255, 170, 0.2);
	border-radius: 50%;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.5;
	font-size: 1.2em;
	font-weight: 500;
	margin-left: -2.5em;
	margin-right: 1.0em;
	position: relative;
	top: 0.1em;
}
.Page-content ol > li {
	counter-increment: list-counter;
	margin-bottom: 1em;
}
.Page-content li ol > li::before {
	color: rgba(143, 222, 255, 1);
	border: 1px solid rgba(143, 222, 255, 0.5);
	box-shadow: 1px solid rgba(143, 222, 255, 0.2);
}
.Page-content ul li::before {
    content: '';
    display: inline-block;
    height: 50px;
    width: 50px;
    background-image: url(/static/ui/arrow-green.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: -50px;
	position: relative;
	top: 1.5em;
}
.Page-content li ul li::before {
	top: 1.25em;
    height: 40px;
    width: 40px;
    background-image: url(/static/ui/arrow-blue.png);
}
.Page-content li a,
.Page-content p a {
	color: var(--markdown-link);
}
.Page-content img {
	margin: 3em auto;
	display: block;
	box-shadow: 1px 1px 15px rgba(0,0,0,0.25);
	padding: 1em;
	background: rgba(0,0,0,0.5);
	border-radius: 10px;
	border: 1px solid rgba(170, 255, 170, 0.25);
	box-shadow: 0 0 5px rgba(170, 255, 170, 0.15);
}
.Page-content img::before {
	/* content: "": */
	display: block;
	background: black;
	margin: -1em;
}
.Page-content blockquote {
	margin-bottom: 8em;
	margin-inline: 5%;
}
.Page-content blockquote p:nth-child(odd) {
	margin-bottom: 1em;
	font-size: 1.15em;
	font-weight: 700;
	font-style: italic;
}
.Page-content blockquote p:nth-child(even) {
	margin-bottom: 5em;
	font-size: 0.9em;
	text-transform: uppercase;
	text-align: right;
	color: #ccc;
}
.Page-content strong {
	color: #fff;
}

/* Curriculum Content Intra-navigation */
.curriculumNav {
	background: rgba(0,0,0,0.5);
	padding: 2em;
	margin: 6em -12.5% 0;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	text-align: center;
}
.curriculumNav .nav-link {
	display: inline-block;
	padding: 1em;
	transition: all 0.6s ease;
	border: 1px solid transparent;
}
.curriculumNav .nav-link-text {
	transition: all 0.6s ease;
	color: var(--markdown-link);
}
.curriculumNav .nav-link-prev {
	float: left;
	font-size: 1.2em;
	text-align: left;
}
.curriculumNav .nav-link-next {
	float: right;
	text-align: right;
	font-size: 1.2em;
}
.curriculumNav .nav-link:not(.disabled):hover,
.curriculumNav .nav-link-next:hover {
	background: #333;
	border: 1px solid #444;
	border-radius: 10px;
}
.curriculumNav .nav-link:not(.disabled):hover .nav-link-text {
	color: rgb(170, 255, 170);
}
.curriculumNav .nav-link-next-section {
	border: 1px solid rgba(255, 170, 17, 0.9);
	border-radius: 10px;
	background: rgba(50, 50, 50, 0.5);
}
.curriculumNav .nav-link-index {
	clear: both;
	text-align: center;
	margin: 2em auto 0;
	font-size: 0.9em;
}
.curriculumNav .nav-link-section {
	font-size: 1.4em;
}
.curriculumNav .nav-tag {
	display: block;
	text-transform: uppercase;
	font-size: 0.5em;
	color: white;
	letter-spacing: 0.1em;
	font-weight: 700;
	font-style: normal !important;
}
.curriculumNav .nav-complete {
	color: var(--markdown-h3) !important;
	font-style: italic;
}
.curriculumNav .nav-link-index .nav-tag {
	font-size: 0.7em;
}
.curriculumNav .nav-link.disabled .nav-tag,
.curriculumNav .nav-link.disabled .nav-link-text {
	color: #aaa !important;
}

/* Curriculum Index Menu */
.menu-toc {
	background: rgba(20, 20, 30, 0.3);
	border-radius: 8px;
	width: 30em;
	max-width: 90%;
	margin: 0 auto 5em;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
}
.menu-toc .inner {
	background: rgba(20, 20, 30, 0.80);
	padding: 1em 2.5% 2em;
	border-radius: 8px;
	border: 1px solid rgba(200, 200, 255, 0.15);
}
.menu-toc-1 {
	background: url(/static/ui/college.jpg) no-repeat;
	background-size: cover;
}
.menu-toc-2 {
	background: url(/static/ui/odds.jpg) no-repeat;
	background-size: cover;
}
.menu-toc-3 {
	background: url(/static/ui/calendar.jpg) no-repeat;
	background-size: cover;
}
.menu-toc-4 {
	background: url(/static/ui/agent.jpg) no-repeat;
	background-size: cover;
}
.menu-toc-5 {
	background: url(/static/ui/evaluation.jpg) no-repeat;
	background-size: cover;
}
.menu-toc-6 {
	background: url(/static/ui/draft.jpg) no-repeat;
	background-size: cover;
}
.menu-toc-7 {
	background: url(/static/ui/professional.jpg) no-repeat;
	background-size: cover;
}
.menu-toc-progress {
	font-size: 0.75em;
	height: 1.5em;
	line-height: 1;
	width: 30em;
	max-width: 90%;
	background: #888;
	margin: 1em auto 3em;
	border-radius: 3px;
	position: relative;
}
.menu-toc-done {
	height: 100%;
	background: var(--index-green);
	border-radius: 3px;
	color: black;
	font-weight: 700;
}
.menu-toc-data {
	line-height: 1.5;
	text-align: right;
	position: absolute;
	right: 0.5em;
	color: black;
	font-weight: 700;
}
.menu-toc-title {
	position: absolute;
	left: 0.5em;
	line-height: 1.5;
}
.menu-toc ol {
	counter-reset: menu-counter;
}
.menu-toc li {
	list-style: none;
	position: relative;
	padding-left: 2em;
}
.menu-toc li::before {
	content: counter(menu-counter);
	counter-increment: menu-counter;
	display: inline-block;
	text-align: center;
	background: black;
	color: white;
	border: 1px solid rgba(255,255,255,0.5);
	box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	width: 1.75em;
	height: 1.75em;
	line-height: 1.75;
	font-size: 0.8em;
	font-weight: 500;
	margin-left: -3em;
	position: absolute;
	top: 0;
}
.menu-toc li.seen::before {
	color: var(--markdown-h3);
	border: 1px solid rgba(170, 255, 170, 0.5);
	box-shadow: 0 0 5px rgba(170, 255, 170, 0.2);
}

@media (max-width: 1000px) {
	body {
		font-size: 12px;
	}
	.Page-content ul li {
		position: relative;
		padding-top: 0.85em;
	}
	.Page-content ul li::before {
		position: absolute;
		top: 0;
	}
	.Page-content li ul li::before {
		top: 0.25em;
	}
	.curriculumNav .nav-link {
		display: block;
	}
	.curriculumNav .nav-link-prev {
		float: none;
		text-align: center;
	}
	.curriculumNav .nav-link-next {
		float: none;
		text-align: center;
	}
	.Cover {
		/* width: 75%; */
		margin-top: 5vh;
	}
	.Cover.Dashboard {
		margin-top: 0;
	}
}

.Signup_form {
	max-width: 30em;
	border-radius: 8px;
}

.Signup_form fieldset {
	border-radius: 8px;

}

.Signup_form fieldset input {
	border-radius: 8px;
}

@media (min-width: 1000px) {
	.Packages {
		display: flex;
		gap: 5%;
		max-width: 1000px;
		margin: 0 auto;
	}

	.Package_form {
		flex: 0 0 30%;
	}
}

.Package_form {
	text-align: center;
	padding-bottom: 1.5em;
	border: 5px solid #eee;
	border-image-slice: 1;
	border-width: 2px;
	/* border-image-source: linear-gradient(230deg, #fffd02, #de8f0b, #8fcc2f); */
	border-image-source: linear-gradient(230deg, #F62D2D, #D3212D, #A2264B, #722B6A, #412F88, #1034A6);
	background: rgba(20, 20, 30, 0.70);
	display: flex;
	flex-direction: column;
}

.Package_form h3 {
	color: var(--accent);
	font-size: 1.5em;
	font-weight: 700;
	margin: 1em auto 0;
	flex: 0 0 2em;
}

.Package_form ul {
	text-align: left;
	flex: 1 1 auto;
	font-size: 0.8em;
	padding-right: 2em;
}

.Package_form li {
	margin-bottom: 2em;
	line-height: 1.6;
}
.Package_form b {
	color: var(--accent);
}

.Package_form_subscribe {
	flex: 0 0 8em;
	justify-self: flex-end;
}

.bullet-less {
	padding-left: 0;
}
.bullet-less li {
	list-style: none;
	margin-bottom: 1em;
}

.frame {
	background: rgba(20, 20, 30, 0.70);
    padding: 2em 5%;
    border-radius: 8px;
    border: 1px solid rgba(200, 200, 255, 0.15);
	border-image-slice: 1;
	border-width: 2px;
	/* border-image-source: linear-gradient(230deg, #fffd02, #de8f0b, #8fcc2f); */
	/* border-image-source: linear-gradient(230deg, #1034A6, #412F88, #722B6A, #A2264B, #D3212D, #F62D2D); */
	border-image-source: linear-gradient(230deg, #F62D2D, #D3212D, #A2264B, #722B6A, #412F88, #1034A6);
}

.Userbar {
	border-bottom: 1px solid #444;
	height: 50px;
	text-align: left;
	margin-bottom: 3em;
}
.Userbar span {
	font-size: 24px;
	padding-top: 0.25em;
	display: inline-block;
}
.Userbar .btn {
	float: right;
	font-size: 16px;
}

.Schedule_notes {
	padding: 0.25em 1em;
    border-radius: 2px;
    background-color: #f0f0f0;
    font-family: 'Rubik', sans-serif;
    border: 1px solid #bbb;
    width: calc(95% - 8em);
    font-size: 1.0em;
    font-weight: 700;
}

.Terms h1,
.Terms h2,
.Terms li b {
	color: white;
}
.Terms ol li {
	color: #eee;
	margin-bottom: 1em;
}
.Terms ol {
	padding-left: 2em;
}
.Terms h3 {
	font-size: 1.25em;
	font-weight: bold;
	margin: 2em 0 1em;
}

.Filter_list {
	padding-left: 0;
	margin-inline: auto;
	text-align: center;
}
.Filter_list li {
	display: inline-block;
	margin-right: 1em;
}
.Filter_list a {
}

.Upload_form {
	max-width: 45em;
	margin: 2em auto;
	border-top: 1px solid #ddd;
	padding-top: 2em;
}

.page-index .Hero_intro {
	font-size: 1.3em;
	line-height: 1.3;
	color: #ccc;
}
.page-index .Hero_intro b {
	color: white;
	font-size: 1.4em;
}
.page-index .Hero_explain {
	font-size: 1.4em;
}
.page-index .Hero_explain b {
	color: var(--accent);
	color: white;
}
.page-index .Hero_list {
	padding-left: 0;
}
.page-index .Hero_list > li {
	margin-bottom: 2em;
	display: block;
	list-style: none;
	border: 1px solid white;
	padding: 1em 2em;
	border-radius: 2em;
	/* background-color: #151821; */
	background: rgba(20, 20, 30, 0.70);
    padding: 2em 5%;
    border-radius: 8px;
    border: 1px solid rgba(200, 200, 255, 0.15);
	border-image-slice: 1;
	border-width: 2px;
	/* border-image-source: linear-gradient(230deg, #fffd02, #de8f0b, #8fcc2f); */
	/* border-image-source: linear-gradient(230deg, #1034A6, #412F88, #722B6A, #A2264B, #D3212D, #F62D2D); */
	border-image-source: linear-gradient(230deg, #F62D2D, #D3212D, #A2264B, #722B6A, #412F88, #1034A6);
}
.page-index .Hero_list b {
	color: var(--accent);
}
.page-index .Hero_choose {
	font-size: 2em;
	color: white;
}

.with-background {
	background-image: url(/static/ui/background.jpg);
	background-size: cover;
}

small {
	font-size: 0.6em;
}

.TeamInfo_team {
	color: var(--accent);
	cursor: pointer;
}

.TeamInfo h2 + div {
	display: none;
}

.TeamInfo h3 + div {
	display: none;
	background: rgba(143, 222, 255, 0.2);
	padding: 0.1em 0 2em;
	border-radius: 10px;
}

.TeamInfo h3 {
	cursor: pointer;
}

.TeamInfo .Contact_name {
	font-weight: bold;
	font-size: 1.1em;
	margin-top: 2em;
	margin-bottom: 0.5em;
}

.TeamInfo .Contact_role {
	margin-block: 0.5em;
}

.Return_dashboard {
	position: relative;
	top: -2em;
}

.Dashboard h4 {
	margin-top: 5em;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--index-green);
}

.Hero_bios {
	display: flex;
	gap: 20px;
	justify-content: center;
}
@media(max-width: 960px) {
	.Hero_bios {
		flex-direction: column;
		align-items: center;
	}
}
 .Hero_intro {
	max-width: 33em;
	text-align: center;
	margin-inline: auto;
 }

.Hero_bio {
	flex: 0 0 300px;
	width: 300px;
	margin-bottom: 2em;
	display: block;
	list-style: none;
	border: 1px solid white;
	padding-block: 2em;
	border-radius: 2em;
	/* background-color: #151821; */
	background: rgba(20, 20, 30, 0.70);
    border-radius: 8px;
    border: 1px solid rgba(200, 200, 255, 0.15);
	border-image-slice: 1;
	border-width: 2px;
	/* border-image-source: linear-gradient(230deg, #fffd02, #de8f0b, #8fcc2f); */
	/* border-image-source: linear-gradient(230deg, #1034A6, #412F88, #722B6A, #A2264B, #D3212D, #F62D2D); */
	border-image-source: linear-gradient(230deg, #F62D2D, #D3212D, #A2264B, #722B6A, #412F88, #1034A6);
}

.Hero_bio h4 {
	text-align: center;
	font-size: 1.9em;
	color: var(--accent);
}

.Hero_bio img {
	margin-inline: auto;
	display: block;
}

.Hero_bio ul {
	padding-left: 0;
	padding: 0 2em;
}

.Hero_bio li {
	margin-bottom: 1em;
}

.Hero_evaluators h3 {
	font-size: 1.75em;
	font-weight: bold;
}

.Hero_evaluators ul {
	padding-left: 0;
}

.Hero_evaluators li {
	list-style: none;
	font-size: 1.2em;
	margin-bottom: 1.3em;
	font-weight: bold;
	color: white;
}

.Hero_evaluators li span {
	text-transform: uppercase;
	font-size: 0.7em;
	font-weight: normal;
	color: rgba(255, 255, 255, 0.66);
}

p.sample-continues {
	text-align: center;
	font-style: italic;
	font-size: 1.3em;
	color: #ffb604;
	margin-top: 2em;
}