* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

@media screen and (max-width: 560px) {
	html {
		overflow-x: hidden;
	}
}

html, body {
	width: 100%;
}

body {
	background: #fff linear-gradient(-20deg, rgba(102, 0, 102, 0.3), rgba(0, 197, 218, 0.3));
	padding: 0 0 20px 0;
	background-attachment: fixed;
	background-repeat: no-repeat;
	position: relative;
}

a {
	color: #660066;
}

button {
	border: 0;
	background-color: transparent;
	background: #fff linear-gradient(-30deg, rgba(102, 0, 102, 0.15), rgba(0, 197, 218, 0.15));
	border-radius: 100px;
	padding: 10px;
	color: #660066;
	font-size: 1.1em;
	font-weight: 700;
}

.fadeBackground button,
.popUp button {
	background: #fff linear-gradient(-30deg, rgba(102, 0, 102, 0.5), rgba(0, 197, 218, 0.5));
}

button:hover {
	background: #fff linear-gradient(-30deg, rgba(102, 0, 102, 1), rgba(0, 197, 218, 1));
	color: #fff;
	cursor: pointer;
}

button:active {
	background: #fff linear-gradient(-30deg, rgba(90, 0, 90, 1), rgba(0, 177, 204, 1));
}

input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
}

::selection {
	color: #fff;
	background-color: #990099;
}

::-moz-selection {
	color: #fff;
	background-color: #990099;
}

*::-webkit-scrollbar {
	width: 1em;
	height: 1em;
}

*::-webkit-scrollbar-track {
	background-color: transparent;
}

*::-webkit-scrollbar-thumb {
	background-color: #00c5da;
	background: linear-gradient(125deg, #006797 20%, #00c5da);
	border-radius: 50px;
}

*.bold {
	font-weight: 700;
}

p.empty {
	text-align: center;
	font-weight: 700;
	padding: 40px;
}

p.tip {
	padding: 20px;
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
	margin: 0 0 20px 0;
	text-align: center;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

div.darkBackground {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1999;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
	display: none;
}

div.popUp {
	width: calc(100% - 40px);
	max-width: 800px;
	max-height: calc(100vh - 40px);
	border-radius: 10px;
	padding: 5px 20px 20px 20px;
	background: rgba(255, 255, 255, 1);
	/* background: rgba(255, 255, 255, 1) linear-gradient(-30deg, rgba(102, 0, 102, 0.2), rgba(0, 197, 218, 0.2)); */
	display: none;
	position: relative;
	margin: 20px auto;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 20px;
}

h3.popupTitle {
	margin: 0 0 20px 0;
	padding: 10px 40px 10px 0px;
	position: relative;
	border-bottom: 1px solid #660066;
}

button.closePopup {
	position: absolute;
	top: 5px;
	right: 0;
	border: 0;
	aspect-ratio: 1;
	display: block;
	height: 30px;
	width: 30px;
}

div.laserAlertBackground {
	position: fixed;
	height: 0px;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20000;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	overflow: hidden;
	backdrop-filter: blur(15px);
}

div.laserAlert {
	width: calc(100% - 40px);
	max-width: 500px;
	height: auto;
	margin-top: 20px;
	background-color: #fff;
	border-radius: 10px;
	z-index: 30000;
	padding: 50px 10px 10px 10px;
	display: none;
	position: relative;
}

a.addedToBasket {
	display: block;
	float: left;
	width: calc(50% - 5px);
	text-align: center;
	margin: 20px 0;
	color: #fff;
	background-color: #606;
	padding: 20px;
	text-decoration: none;
	font-size: 0.9em;
	white-space: nowrap;
	border-radius: 10px;
	font-weight: 500;
}

a.addedToBasket:first-of-type {
	margin-right: 10px;
}

a.addedToBasket:hover {
	background: linear-gradient(-30deg, #606, #00c5da);
	border: 0;
}

h2.pageTitle,
h3.pageTitle {
	font-size: 2.4em;
	margin: 30px auto;
	display: block;
	position: relative;
	text-align: center;
}

@media screen and (max-width: 768px) {
	h2.pageTitle,
	h3.pageTitle {
		font-size: 1.8em;
	}
}

h3.pageTitle {
	font-size: 1.8em;
}

div.laserAlert h3.alertTitle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(-30deg, rgba(102, 0, 102, 1), rgba(0, 197, 218, 1));
	color: #fff;
	padding: 10px;
	line-height: 20px;
	height: 40px;
	border-radius: 10px 10px 0 0;
}

div.laserAlert p.alertMessage {
	margin: 10px 0px 20px 0px;
}

div.laserAlert button.laserAlertOk {
	padding: 20px 40px;
	display: block;
	position: relative;
	margin: auto;
}

div.mainWrap {
	position: relative;
	width: calc(100% - 20px);
	max-width: 1380px;
	margin: 10px auto 0 auto;
	padding-top: 110px;
}

@media screen and (max-width: 768px) {
	div.mainWrap {
		overflow-x: hidden;
	}
}

div.contentWrap {
	width: 100%;
	min-width: 0;
}

div.header {
	height: 90px;
	background-color: rgba(255, 255, 255, 0.85);
	padding: 10px 20px 10px 25px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	border-radius: 45px;
	position: fixed;
	top: 10px;
	z-index: 201;
	width: calc(100% - 20px);
	max-width: 1380px;
	backdrop-filter: blur(10px);
}

div.navigation {
	position: relative;
	border-radius: 40px;
	display: flex;
	flex-flow: column wrap;
	justify-content: space-around;
	width: 100%;
	margin: 0 auto 100px auto;
	z-index: 199;
	gap: 10px;
}

@media screen and (max-width: 780px) {
	div.navigation {
		margin-bottom: 40px;
	}
}

div.login {
	display: flex;
	flex-flow: column wrap;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

div.mobileLogin {
	display: none;
}

div.desktopLogin {
	display: flex;
	flex-flow: row nowrap;
	margin-right: -5px;
}

@media screen and (max-width: 780px) {
	div.mobileLogin {
		display: flex;
	}
	div.desktopLogin {
		display: none;
	}
}

div.inputs {
	display: flex;
	flex-flow: row wrap;
	gap: 10px;
	justify-content: center;
	align-items: center;
	width: 100%;
}

div.login input,
div.login button {
	height: 35px;
	display: block;
	padding: 5px 20px;
}

div.login input {
	border-radius: 10px;
	font-size: 1.1em;
	padding: 5px 10px;
	border: 1px solid #660066;
	min-width: 400px;
	max-width: 600px;
	text-align: center;
}

div.login.desktopLogin input {
	max-width: 350px;
	min-width: 200px;
}

div.login.desktopLogin button.indexButton.signUp {
	background: #fff linear-gradient(-30deg, rgba(102, 0, 102, 0.9), rgba(0, 197, 218, 0.9));
	font-weight: 700;
	padding: 15px 20px;
	color: #fff;
	border: 0;
	height: auto;
	border-radius: 40px;
	font-size: 1.2em;
	max-width: 560px;
}

div.login.desktopLogin button.signUp:hover {
	background: #fff linear-gradient(-30deg, rgba(102, 0, 102, 1), rgba(0, 197, 218, 1));
}

div.login button.indexButton {
	min-width: 100px;
	border-radius: 40px;
}

div.login button.indexButton.signUp {
	background: #fff linear-gradient(-30deg, rgba(102, 0, 102, 0.9), rgba(0, 197, 218, 0.9));
	color: #fff;
	font-weight: 700;
	font-size: 1em;
	border: 0;
	padding: 10px 20px;
	width: 100%;
	height: auto;
}

div.login.desktopLogin button.logInSend {
	border: 0;
	background: #fff linear-gradient(-30deg, rgba(102, 0, 102, 0.3), rgba(0, 197, 218, 0.3));
}

div.login.desktopLogin button.logInSend:hover {
	background: #fff linear-gradient(-30deg, rgba(102, 0, 102, 1), rgba(0, 197, 218, 1));
}

div.login.mobileLogin input.logIn.logInMobile,
div.login.mobileLogin button.logInSend {
	width: 100%;
	max-width: 350px;
}

div.login.mobileLogin button.logInSend {
	margin-bottom: 40px;
}

div.loginButtons {
	display: flex;
	flex-flow: row wrap;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 780px) {
	div.login input {
		min-width: 200px;
		font-size: 1em;
	}
}

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

	div.navigation {
		flex-flow: column nowrap;
		justify-content: center;
		align-items: center;
		top: 10px;
		position: relative;
		z-index: 199;
		padding: 20px 0;
		width: 100%;
	}
	div.login {
		flex-flow: column nowrap;
		justify-content: center;
		align-items: center;
		gap: 10px;
		width: 100%;
	}
	
}


img.mainLogo {
	height: 70px;
	width: auto;
}

img.mainLogo:hover {
	cursor: pointer;
}

.center {
	text-align: center;
}

.fadeBackground {
	background: rgba(255,255,255,1) linear-gradient(-30deg, rgba(102,0,102,0.15), rgba(0,197,218,0.15));
}

.fadeBackground .fadeBackground{
	background: rgba(255,255,255,1) linear-gradient(-30deg, rgba(102,0,102,0.3), rgba(0,197,218,0.3));
}

.fadeText {
	color: transparent;
	background: rgba(255,255,255,1) linear-gradient(30deg, rgba(102,0,102,1), rgba(0,197,218,1));
	background-clip: text;
	width: max-content;
	max-width: 100%;
	line-break: normal;
	white-space: normal;
	display: block;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

.fadeText a {
	color: transparent;
    text-decoration: underline;
    text-decoration-color: #606;
}

div.clearfix {
	clear: both;
}

div.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

div.footer {
	background-color: rgba(255, 255, 255, 0.85);
	border-radius: 10px;
	padding: 20px;
	margin: 20px 0 0 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	backdrop-filter: blur(10px);
	width: 100%;
	grid-column: span 2;
}

div.footer p.address,
div.footer ul.policies {
	font-size: 0.8em;
	color: #666;
	line-height: 1.4em;
}

div.footer ul.policies {
	list-style: none;
	text-align: right;
	line-height: 1.4em;
}

div.footer a {
	color: rgba(120, 0, 120, 0.6);
	text-decoration: none;
}

div.footer a:hover {
	text-decoration: underline;
}

div.social {
	display: flex;
	flex-flow: row nowrap;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

div.social svg {
	width: 40px;
	height: 40px;
}

@media screen and (max-width: 830px) {
	div.footer {
		grid-template-columns: repeat(2, 1fr);
	}
	div.footer ul.policies {
		text-align: left;
		margin-top: 20px;
	}
	div.social {
		justify-content: flex-end;
	}
}

@media screen and (max-width: 580px) {
	div.footer {
		grid-template-columns: repeat(1, 1fr);
	}
	div.footer ul.policies {
		margin: 10px 0 0 0;
		text-align: left;
	}
	div.footer p.address,
	div.footer ul.policies {
		font-size: 1em;
	}

	div.social {
		justify-content: flex-start;
		padding-top: 20px;
	}
}

div.pageContent {
	padding: 10px;
	background-color: #fff;
	border-radius: 10px;
	margin-bottom: 20px;
}

h1.pageTitle {
	text-align: center;
	font-size: 4em;
	margin: 0 auto 20px auto;
	font-weight: 900;
}

@media screen and (max-width: 1024px) {
	h1.pageTitle {
		font-size: 3.5em;
		margin: 20px auto;
	}
}

@media screen and (max-width: 800px) {
	h1.pageTitle {
		font-size: 3em;
		margin: 0 auto 10px auto;
	}
}

@media screen and (max-width: 512px) {
	h1.pageTitle {
		font-size: 2em;
		margin: 0px auto;
	}
}

a.navLink {
	text-decoration: none;
	font-size: 14px;
	padding: 0 10px;
	height: 35px;
	line-height: 35px;
	margin: 5px 0;
	display: inline-block;
	border-radius: 20px;
}

a.navLink.loginRegister {
	height: 40px;
	line-height: 40px;
	border-radius: 25px;
}

a.navLink:hover {
	color: #fff;
	background-color: #660066;
}

div.search {
	padding: 10px;
	width: 100%;
	max-width: 800px;
	position: relative;
	margin: auto;
	display: none;
}

button.closeSearch {
	position: absolute;
	top: 0;
	right: 0;
	font-weight: 200;
	font-size: 1.3em;
	border-radius: 30px;
	border: 0;
	width: 30px;
	height: 30px;
	padding: 0;
}

button.closeSearch:hover {
	color: #fff;
	background-color: #660066;
}

div.searchWrap {
	display: flex;
	flex-flow: row nowrap;
	position: relative;
	margin: 5px 0;
	height: 35px;
	padding: 5px 0;
	float: right;
}

input.search {
	width: calc(100% - 35px);
	height: 25px;
	border-radius: 50px 0 0 50px;
	font-size: 1em;
	text-align: center;
	border: 1px solid #660066;
	display: block;
	position: relative;
	padding: 5px 10px;
}

button.searchGo {
	height: 25px;
	width: 35px;
	border-radius: 0 30px 30px 0;
	border-left: 0;
	padding: 0px;
}

h4.searchTitle {
	font-weight: 200;
	text-align: center;
	color: #660066;
}

div.searchResults {
	display: none;
	justify-content: center;
	align-items: center;
	padding: 10px 0 20px 0;
	margin-bottom: 40px;
	flex-flow: column nowrap;
	gap: 60px;
}

a.clearSearch {
	display: block;
	width: max-content;
	margin: 0 auto;
	position: relative;
	font-size: 0.8em;
}

span.highlight {
	display: inline-block;
	padding: 0 5px;
	background: rgba(120, 0, 120, 0.8);
	border-radius: 5px;
	color: #fff;
}

div.search-category {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
	gap: 20px;
	width: 100%;
	margin-bottom: 40px;
}

@media screen and (max-width: 512px) {
	div.search-category {
	    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
	}
}

h3.searchSectionTitle {
	text-align: center;
	padding: 10px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 50px;
	width: 100%;
}

div.search-lessons h3.searchSectionTitle {
	grid-column: 1/4;
}

div.search-category h4.courseTitle {
    font-size: 0.9em;
    font-weight: 500;
    margin: 0 0 5px 0;
}

div.search-category a.courseLink {
	text-decoration: none;
	color: #000;
}

div.search-category div.course {
	border-radius: 10px;
	padding: 10px 10px 10px 90px;
	background-color: rgba(255, 255, 255, 0.8);
	position: relative;
	height: 100%;
}

div.search-category div.course:hover {
	cursor: pointer;
	background-color: rgba(255, 255, 255, 1);
}

div.search-category div.course img.areaIcon {
	width: 80px;
	height: auto;
	position: absolute;
	top: 5px;
	left: 5px;
}

div.search-category p.subjectArea {
	font-size: 0.75em;
	margin: 0 0 10px 0;
	text-align: left;
}

div.search-category p.lessonCount {
	font-size: 0.75em;
	padding: 5px 10px;
	border-radius: 10px;
	background-color: rgba(102, 0, 102, 0.2);
	color: #606;
	font-weight: 500;
	display: inline-block;
}

div.search-category.search-lessons {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
	gap: 20px;
} 

div.search-lessons p.lesson {
	padding: 5px 10px;
	font-size: 0.8em;
	color: #666;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
}

div.search-lessons p.mediaCount {
	margin: 10px 0 0 0;
	padding: 5px 10px;
	border-radius: 0 0 10px 10px;
	background: #fff linear-gradient(20deg, rgba(102, 0, 102, 0.2), rgba(0, 197, 218, 0.2));
	width: max-content;
	color: #333;
	font-size: 0.8em;
}

div.search-lessons div.lesson {
	position: relative;
	padding: 10px;
	border-radius: 10px;
	min-height: 110px;
	height: 100%;
	background: rgba(255, 255, 255, 0.7) url("/img/lesson.png");
	background-size: 60px 60px;
	background-position: 5px -3px;
	background-repeat: no-repeat;
	padding: 10px 10px 45px 70px;
}

div.search-lessons p.mediaCount {
	margin: 0;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: right;
}

div.search-lessons div.lesson:hover {
	background-color: rgba(255, 255, 255, 1);
}

div.search-lessons a.lessonLink {
	text-decoration: none;
	color: #000;
}

table.horizontal {
	width: 100%;
	max-width: 100%;
	overflow: scroll;
	font-size: 0.9em;
	border-spacing: 1px;
}

table.horizontal tr:first-child {
	background: linear-gradient(-90deg, #660066, #00c5da);	
	background-attachment: fixed;
}

table.horizontal th {
	color: #fff;
	padding: 8px 5px;
	background: transparent;
}

table.horizontal.sortable th {
	text-decoration: underline;
}

table.horizontal.sortable th:hover {
	background-color: #00c5da;
	cursor: pointer;
}

table.horizontal th:first-child {
	border-radius: 10px 0 0 0;
}

table.horizontal th:last-child {
	border-radius: 0 10px 0 0;
}

table.horizontal > tbody > tr:last-child > td:first-child {
	border-radius: 0 0 0 10px;
}

table.horizontal > tbody > tr:last-child > td:last-child {
	border-radius: 0 0 10px 0;
}

table.horizontal td {
	background-color: #fff;
	padding: 5px;
}

.fadeBackground table.horizontal td {
	background-color: #fff;
}

table.horizontal.inverse td {
	background-color: #fff;
}

table.horizontal th * {
	color: #fff;
}

table.horizontal td.center {
	text-align: center;
}

table.horizontal td a {
	color: #0097a7;
}

div.slideSwitch {
	height: 30px;
	width: 60px;
	border-radius: 15px;
	background-color: #555;
	padding: 3px;
	position: relative;
}

div.slideSwitch:hover {
	cursor: pointer;
}

div.slideSwitch.on {
	background-color: #5abf5a;
}

div.switch {
	border-radius: 15px;
	position: relative;
	height: 24px;
	width: 24px;
	background-color: #aaa;
	transition: left 0.2s linear;
	left: 0px;
}

div.slideSwitch.on div.switch {
	left: 30px;
	background-color: #444;
}

@media screen and (max-width: 540px) {
	a.navLink span {
		display: none;
	}
}

.loader {
	position: relative;
	height: 50%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: linear-gradient(#00c5da, #660066);
	animation: animate 1s linear infinite;
}

@keyframes animate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.loader span {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(#00c5da, #660066);
}

.loader span:nth-child(1) {
    filter: blur(5px);
}

.loader span:nth-child(2) {
    filter: blur(20px);
}

.loader span:nth-child(3) {
    filter: blur(30px);
}

.loader span:nth-child(4) {
    filter: blur(75px);
}

.loader:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: rgba(255, 255, 255, 0.8);
    border: solid white 0px;
    border-radius: 50%;
    z-index: 10;
}

button.navShow {
	display: none;
}

div.mainWrap.loggedIn {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 10px;
}

div#navWrap {
	width: 250px;
	height: 100%;
	position: relative;
}

div#navWrap svg * {
	fill: #606;
}

div.nav {
	width: 100%;
	height: max-content;
	position: relative;
	height: 100%;
}

div.nav ul.navList {
	list-style: none;
	padding: 0;
	margin: 0;
	position: sticky;
	top: 120px;
}

div.nav ul.navList a {
	text-decoration: none;
	color: #606;
}

div.nav ul.navList li.navItem {
	padding: 10px;
	border-radius: 5px;
	height: 40px;
	line-height: 1.37em !important;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: 10px;
	font-weight: 500;
}

div.nav ul.navList li.navItem span {
	line-height: 1.37em !important;
}

div.nav ul.navList li.navItem svg {
	width: 30px;
	height: 30px;
}

div#navWrap div.nav ul.navList li.navItem:hover {
	background: linear-gradient(20deg, rgba(102, 0, 102, 0.8), rgba(0, 197, 218, 0.8));
	color: #fff;
}

div#navWrap div.nav ul.navList li.navItem:hover svg * {
	fill: #fff;
}

button.navHide {
	display: none;
}

div#userBox {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: 10px;
	height: calc(100% + 20px);
	margin: -10px -20px 0 0;
}

div#userBox div.names h4.userName {
	font-size: 1.2em;
	color: #606;
}

div#userBox div.names h4.orgName {
	font-size: 0.8em;
	color: #606;
}

div#userBox div.profilePic {
	height: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
}

div#userBox div.profilePic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

a.notificationsLink {
	text-decoration: none;
}

div#notifications {
	background-color: transparent;
	height: calc(100% + 20px);
	width: auto;
	max-width: 75px;
	overflow: hidden;
	position: relative;
	margin-top: -10px;
}

div#notifications div#notCount {
	width: 75px;
	height: 100%;
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 60px 60px;
}

div.notifications div#notCount svg {
	position: absolute;
}

div#notifications div#notCount:hover {
	cursor: pointer;
	background: #fff linear-gradient(-30deg, rgba(102, 0, 102, 0.8), rgba(0, 197, 218, 0.8));
}

div#notifications div#notCount:active {
	background-color: #0097a7;
}

div#notifications div#notCount div.notCountNumber {
	width: auto;
	min-width: 25px;
	height: 25px;
	padding: 0 5px;
	border-radius: 60px;
	background-color: red;
	font-weight: 700;
	position: relative;
}

div#notifications div#notCount div.notCountNumber.none {
	background-color: #a5a5a5;
}

div#notifications div.notCountNumber p {
	color: #fff !important;
	width: auto;
	height: 25px;
	text-align: center;
	line-height: 25px;
	font-size: 20px !important;
}

div#notCount svg {
	width: auto;
	display: block;
	position: absolute;
	margin: 5px auto;
	height: 65px;
}

div#notCount svg *,
div#notCount svg .st0 {
	fill: #b5b5b5;
}

div#notCount:hover svg *,
div#notCount:hover .st0 {
	fill: #fff;
}

button.navHide {
	display: none;
	border-radius: 0;
	border: 0;
	background: linear-gradient(-30deg, rgba(102, 0, 102, 0.8), rgba(0, 197, 218, 0.8));
	color: #fff;
	width: 100%;
	padding: 20px 0;
	font-size: 1.3em;
}

button.navShow {
	display: none;
	width: calc(100% + 20px);
	margin: 0 0 20px -10px;
	padding: 10px;
	border: 0;
	border-radius: 0;
	align-items: center;
	justify-content: center;
	font-size: 1.3em;
}

button.navShow svg {
	width: 30px;
	height: 30px;
}

@media screen and (max-width: 800px),
screen and (orientation: landscape) and (max-height: 500px) {
	div.mainWrap.loggedIn {
		display: block;
	}

	div#navWrap {
		height: 100vh;
		position: fixed;
		overflow-x: hidden;
		width: 0;
		top: 0;
		left: 0;
		z-index: 300;
		background: rgba(255, 255, 255, 0.8);
		backdrop-filter: blur(10px);
	}

	div.nav ul.navList {
		position: relative;
		top: 20px;
		left: 0;
		width: 100%;
	}

	div.nav {
		overflow-y: auto;
	}

	button.navShow {
		display: flex;
	}

	button.navHide {
		display: block;
	}

	div#navWrap div.nav ul.navList li.navItem {
		justify-content: center;
		border-radius: 0;
	}
}

@media screen and (max-width: 512px),
screen and (orientation: landscape) and (max-height: 500px)  {
	div.header {
		height: 50px;
		padding: 5px 15px;
	}
	img.mainLogo {
		height: 40px;
	}
	div.mainWrap {
		padding-top: 70px;
	}
	
	a.navLink.loginRegister {
		font-size: 12px;
		height: 30px;
		line-height: 30px;
	}
	div#notifications {
		height: calc(100% + 10px);
		margin-top: -5px;
	}
	div#notCount {
		padding: 5px 0;
	}
	div#notCount svg {
		height: 100%;
		width: auto;
		max-width: 40px;
	}
	div#userBox {
		height: calc(100% + 10px);
		margin-top: -5px;
	}
	div#userBox div.names h4.userName {
		font-size: 0.9em;
	}
	div#userBox div.names h4.orgName {
		font-size: 0.7em;
	}
}

div.courseBoxNew.compact {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
	padding-bottom: 40px;
}

div.courseBoxNew div.courseImage {
	width: calc(100% + 10px);
	border-radius: 5px 5px 0 0;
	overflow: hidden;
	margin: -5px 0 0 -5px;
	height: auto;
	max-height: 320px;
	display: flex;
	justify-content: center;
	align-items: center;
}

div.courseBoxNew  div.courseImage img {
	display: block;
	height: auto;
	max-width: 100%;
	width: 100%;
	border-radius: 5px 5px 0 0;
}

div.courseBoxNew.compact div.courseButtons {
	display: flex;
	flex-flow: row nowrap;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

div.courseBoxNew.compact div.courseButtons button,
div.courseBoxNew.compact div.courseButtons a {
	text-decoration: none;
	margin: 0;
	display: block;
	font-size: 1em;
	font-weight: 700;
	flex-grow: 1;
	border-radius: 0;
	border: 0;
	background: transparent;
}

div.courseBoxNew.compact div.courseButtons a button.moreInfo {
	width: 100%;
}

div.courseBoxNew.compact:hover div.courseButtons button {
	color: #fff;
}

div.courseBoxNew.compact div.courseButtons button:hover {
	background: #fff linear-gradient(10deg, rgba(102, 0, 102, 1), rgba(0, 197, 218, 1));
}

/* div.courseBoxNew:hover div.courseButtons button {
	color: #fff;
	border-color: #fff;
} */

div.courseBoxNew:hover div.courseButtons button:hover {
	border-color: #606;
}

div.courseBoxNew:hover div.courseButtons button:active {
	border-color: #00c5da;
}

div.courseBoxNew:hover {
	background: linear-gradient(90deg, #606, #00c5da);
}

div.courseBoxNew.compact:hover p.courseTitle {
	background: linear-gradient(90deg, #606, #00c5da);
}

/* div.courseBoxNew:hover div.courseButtons button {
	color: #fff;
	border-color: #fff;
} */

div.courseBoxNew:hover div.courseButtons button:hover {
	border-color: #606;
}

div.courseBoxNew:hover div.courseButtons button:active {
	border-color: #00c5da;
}

div.courseBoxNew.compact:hover > svg * {
	fill: #fff !important;
}

div.courseBoxNew.compact:hover > svg {
	background: linear-gradient(-30deg, #606, #00c5da);
}

div.courseBoxNew:hover img {
	filter: brightness(75%);
}

div.courseBoxNew:hover p:not(.ratingDetails),
div.courseBoxNew:hover span,
div.courseBoxNew:hover h3,
div.courseBoxNew:hover a {
	color: #fff !important;
}

div.courseBoxNew.compact > svg {
	position: absolute;
	height: 50px;
	width: 50px;
	z-index: 2;
	padding: 5px;
	top: 10px;
	right: 10px;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 10px;
}

div.courseBoxNew.compact p.courseTitle {
	font-weight: 700;
	font-size: 1.3em;
	text-align: center;
	width: 100%;
	position: relative;
	top: 0;
	left: 0;
	padding: 10px 10px 10px 10px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(5px);
}

button.closeMoreInfoTop,
button.closeAccessCodeTop,
button.closePopUp {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: transparent;
	border: 0px solid #5a5a5a;
	border-top-left-radius: 0;
	border-bottom-right-radius: 0;
	font-weight: 700;
	width: 30px;
	height: 30px;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 0 10px 0 10px;
	font-size: 0.9em;
	padding: 0;
}

button.closeMoreInfoTop {
	border-radius: 0 10px 0 10px;
	border: 0 !important;
}

button.closeMoreInfoTop:hover {
	background-color: rgba(0, 0, 0, 0.6) !important;
	color: #fff !important;
}

button.closeAccessCodeTop:hover {
	background-color: #00c5da;
}

@media screen and (max-width: 560px) {
	div.featuredCoursesWrap {
		grid-template-columns: 1fr !important;
	}
}

div.courseBoxNew p.learnMore {
	font-size: 1.2em;
	text-align: left;
	max-width: 100%;
	color: #606;
}

div.courseBoxNew p.learnMore a {
	color: #606;
}

div.courseBoxNew.compact p.courseSummary {
	padding: 0;
	margin: 0 0 5px 0;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 40px;
}

div.courseBoxNew p.courseTitle > svg {
	height: 18px;
	width: 18px;
	float: left;
	margin-right: 5px;
	margin-top: 2px;
}

div.courseBoxNew div.courseRatingDisplay {
	margin: 0 auto 0px auto;
}

div.courseRating {
	width: 100%;
	max-width: 750px;
	display: block;
	position: relative;
	margin: 40px auto;
	border-radius: 5px;
	padding: 10px;
}

h3.ratingTitle {
	text-align: center;
	padding-bottom: 5px;
	margin-bottom: 5px !important;
	border-bottom: 2px solid #606;
}

div.ratingBoxes {
	display: flex;
	flex-direction: row;
}

div.ratingBoxes div.rating {
	width: 20%;
	text-align: center;
	padding: 20px 5px;
	position: relative;
}

div.ratingBoxes div.rating:hover {
	cursor: pointer;
	background-color: #00c5da;
	border-radius: 5px;
}

div.ratingBoxes div.rating:active {
	background-color: #0097a7;
}

div.ratingBoxes div.rating:hover h3 {
	color: #fff;
}

div.rating svg {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -26px 0 0 -25px;
	z-index: 0;
}

div.rating svg * {
	fill: #abdbe1;
}

div.rating h3 {
	position: relative;
	z-index: 1;
	margin-bottom: 0 !important;
}

div.ratingBoxes div.rating:hover svg * {
	fill: #0097a7;
}

div.ratingBoxes div.rating:active svg * {
	fill: #00c5da;
}

p.leaveAComment {
	text-align: center;
	margin: 10px 0 0 0;
}

div.commentBox {
	display: none;
	padding: 10px;
	background-color: #f0f0f0;
	border-radius: 5px;
	margin-top: 10px;
}

div.commentBox textarea.leaveAComment {
	display: block;
	position: relative;
	width: 100%;
	height: 150px;
	max-width: 600px;
	margin: 0 auto 10px auto;
	font-size: 1.2em;
	padding: 10px;
}

p.thanksForComment {
	padding: 10px;
	text-align: center;
}

h3.ratingInProgress,
h3.yourRating {
	text-align: center;
	padding: 10px;
}

div.commentBox button.leaveAComment {
	display: block;
	position: relative;
	width: 100%;
	max-width: 150px;
	margin: 0 auto 10px auto;
}

div.commentBox button.leaveAComment.cancel {
	margin-bottom: 0;
}

div.courseRating {
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 0.7);
}

div.rating svg * {
    fill: #660066;
}

div.ratingBoxes div.rating:hover {
    background: #fff linear-gradient(10deg, rgba(102, 0, 102, 0.7), rgba(0, 197, 218, 0.7));
}

div.ratingBoxes div.rating:hover svg * {
    fill: #660066;
}

div.ratingBoxes div.rating h3 {
    color: #fff;
}

div.courseRatingDisplay {
	border-radius: 3px;
	margin: 5px 0;
	padding: 10px;
	display: inline-flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: max-content;
}

div.courseRatingDisplay p {
	font-size: 14px !important;
	font-weight: 700 !important;
	text-align: left !important;
	white-space: nowrap;
	margin: 0 !important;
	padding: 5px !important;
	max-width: 100% !important;
	line-height: 10px !important;
}

div.courseRatingDisplay p.ratingDetails {
	float: left;
	padding-left: 100px;
	color: #660066 !important;
}

div.ratingWrap {
	width: 150px;
	height: 30px;
	float: left;
	position: relative;
}

div.ratingStars {
	width: 150px;
	height: 30px;
	overflow: hidden;
	position: relative;
	float: left;
}

div.ratingStars > svg,
div.ratingWrap > svg {
	width: 30px;
	height: 30px;
	position: absolute;
	top: -1px;
}

div.ratingStars > svg * {
	fill: gold !important;
}

div.ratingWrap > svg * {
	fill: #a5a5a5 !important;
}

div.ratingStars svg:nth-child(1) {
	left: 0;
}

div.ratingStars svg:nth-child(2) {
	left: 30px;
}

div.ratingStars svg:nth-child(3) {
	left: 60px;
}

div.ratingStars svg:nth-child(4) {
	left: 90px;
}

div.ratingStars svg:nth-child(5) {
	left: 120px;
}

div.ratingWrap > svg:nth-of-type(1) {
	left: 0;
}

div.ratingWrap > svg:nth-of-type(2) {
	left: 30px;
}

div.ratingWrap > svg:nth-of-type(3) {
	left: 60px;
}

div.ratingWrap > svg:nth-of-type(4) {
	left: 90px;
}

div.ratingWrap > svg:nth-of-type(5) {
	left: 120px;
}

h3.sectionTitle {
	padding: 40px 0;
	text-align: center;
	font-size: 2em;
}

.lessonPreview {
	width: 100%;
	max-width: 750px;
	height: auto;
	margin: 0 auto 20px auto;
	overflow: hidden;
	position: relative;
	padding: 10px;
	border-radius: 20px;
}

h4.lessonPreviewTitle {
	padding-bottom: 5px;
	border-bottom: 2px solid #abdbe1;
	margin-bottom: 5px;
}

.lessonPreviewSixth {
	height: 70px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 2;
	border-radius: 5px;
	margin-bottom: 10px;
	display: flex;
	flex-flow: row nowrap;
}

.lessonPreviewSixth:last-child {
	margin-bottom: 0;
}

.lessonPreviewSixth:hover {
	cursor: pointer;
}

.lessonPreviewSixth div.previewIcon {
	height: 70px;
	width: 70px;
	border-radius: 15px;
	z-index: 2;
	position: relative;
	margin-right: 5px;
	background: #fff linear-gradient(45deg, rgba(102, 0, 102, 0.4), rgba(0, 197, 218, 0.4));
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
}

.lessonPreviewSixth:hover div.previewIcon {
	background: #fff linear-gradient(45deg, rgba(102, 0, 102, 1), rgba(0, 197, 218, 1));
}

.lessonPreviewSixth div.previewIcon svg {
	width: 50px;
	height: 50px;
}

.lessonPreviewSixth div.previewIcon svg * {
	fill: #660066;
}

.lessonPreviewSixth:hover div.previewIcon svg * {
	fill: #fff;
}

div.segmentLabel {
	flex-grow: 1;
	background-color: #00c5da;
	border-radius: 15px;
	height: 100%;
	padding: 10px;
	text-align: left;
	vertical-align: middle;
	display: table;
	background: #fff linear-gradient(45deg, rgba(102, 0, 102, 0.4), rgba(0, 197, 218, 0.4));
}

p.segmentLabel {
	font-size: 14px;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
	font-weight: 700;	
	color: #660066;
	font-size: 1.3em;
	text-align: center;
}

@media screen and (max-width: 768px) {
	p.segmentLabel {
		font-size: 1em;
	}
}

.lessonPreviewSixth:hover {
	cursor: pointer;
}


.lessonPreviewSixth:hover div.segmentLabel {
	background: #fff linear-gradient(45deg, rgba(102, 0, 102, 1), rgba(0, 197, 218, 1));
}

.lessonPreviewSixth:hover p.segmentLabel {
	color: #fff;
}

.lessonPreviewSixth:active div.previewIcon {
	background: #fff linear-gradient(45deg, rgba(102, 0, 102, 0.8), rgba(0, 197, 218, 0.8));
}

.lessonPreviewSixth:active div.segmentLabel {
	background: #fff linear-gradient(45deg, rgba(102, 0, 102, 0.8), rgba(0, 197, 218, 0.8));
}

h1.pageTitle {
	font-size: 4em;
	text-align: center;
	margin: 60px auto;
}

p.subSell {
	text-align: left;
	font-size: 1em;
	font-weight: 700;
	max-width: 100%;
	width: 100%;
}

h3.infoTitle {
    width: calc(100% + 40px);
    position: relative;
    top: -20px;
    left: -20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-align: center;
    padding: 20px;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    background-position: center 10px;
    background: rgba(255,255,255,1) linear-gradient(-30deg, rgba(102,0,102,1), rgba(0,197,218,1));
	color: #fff;
}

h3.infoTitle svg {
	width: 30px;
	height: 30px;
}

h3.accessCodeTitle {
	width: calc(100% + 40px);
	position: relative;
	top: -20px;
	left: -20px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	text-align: center;
	padding: 20px;
	background: #fff linear-gradient(45deg, rgba(102, 0, 102, 0.4), rgba(0, 197, 218, 0.4));
}

div.accessCodePurchaseWindow p {
	text-align: center;
	margin: 20px 0;
}

div.accessCodePurchaseWindow label,
div.accessCodePurchaseWindow input {
	display: block;
	position: relative;
	margin: 20px auto 10px auto;
	text-align: center;
}

div.accessCodePurchaseWindow input {
	width: 100%;
	max-width: 300px;
	margin: 0 auto 20px auto;
	padding: 5px;
	border-radius: 5px;
	border: 1px solid #606;
}

div.accessCodePurchaseWindow div.loginError {
	display: none;
}

div.accessCodePurchaseWindow div.loginError p.error {
	font-weight: 700;
	color: #d66565;
}

div.accessCodePurchaseWindow div.buttonWrap {
	display: flex;
	flex-flow: row nowrap;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

div.accessCodePurchaseWindow div.buttonWrap button {
	width: 50%;
	max-width: 150px;
}

div.accessCodePurchaseWindow p.courseTitle {
	font-weight: 700;
	border-radius: 10px;
	padding: 20px;
	font-size: 1.3em;
}

div.accessCodePurchaseWindow img.purchaseLogo {
	width: 100%;
	max-width: 150px;
	margin: 20px auto;
	display: block;
	position: relative;
}

div.moreInfoCategories {
	text-align: center;
	margin-bottom: 30px;
}

div.moreInfoCategories h4 {
	text-align: center;
	margin: 30px auto;
}

div.moreInfoCategories div.categoryDisplay {
	border-radius: 5px;
    padding: 5px;
    display: inline-block;
    min-width: 80px;
    font-weight: 700;
}

div.moreinfoCategories div.categoryDisplay svg {
	width: 50px;
	height: 50px;
}

div.moreInfoWindow img.courseImageBig {
	width: 100%;
	margin: 0 0 30px 0;
	display: block;
	position: relative;
	border-radius: 20px;
}

div.moreInfoWindow > p,
div.moreInfoWindow > ul {
	font-size: 1.2em;
	line-height: 1.5em;
	margin-bottom: 20px;
}

div.moreInfoWindow > ul {
	padding-left: 20px;
}

div.moreInfoWindow > button {
	width: 100%;
	max-width: 300px;
	margin: 0 auto 10px auto;
	display: block;
	position: relative;
}

div.moreInfoWindow > button.addToBasketMoreInfo {
	background: linear-gradient(-30deg, #606, #00c5da);
	border: 0 !important;
	color: #fff !important;
	font-weight: 700;
}

div.moreInfoWindow > button.addToBasketMoreInfo:hover {
	background: linear-gradient(-30deg, #909, #00dddd);
}

div.moreInfoWindow > h4 {
	font-size: 1.2em;
	font-weight: 700;
	margin: 30px auto;
	text-align: center;
}

div.orgGrid {
	padding: 20px;
	border-radius: 20px;
	background-color: #fff;
	margin-bottom: 80px;
}

div.orgGridWrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

@media screen and (max-width: 768px) {
	div.orgGridWrap {
		grid-template-columns: repeat(2, 1fr);
	}
}

div.org {
	width: 100%;
	height: 100%;
	max-height: 160px;
	display: flex;
	justify-content: center;
	align-items: center;
}

div.org img,
div.org a {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

div.basketLink {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background: #fff linear-gradient(-30deg, rgba(102, 0, 102, 0.8), rgba(0, 197, 218, 0.8));
    height: 70px;
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    padding: 10px;
    position: sticky;
	top: 120px;
    margin: 40px auto;
	display: none;
	z-index: 205;
	border: 10px solid #fff;
}

@media screen and (max-width: 512px) {
	div.basketLink {
		top: 70px;
	}
}

div.basketLink:hover {
    background: #fff linear-gradient(-30deg, rgba(102, 0, 102, 1), rgba(0, 197, 218, 1));
}

div.basketLink p {
    font-size: 1.4em;
    font-weight: 700;
    color: #fff;
}

div.basketLink img {
    position: relative;
    width: 40px;
    height: 40px;
    margin-left: 20px;
}

/* Bar Graphs */

div.barGraph {
	height: 200px;
	width: 100%;
	padding: 0px;
	padding-top: 50px;
	position: relative;
	font-size: 14px;
	background-color: #e5e5e5;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	overflow: auto;
}

div.container div.barGraph p {
	font-size: 14px;
}

div.barWrap {
	height: 100%;
	float: left;
	position: relative;
	border-bottom: 5px solid #00c5da;
	padding: 0;
}

div.barMonthLabel {
	height: 50px;
	position: absolute;
	top: -50px;
	left: 0;
	width: 100%;
	text-align: center;
	padding: 0;
	border-bottom: 1px solid #606;
	background: linear-gradient(0deg, rgba(102, 0, 102, 0.8), rgba(0, 197, 218, 0.8));
	border-right: 1px solid #606;
	display: flex;
	justify-content: center;
	align-items: center;
}

div.barMonthLabel p {
	color: #fff;
	font-weight: 500;
}

div.barWrap:last-of-type div.barMonthLabel {
	border-right: 0;
}

div.bar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: none;
	background: #abdbe1; /* Old browsers */
	background: -moz-linear-gradient(left, #abdbe1 0%, #98d3db 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #abdbe1 0%,#98d3db 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #abdbe1 0%,#98d3db 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

div.container div.barGraph div.bar p.label {
	position: absolute;
	bottom: 10px;
	width: 100%;
	text-align: center;
	font-weight: 300;
	font-size: 1.5em;
	line-height: 0.9em;
}

h3.graphTitle {
	margin-bottom: 10px;
	text-align: center;
}

div.container div.barGraph div.bar p.label span.monthRevenue {
	font-size: 0.7em;
	font-weight: 100;
}

div.orderLeft,
div.orderRight {
	width: 50%;
	float: left;
}

div.barGraph div.bar p.label {
	position: absolute;
	bottom: 10px;
	width: 100%;
	text-align: center;
	font-weight: 300;
	font-size: 1.2em;
	line-height: 0.9em;
}

div.section {
	border-radius: 20px;
	width: 100%;
	padding: 20px;
	margin: 0 0 30px 0;
	border: 0;
}