* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	color: #222;
	text-rendering: optimizeLegibility;
}

html {
	height: 100%;
	padding-bottom: 20px;
}

html,
body {
	width: 100%;
	/* background-color: #ccc; */
	background: #fff linear-gradient(-90deg, rgba(102, 0, 102, 0.3), rgba(0, 197, 218, 0.3));
	background-repeat: no-repeat;
	background-size: cover;
	font-size: 14px;
	min-height: 100%;
}

strong {
	font-weight: 900 !important;
}

table {
	width: 100%;
}

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

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

body.dark ::selection {
	color: #fff;
	background-color: #00c5da;
}

body.dark ::-moz-selection {
	color: #fff;
	background-color: #00c5da;
}

body.dark ::placeholder {
	color: #bbb;
}

*::-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;
}

a,
a strong {
	color: #00c5da;
	font-weight: 700;
}

ul, ol  {
	padding-left: 1.4em;
}

ul.navList {
	padding-left: 0;
}

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

input, textarea {
	transition: box-shadow 0.2s linear;
	-o-transition: box-shadow 0.2s linear;
	-moz-transition: box-shadow 0.2s linear;
	-webkit-transition: box-shadow 0.2s linear;
	border: 1px solid #5a5a5a;
}

input:focus, textarea:focus, trix-editor:focus {
	box-shadow: inset 0 0 15px -5px #00c5da;
}

.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;
}

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

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

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

button {
	font-weight: 700;
	font-size: 1em;
	padding: 5px 10px;
	border-radius: 3px;
}

button * {
	color: #660066;
}

body.dark button {
	border-color: #00c5da;
	color: #00c5da;
}

body.dark button * {
	color: #fff;
}

body.dark input,
body.dark select,
body.dark textarea {
	background-color: #666;
	border-color: #00c5da;
}

button:hover {
	cursor: pointer;
	background-color: #660066;
	color: #fff;
}

button:hover * {
	color: #fff;
}

body.dark button:hover {
	background-color: #00c5da;
	color: #fff;
}

button:active {
	background-color: #990099;
	border-color: #990099;
}

body.dark button:active {
	background-color: #543ede;
	border-color: #543ede;
}

blockquote {
	padding: 10px;
	border-radius: 3px;
	background-color: #d1ebee;
	font-style: italic;
	border: 1px solid #0097a7;
	position: relative;
	margin-top: 15px;
}

blockquote::before {
	content: "Quote";
	position: absolute;
	top: -17px;
	left: 5px;
	padding: 0 4px;
	font-style: italic;
	font-weight: 700;
	background-color: #d1ebee;
	border-radius: 3px;
	border: 1px solid #0097a7;
	font-size: 0.9em;
}

body.dark blockquote {
	background-color: #444;
}

body.dark blockquote:before {
	background-color: #444;
}

h3.latestNewsletterTitle {
	display: none;
	text-align: center;
	width: 100%;
	max-width: 700px;
	margin: 0 auto 20px auto;
	position: relative;
	border-bottom: 1px solid #660066;
}

body.dark h3.latestNewsletterTitle {
	border-color: #00c5da;
}

div.latestNewsletter {
	padding: 10px;
	background-color: #e5e5e5;
	border-radius: 10px;
	width: 100%;
	max-width: 700px;
	margin: 0 auto 20px auto;
	max-height: 250px;
	overflow: hidden;
}

body.dark div.latestNewsletter {
	background-color: #222;
}

div.latestNewsletter h3.newsletterTitle {
	text-align: center;
	margin-bottom: 10px;
	border-bottom: 2px solid #c5c5c5;
	font-size: 1.4em;
}

div.latestNewsletter div.newsletterDate {
	font-size: 0.8em;
	text-align: center;
	margin-bottom: 10px;
}

div.latestNewsletter div.newsletterContent {
	padding: 10px;
	border-radius: 10px;
	background-color: #fff;
}

body.dark div.latestNewsletter div.newsletterContent {
	background-color: #333;
}

div.latestNewsletter button.readMore {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(to top, rgba(240, 240, 240, 1) 30%, rgba(240, 240, 240, 0.6) 60%, rgba(240, 240, 240, 0) 100%);
	padding: 30px 20px 10px 20px;
	border: none;
	width: 100%;
}

body.dark div.latestNewsletter button.readMore {
	background: linear-gradient(to top, #222 50%, rgba(34, 34, 34, 0.9) 80%, rgba(34, 34, 34, 0) 100%);
}

div.latestNewsletter button.readMore:hover,
body.dark div.latestNewsletter button.readMore:hover {
	background: linear-gradient(to top, rgba(102, 0, 102, 1), rgba(0, 228, 254, 0));
}

div.latestNewsletter button.readMore:active {
	color: #00c5da
}

div.latestNewsletter {
	position: relative;
	/* Add this if not already present */
}

div.latestNewsletter *.ql-align-center {
	text-align: center;
}

div.latestNewsletter *.ql-align-justify {
	text-align: justify;
}

div.latestNewsletter *.ql-align-right {
	text-align: right;
}

div.latestNewsletter img {
	max-width: 100%;
	max-height: 500px;
	display: block;
	margin: 0 auto 10px auto;
	position: relative;
	height: auto;
}

div#ui-datepicker-div {
	z-index: 50000 !important;
}

body.dark div#ui-datepicker-div,
div#ui-datepicker-div {
	border: 0;
	box-shadow: 0px 5px 15px -5px #000;
}

div#ui-datepicker-div,
.ui-datepicker table,
.ui-widget-content {
	background: #e5e5e5;
}

body.dark div#ui-datepicker-div,
body.dark .ui-datepicker table,
body.dark .ui-widget-content {
	background: #555;
	background-color: #555 !important;
}

body .ui-datepicker .ui-datepicker-prev, 
body .ui-datepicker .ui-datepicker-next {
	top: 3px;
}

body .ui-datepicker .ui-datepicker-prev {
	left: 3px;
}

body .ui-datepicker .ui-datepicker-next {
	right: 3px;
}

body.dark .ui-datepicker-prev-hover,
body:not(.dark) .ui-datepicker-prev-hover,
body.dark .ui-datepicker-next-hover,
body:not(.dark) .ui-datepicker-next-hover {
	background: #0097a7;
	background-color: #0097a7;
	border: 0;
	color: #000;
}

body.dark .ui-datepicker-prev-hover span.ui-icon,
body:not(.dark) .ui-datepicker-prev-hover span.ui-icon,
body.dark .ui-datepicker-next-hover span.ui-icon,
body:not(.dark) .ui-datepicker-next-hover span.ui-icon {
	background-image: url(../jquery/images/ui-icons_222222_256x240.png);
}

.ui-datepicker-prev-hover span.ui-icon {
	color: #fff;
}

div#ui-datepicker-div td a.ui-state-default {
	border: 0;
	border-radius: 2px;
	color: #5a5a5a;
}

body.dark div#ui-datepicker-div td a.ui-state-default {
	color: #fff;
}

body.dark div#ui-datepicker-div td a.ui-state-default {
	background: #222;
	color: #fff;
}

div#ui-datepicker-div td a.ui-state-default.ui-state-hover,
body.dark div#ui-datepicker-div td a.ui-state-default.ui-state-hover {
	background: #b2eff7;
	color: #606;
}

div#ui-datepicker-div td.ui-datepicker-today a.ui-state-active,
body.dark div#ui-datepicker-div td.ui-datepicker-current-day a.ui-state-active {
	background: #909;
	color: #fff;
}

.ui-datepicker .ui-datepicker-header {
	background: linear-gradient(90deg, #606, #00c5da);
	border: 0;
	color: #fff;
}

.ui-datepicker .ui-datepicker-header span.ui-datepicker-month,
.ui-datepicker .ui-datepicker-header span.ui-datepicker-year {
	color: #fff;
}

.ui-datepicker 

span.subScript {
	font-weight: 300;
	font-size: 0.8em;
}

span.profanityWarning {
	font-weight: 700;
	font-size: 0.8em;
	color: #d66565;
}

div.darkBackground,
div.darkBackgroundUserSwitch,
div.laserAlertBackground {
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 20000;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	backdrop-filter: blur(5px);
}

div.darkBackground div.popUp,
div.darkBackgroundUserSwitch div.popUp {
	width: 90%;
	max-width: 700px;
	position: relative;
	max-height: calc(100% - 40px);
	overflow: auto;
	z-index: 11000;
	margin: auto;
	top: 20px;
	display: none;
	border-radius: 20px;
}

div.darkBackground div.popUp.fullWidth {
	width: 100%;
	max-width: 100%;
	height: 100%;
	max-height: 100%;
	top: 0;
	left: 0;
}

button.closePopUp {
	height: calc(100% - 10px);
	position: absolute;
	top: 5px;
	right: 5px;
	border: 1px solid #660066;
	padding: 0 10px;
	font-size: 0.6em;
	border-radius: 40px;
	background-color: transparent;
	font-weight: 700;
	color: #660066;
}

body.dark button.closePopUp {
	background-color: transparent;
	border-color: #00c5da;
	color: #00c5da;
}

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

body.dark button.closePopUp:hover {
	background-color: #0097a7;
	border-color: #0097a7;
	color: #fff;
}

button.closePopUp:active {
	background-color: #990099;
	border-color: #990099;	
}

body.dark button.closePopUp:active {
	background-color: #543ede;
	border-color: #543ede;
}

div.tableScrollWrap {
	width: 100%;
	overflow: auto;
}

div.observations {
	margin: 20px 0;
	border-radius: 3px;
}

div.observations > h3 {
	padding: 0 0 10px 0;
	margin-bottom: 10px;
	border-bottom: 1px solid #660066;
	text-align: center;
}

body.dark div.observations > h3 {
	border-color: #00c5da;
}

div.observations button.addObservation,
div.addObservation button.saveObservation {
	display: block;
	position: relative;
	margin: 10px auto 0 auto;
	width: 100%;
	max-width: 400px;
}

div.addObservation p:not(.tip),
div.addObservation label,
div.addObservation input,
div.addObservation div.time {
	width:  100%;
	max-width: 600px;
	display: block;
	margin: 10px auto;
}

div.addObservation div.time {
	margin-bottom: 20px;
}

div.addObservation input {
	border: 1px solid #5a5a5a;
	border-radius: 3px;
	font-size: 1.2em;
	padding: 5px;
	margin-top: 5px;
}

body.dark div.addObservation input,
body.dark div.addObservation select {
	border-color: #00c5da;
}

div.addObservation label {
	padding-bottom: 5px;
	border-bottom: 1px solid #660066;
}

body.dark div.addObservation label {
	border-color: #00c5da;
}

div.time select.time {
	width: 50%;
	float: left;
	border: 1px solid #5a5a5a;
	height: 30px;
	font-size: 1.2em;
}

div.time select.time.hour {
	border-radius: 3px 0 0 3px;
}

div.time select.time.minute {
	border-radius:  0 5px 5px 0;
}

div.obs {
	width: 100%;
	max-width: 800px;
	display: block;
	position: relative;
	margin: 0 auto 10px auto;
	background-color: #e5e5e5;
	border-radius: 3px;
	padding: 10px 60px 10px 10px;
}

div.obs.completed {
	background-color: #c8eac8 !important;
}

body.dark div.obs {
	background-color: #222;
}

body.dark div.obs.completed {
	background-color: #5abf5a !important;
}

body.dark div.obs.completed * {
	color: #1c4a1c;
}

div.obs div.obsButtons {
	position: absolute;
	right: 5px;
	top: 5px;
	height: 32.2px;
	width: 160px;
}

div.obs div.obsButtons button {
	width: 80px;
	height: 32.2px;
	float: left;
	font-size: 0.8em;
	padding: 0 10px;
	border: 0;
}

div.obs div.obsButtons button.deleteObs {
	border-radius: 3px 0 0 3px;
	background-color: #efc2c2;
	color: #511515;
	border: 0;
}

body.dark div.obs div.obsButtons button.deleteObs {
	background-color: #d66565;
}

div.obs div.obsButtons button.deleteObs:hover {
	background-color: #d66565;
	color: #fff;
}

body.dark div.obs div.obsButtons button.deleteObs:hover {
	background-color: #912c2c;
}

div.obs div.obsButtons button.deleteObs:active {
	background-color: #a12b2b;
}

body.dark div.obs div.obsButtons button.deleteObs:active {
	background-color: #543ede;
}

div.obs div.obsButtons button.markObsCompleted {
	background-color: #b6e2b6;
	color: #174717;
	border-radius: 0 3px 3px 0;
}

div.obs div.obsButtons button.markObsCompleted:hover {
	color: #fff;
	background-color: #174717;
}

div.obs div.obsButtons h3 {
	position: relative;
	top: -5px;
	padding: 10px;
	text-align: right;
}

div.obs.completed h3 {
	color: #2a6f2a;
}

button.titleButton {
	border: 1px solid #5a5a5a;
	position: absolute;
	right: 5px;
	top: 5px;
	padding: 0 40px;
	background-color: transparent;
	border-radius: 40px;
	height: calc(100% - 10px);
	font-weight: 700;
	font-size: 0.7em;
}

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

button.titleButton:active {
	background-color: #ff7800;
	border-color: #ff7800;
}

body.dark button.titleButton {
	background-color: transparent;
	border-color: #00c5da;
}

body.dark button.titleButton:hover {
	background-color: #0097a7;
	border-color: #0097a7;
}

body.dark button.titleButton:active {
	background-color: #543ede;
	border-color: #543ede;
}

div.graph {
	height: 300px;
	border-radius: 3px;
	width: 100%;
	margin-bottom: 20px;
	background-color: #e5e5e5;
	position: relative;
	/*padding: 20px 20px 40px 20px;*/
}

body.dark div.graph {
	background-color: #444;
}

div.xAxis div.tickLabel {
	transform-origin: 20% 100%;
	transform: rotate(30deg);
	font-weight: 700;
}

p.originalEndDate {
	font-weight: 700;
	margin: 20px 0;
	text-align: center;
	color: #d66565;
}

div#loadingDotsGraph {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 50%;
	margin-top: -50px;
	left: 50%;
	margin-left: -50px;
}

div.graphWrap {
	height: 250px;
	width: 100%;
	position: relative;
}

@media screen and (max-width: 768px) {
	div.xAxis div.tickLabel {
		transform-origin: 20% 90%;
		transform: rotate(45deg);
		font-weight: 100;
		font-size: 0.9em;
		max-width: 120px !important;
	}

	div.graph {
		padding: 10px 10px 40px 10px;
	}
}

div#loadingDots,
div#loadingDots2,
div.loadingDots {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 50%;
	margin-top: -50px;
	left: 50%;
	margin-left: -50px;
}

div.titleContainer  div#loadingDots {
	top: calc(50% + 40px);
}

div.laserAlert {
	width: 100%;
	max-width: 400px;
	height: auto;
	position: fixed;
	left: 50%;
	margin-left: -200px;
	top: 20px;
	background-color: #fff;
	border-radius: 3px;
	z-index: 30000;
	padding: 50px 10px 10px 10px;
	display: none;
}

div.laserAlert h3.alertTitle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #660066;
	color: #fff;
	padding: 10px;
	line-height: 20px;
	height: 40px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

body.dark div.laserAlert {
	background-color: #222;
	box-shadow: #00c5da 0px 15px 0px -12px;
}

body.dark div.laserAlert h3.alertTitle {
	background-color: #543ede;
	border-color: #00c5da;
}

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

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

div.laserAlert button.laserAlertOk:active {
	background-color: #0097a7;
}

body.dark button.laserAlertOk:active {
	background-color: #543ede;
}

p.tip,
div.tip {
	padding: 10px;
	border: 1px solid #660066;
	border-radius: 3px;
	background-color: #ffccff;
	margin-bottom: 10px;
	font-weight: 700;
	color: #220022;
	text-align: center;
}

p.tip *,
div.tip * {
	color: #220022;
}

p.tip span.orange {
	font-weight: 700;
	color: #5a5a5a;
	font-size: 1.1em;
	display: block;
	margin-bottom: 5px;
}

p.tip a {
	color: #0097a7;
}

body.dark p.tip,
body.dark div.tip,
body.dark p.tip span.orange,
body.dark p.tip * {
	border-color: #00c5da;
	background-color: #80c7cf;
	color: #00464d;
}

body.dark div.tip * {
	color: #006f7a;
}

body.dark p.tip a {
	color: #543ede;
}

body.dark p.tip span.bold {
	color: #006f7a;
}

h3.subHead {
	padding: 5px 0;
	border-bottom: 1px solid #660066;
	margin-bottom: 10px;
}

body.dark h3.subHead {
	border-color: #00c5da;
}

#spinWrap {
	width: 60px;
	height: 60px;
	background-color: #5a5a5a;
	background-color: rgba(175, 175, 175, 0.8);
	border-radius: 3px;
	position: fixed;
	top: -70px;
	left: 50%;
	margin-left: -30px;
	z-index: 10000;
}

#globalSpin {
	width: 100%;
	height: 100%;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.clearfix {
	display: block;
}

.bold {
	font-weight: 700;
}

.italic {
	font-style: italic;
}

.indented {
	margin-left: 20px;
}

.underlined {
	text-decoration: underline;
}

.sub {
	vertical-align: sub;
	font-size: 0.8em;
	font-weight: 300;
}

.sup {
	vertical-align: super;
	font-size: 0.7em;
}

.centered {
	text-align: center;
}

.rtl {
	display: block;
	direction: rtl;
}

p.empty,
p.instruction {
	font-weight: 300 !important;
	text-align: center !important;
	padding: 40px 20px !important;
	font-size: 1.1em !important;
}

p.empty.faded {
	opacity: 0.5;
}

#headWrap {
	position: fixed;
	top: 0px;
	z-index: 2000;
	width: 100%;
	height: 95px;
	background-color: transparent;
}

#header {
	height: 95px;
	position: relative;
	margin-top: 0px;
	left: 0px;
	z-index: 2000;
	width: 100%;
	background-color: #fff;
	border-bottom: 1px solid #e5e5e5;
}

body.dark #header {
	border-color: #00c5da;
}

#header.full {
	max-width: none;
}

div.headBacking {
	background-color: #e5e5e5;
	width: 100%;
	height: 50px;
	z-index: 1500;
	position: fixed;
	top: 0;
	left: 0;
}

div#mainLogo {
	height: 95px;
	width: 250px;
	position: absolute;
	padding: 5px;
	display: block;
	white-space: nowrap;
	border-right: 1px solid #e5e5e5;
	display: flex;
	justify-content: center;
}

div#mainLogo div.logo {
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

div#mainLogo img {
	height: auto;
	width: auto;
	max-width: 370px;
	max-height: 65px;
	display: inline-block;
	vertical-align: middle;
}

div#notifications {
	background-color: #f5f5f5;
	height: 95px;
	width: calc(100% - 630px);
	margin-left: 250px;
	overflow: hidden;
	position: relative;
	border-bottom: 1px solid #d5d5d5;
}

body.dark div#notifications {
	border-color: #00c5da;
}

div#notifications h3 {
	color: #00c5da;
	text-align: center;
	border-bottom: 2px solid #00c5da;
	margin-bottom: 5px;
}

div#notifications p {
	height: 20px;
	line-height: 16px;
	padding: 2px;
	font-size: 0.9em;
	color: #00c5da;
}

div#notifications a.overdue p {
	color: #d66565;
}

div#notifications p.overdue,
div#notifications a.overdue {
	color: #d66565;
}

div#notWrap a {
	width: 100%;
	max-width: 650px;
	line-height: 25px;
	display: block;
	position: relative;
	margin: 0 auto 5px auto;
	border-radius: 3px;
	padding: 5px;
	background-color: #e5e5e5;
	text-decoration: none;
}

div#notWrap a:hover {
	background-color: #abdbe1;
}

body.dark div#notWrap a {
	background-color: #444;
	color: #fff;
}
body.dark div#notWrap a:hover {
	background-color: #543ede;
}

div#notWrap p {
	line-height: 27px;
}

div#notifications div#notWrap {
	display: flex;
	align-items: center;
	align-content: center;
	height: 100%;
}

div#notWrap p.empty {
	height: auto;
	width: 100%;
	background-color: transparent;
	padding: 0 !important;
	flex-grow: 1;
	display: block;
}

div#notWrap p svg {
	height: 25px;
	width: 30px;
	margin-right: 10px;
	margin-top: 2px;
	float: left;
}

div#notWrap p svg * {
	fill: #00c5da;
}

div#notifications p.overdue svg *,
div#notifications a.overdue svg * {
	fill: #d66565;
}

div#notifications div#notCount {
	width: 75px;
	height: 100%;
	position: absolute;
	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(-20deg, rgba(102, 0, 102, 1), rgba(0, 197, 218, 1));
}

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

body.dark div#notifications div#notCount:hover {
	cursor: pointer;
	background-color: #0097a7;
}

body.dark div#notifications div#notCount:active {
	background-color: #00c5da;
}

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: 22px !important;
	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;
}

@media screen and (max-width: 690px) {
	div#notCount svg {
		height: 40px;
		width: 40px;
	}
}

div.unhideNav {
	height: 40px;
	width: 75px;
	position: absolute;
	top: 0;
	left: 75px;
	z-index: 100000;
	height: 100%;
}

button.unhideNav {
	background: transparent linear-gradient(-20deg, rgba(198, 0, 198, 0), rgba(0, 197, 218, 0));
	border: none;
	width: 75px;
	height: 100%;
	padding: 0;
	border-radius: 0;
}

button.unhideNav:hover {
	background: #fff linear-gradient(-20deg, rgba(102, 0, 102, 1), rgba(0, 197, 218, 1));
}

body.dark button.unhideNav {
	background: transparent linear-gradient(45deg, rgba(198, 0, 198, 0), rgba(0, 197, 218, 0));
}

body.dark button.unhideNav:hover {
	background: #fff linear-gradient(-20deg, rgba(102, 0, 102, 1), rgba(0, 197, 218, 1));
}

button.unhideNav svg {
	width: 40px;
	height: 40px;
	/* opacity: 0.5; */
}

button.unhideNav:hover svg {
	opacity: 1;
}

button.unhideNav svg * {
	fill: #b5b5b5;
}

button.unhideNav:hover svg *,
body.dark button.unhideNav:hover svg * {
	fill: #fff;
}

body.dark button.unhideNav svg * {
	fill: #00c5da;
}

div#globalDots {
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: 5px;
	right: 5px;
}

#userBox {
	position: absolute;
	right: 0;
	top: 0;
	height: 95px;
	width: 380px;
	padding: 5px 5px 5px 100px;
	text-align: left;
	border-left: 1px solid #e5e5e5;
	display: flex;
	flex-flow: column wrap;
}

#userBox * {
	line-height: 1.3em !important;
}

#userBox p.outOfOffice {
	font-weight: 700;
	color: #660066;
	display: none;
}

body.dark #userBox p.outOfOffice {
	color: #00c5da;
}

#userBox.outOfOffice p.outOfOffice {
	display: block;
}

#userBox p.goalDetails,
#userBox p.goalDetails span {
	font-size: 0.9em;
	line-height: 1.3em !important;
}

#userBox h4.userName {
	font-size: 1.2em;
	text-align: left;
	width: calc(100% - 5px);
	width: 100%;
}

#userBox p.userName {
	font-size: 0.9em;
	margin-bottom: 3px;
	text-align: left;
	width: calc(100% - 5px);
	width: 100%;
	line-height: 1.3em !important;
}

@media screen and (max-width: 845px) {
	#userBox p.userName::before {
		content: "(";
	}
	#userBox p.userName::after {
		content: ")";
	}
}

#userBox div.profilePic {
	width: 95px;
	height: 95px;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

#userBox div.profilePic div.outerContainer {
	width: 95px;
	height: 95px;
	background-position: center;
	overflow: hidden;
	position: relative;
	margin: auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

#userBox div.profilePic div.outerContainer > img {
	width: 105px;
	height: 105px;
	position: absolute;
	top: -5px;
	left: -5px;
	filter: blur(4px);
	z-index: 1;
}

#userBox div.profilePic div.innerImage {
	width: 100%;
	height: 100%;
	border-radius: 100%;
	background-size: 105px 105px;
	background-position: center;
	z-index: 2;
	position: relative;
}

#userBox div.profilePic div.border {
	border: 2px solid rgba(250, 250, 250, 0.5);
	z-index: 2;
	width: 85px;
	height: 85px;
	border-radius: 85px;
	overflow: hidden;
}

#userBox table.userDetails {
	text-align: left;
}

#userBox table.userDetails tr {
	padding: 0;
	height: 0.8em;
}

#userBox table.userDetails tr td {
	text-align: left;
	font-size: 0.8em;
	padding: 0;
	height: 0.8em;
	line-height: 0.8em;
}

#userBox table.userDetails tr td:first-child {
	padding-right: 10px;
}

div.progressWrap {
	width: 100%;
	height: 20px;
	position: relative;
	padding: 0;
}

#userBox div.progressWrap {
	height: 20px;
	width: calc(100% - 5px);
	width: 100%;
	padding: 0;
	margin: 2px 0 0 0;
}

div.progressWrap div.progressOuter {
	width: 100%;
	height: 100%;
	border-radius: 100px;
	background-color: #5a5a5a;
	position: relative;
	overflow: hidden;
}

div.progressWrap.goal div.progressOuter {
	height: 50%;
	border-radius: 50px 50px 0 0;
}

div.progressWrap.goal div.progressOuter.goal {
	border-radius: 0 0 50px 50px;
}

div.progressWrap div.progressOuter div.progressWidth {
	height: 100%;
	position: relative;
	float: left;
}

div.progressWrap div.progressOuter div.progressWidth div.progressInner {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background-color: #00c5da;
	width: 100%;
}

div.progressWrap div.progressOuter div.progressWidth.goal div.progressInner {
	background: repeating-linear-gradient(
		-45deg, 
		#00b8cc,
		#00b8cc 5px, 
		#c7e6eb 5px, 
		#c7e6eb 10px
	);
	background-size: 400% 400%;
	opacity: 0.7;
}

body.dark div.progressWrap div.progressOuter div.progressWidth.goal div.progressInner {
	background: repeating-linear-gradient(
		-45deg, 
		#007787,
		#007787 5px, 
		#abdbe1 5px, 
		#abdbe1 10px
	);
	background-size: 400% 400%;
	opacity: 0.5;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}

body.dark div.progressWrap div.progressOuter div.progressWidth div.progressInner {
	background-color: #0097a7;
}

div.progressWrap div.progressOuter.goal div.progressWidth div.progressInner.green {
	background-color: #5acf5a;
}

div.progressWrap div.progressOuter.goal div.progressWidth div.progressInner.red {
	background-color: #e66565;
}

div.progressWrap span.progressNumber {
	position: absolute;
	left: 0px;
	top: 0px;
	font-weight: 700;
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 20px;
	line-height: 22px;
	text-align: center;
	z-index: 200;
	color: #fff;
	padding: 0;
	font-size: 1em;
}

div.progressWrap span.progressNumber span {
	color: #fff;
}

div#userBox div.progressWrap span.progressNumber {
	height: 20px;
	line-height: 20px !important;
	font-size: 0.8em;
	top: 0px;
}

div#userBox div.progressWrap {
	margin-bottom: 2px;
}

div.statusIcons {
	width: 250px;
}

div.statusIcons a {
	display: block;
	width: calc(20% - 4px);
	margin-right: 5px;
	float: left;
	text-decoration: none;
}

div.statusIcons div {
	width: 100%;
	border-radius: 3px;
	margin-right: 4px;
	background-color: #abdbe1;
	padding-bottom: 5px;
}

div.statusIcons a:last-child {
	margin-right: 0;
}

div.statusIcons div.unread {
	border-color: #ff7800;
	background-color: #ff7800;
	-webkit-animation: colourPulse 6s infinite;
	-moz-animation: colourPulse 6s infinite;
	-o-animation: colourPulse 6s infinite;
	animation: colourPulse 6s infinite;
	animation-timing-function: ease;
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
}

div.statusIcons div svg {
	width: 100%;
	height: auto;
	max-height: 20px;
	margin: auto;
}

div.statusIcons div svg * {
	fill: #abdbe1;
	fill: #fff;
}

div.statusIcons div.unread svg * {
	fill: #ff7800;
	fill: #fff;
}

div.statusIcons div p {
	display: block;
	height: 18px;
	font-size: 1em;
	line-height: 18px;
	font-weight: 400;
	color: #abdbe1;
	color: #fff;
	text-align: center;
}

div.statusIcons div.unread p,
div.statusIcons div.unread p span {
	color: #ff7800;
	color: #fff;
	font-weight: 700;
}

#navWrap {
	width: 200px;
	min-height: 100%;
	position: fixed;
	overflow: auto;
	top: 0px;
	padding-top: 105px;
	padding-bottom: 60px;
	background: linear-gradient(90deg, #ccc, #f0f0f0);
	background-color: #fff;
	z-index: 999;
	overflow-x: hidden;
	overflow-y: auto;
	transition: width 0.3s ease; 
}

body.dark #navWrap {
	background: linear-gradient(90deg, #444, #222);
	background-color: rgba(20, 20, 20, 0.8);
}

body.navHidden #navWrap {
	width: 0;
}

div.nav {
	width: 200px;
	background-color: transparent;
	position: absolute;
	top: 0;
	left: 0;
	padding: 105px 0 120px 0;
	overflow-x: hidden;
	overflow-y: auto;
}

button.navHide {
	width: 90%;
	width: calc(100% - 20px);
	background-color: transparent;
	margin: 0 10px;
	border: 1px solid #660066;
	font-weight: 700;
	padding: 20px;
	font-size: 1.1em;
	border-radius: 3px;
	color: #660066;
	display: none;
}

body.dark button.navHide {
	border-color: #0097a7;
}

body.dark button.navHide:hover {
	border-color: #00616b;
}

button.navHide:active {
	background-color: #e5e5e5;
	color: #5a5a5a;
}

body.dark button.navHide:active {
	border-color: #543ede;
	color: #f1f1f1;
}

div.nav ul.navList li.navItem {
	position: relative;
	padding: 0 15px 0 40px;
	height: 40px;
	font-size: 0.9em;
	display: block;
	background-size: 30px 30px;
	background-repeat: no-repeat;
	background-position: 5px 5px;
}

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

div.nav ul.navList li.navItem span.navText {
	display: table-cell;
	vertical-align: middle;
	height: 40px;
	font-weight: 700;
	color: #660066;
	padding-right: 5px;
	line-height: 1.37em !important;
	font-weight: 500;
}

body.dark div.nav ul.navList li.navItem span.navText {
	color: #e5e5e5;
}

div.nav ul.navList li.navItem svg {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 5px;
	left: 5px;
}

div.nav ul.navList li.navItem svg * {
	fill: #660066 !important;
}

body.dark div.nav ul.navList li.navItem svg * {
	fill: #e5e5e5 !important;
}

div.nav ul.navList li.navItem:active {
	background-color: #00c5da;
	cursor: pointer;
}

div.nav ul.navList li.navItem:last-child {
	background-image: none;
}

div.footer {
	padding: 10px 120px 10px 10px;
	background-image: url(../img/laserLearningLogo.svg);
	background-size: 100px;
	background-repeat: no-repeat;
	background-position: 95% 95%;
	background-position: calc(100% - 20px) 50%;
}

div.footer p {
	font-size: 0.9em;
	color: #5a5a5a;
}

div.mainWrap,
div.loginWrap {
	position: relative;
	padding: 95px 0 10px 200px;
	/* max-width: 1600px; */
	background-size: 100px;
	transition: padding 0.3s ease;
}

body.navHidden div.mainWrap {
	padding-left: 0;
}

div.mainWrap.full {
	max-width: 100%;
}

button {
	border: 1px solid #660066;
	color: #660066;
	background-color: transparent;
	font-size: 1em;
	font-weight: 700;
	border-radius: 3px;
	padding: 10px;
}

button.smallButton {
	padding: 5px;
	font-size: 0.8em;
	margin-bottom: 10px;
}

button.inlineButton {
	padding: 0 10px;
	border-radius: 3px;
	height: 1.5em;
	margin: 0 20px;
}

button.navShow,
button.navHide {
	width: calc(100% - 10px);
	margin: 0 5px 10px 5px;
	display: none;
	z-index: 100000;
	border: 0;
	background: #fff linear-gradient(-30deg, rgba(102, 0, 102, 0.5), rgba(0, 197, 218, 0.5));
	border-radius: 50px;
}

button.navShow:hover,
button.navHide:hover {
	background: #fff linear-gradient(-30deg, rgba(102, 0, 102, 0.9), rgba(0, 197, 218, 0.9));
	color: #fff;
}

button.navShow:active,
button.navHide:active {
	background: #fff linear-gradient(-30deg, rgba(102, 0, 102, 1), rgba(0, 197, 218, 1));
}

body.dark button.navShow,
body.dark button.navHide {
	border: none;
	/* background-color: #2e1f8f; */
	background-color: #222;
	color: #fff;
}

div.content {
	width: 100%;
	background-color: #fff;
	position: relative;
	padding: 10px;
	margin-bottom: 10px;
}

body.dark div.content {
	background-color: #222;
}

div.content:nth-last-child(2) {
	margin-bottom: 0;
}

h3.containerTitle {
	font-size: 22px;
	padding: 10px;
	line-height: 18px;
	margin-bottom: 10px;
	border-bottom: 1px solid #660066;
	font-weight: 700;
	text-align: center;
	position: relative;
	width: 100%;
	max-width: 800px;
	position: relative;
	margin: 0 auto 10px auto;
	top: 0px;
	left: 0px;
	z-index: 800;
}

h3.containerTitle.longName {
	line-height: initial;
}

div.popup h3.containerTitle {
	max-width: 100%;
}

div.subContainer {
	width: 100%;
	height: auto;
	border: 1px solid #660066;
	padding: 10px;
	border-radius: 3px;
	position: relative;
	margin-bottom: 20px;
}

body.dark div.subContainer {
	border-color: #543ede;
}

div.subContainer:last-child {
	margin-bottom: 0;
}

div.subContainer h3.subContainerTitle {
	position: relative;
	top: -10px;
	left: -10px;
	width: calc(100% + 20px);
	padding: 10px;
	background-color: #660066;
	color: #fff;
}

body.dark div.subContainer h3.subContainerTitle {
	background-color: #543ede;
	border-color: #00c5da;
}

div.handbooks {
	margin: 20px 0;
}

body.dark div.handbooks {
	background-color: #222;
}

div.handbooks div.courseHandbooks {
	padding: 0 10px 10px 10px;
	border-radius: 3px;
	border: 1px solid #660066;
	margin-bottom: 10px;
}

body.dark div.handbooks div.courseHandbooks {
	background-color: #222;
	border-color: #222;
}

div.handbooks div.courseHandbooks:last-of-type {
	margin-bottom: 0;
}

div.handbooks:last-of-type {
	margin-bottom: 0;
}

div.handbooks > h3 {
	padding: 0 0 10px 0;
	margin-bottom: 10px;
	border-bottom: 1px solid #660066;
	text-align: center;
}

body.dark div.handbooks > h3 {
	border-color: #00c5da;
}

div.handbooks h4.handbooksCourseTitle {
	text-align: center;
	padding: 5px;
	margin: 10px 0 5px 0;
	background-color: #660066;
	color: #fff;
	border-radius: 5px;
}

body.dark div.handbooks h4.handbooksCourseTitle {
	background-color: #543ede;
}

div.handbooks div.handbook {
	padding: 5px;
	margin-bottom: 5px;
	text-align: center;
	background-color: #fff;
	border-radius: 3px;
}

body.dark div.handbooks div.handbook {
	background-color: #444;
}

body.dark div.handbooks div.courseHandbooks div.handbook:hover {
	background-color: #555;
}

div.handbooks div.handbook:last-child {
	margin-bottom: 0;
}

div.handbooks div.courseHandbooks div.handbook:hover {
	background-color: rgba(180, 230, 234, 0.7);
}

div.handbooks div.courseHandbooks div.handbook:hover a {
	color: #0097a7;
}

body.dark div.handbooks div.courseHandbooks div.handbook:hover a {
	color: #00cccc;
}

/* Hover Effects for Navigation and Action Buttons */

@media screen and (min-width: 1024px) {

	div.nav ul.navList li.navItem:hover {
		background-color: #660066;
		cursor: pointer;
	}

	body.dark div.nav ul.navList li.navItem:hover {
		background-color: #0097a7;
		color: #fff;
		cursor: pointer;
	}

	div.nav ul.navList li.navItem:hover span.navText {
		color: #fff;
	}

	div.nav ul.navList li.navItem:hover * {
		fill: #ffffff !important;
	}

	div.statusIcons div:hover {
		cursor: pointer;
		border-color: #00c5da;
		background-color: #00c5da;
	}

	div.statusIcons div.unread:hover {
		-webkit-animation: singleShake 0.3s 1;
		-moz-animation: singleShake 0.3s 1;
		-o-animation: singleShake 0.3s 1;
		animation: singleShake 0.3s 1;
	}

}

p.qaFeedbackTitle {
	margin-bottom: 10px;
	font-weight: 700;
	text-align: center;
	padding-bottom: 5px;
	border-bottom: 1px solid #660066;
	margin-bottom: 5px;
}

p.feedbackPreview,
div.feedbackPreview {
	width: 100%;
	max-width: 650px;
	padding: 10px;
	border-radius: 3px;
	background-color: #f5f5f5;
	position: relative;
	margin: 10px auto;
}

p.feedbackPreview span {
	font-size: 0.8em;
}

div.feedbackAuthor {
	padding: 10px 0;
}

div.feedbackAuthor p.authorName {
	float: left;
	height: 60px;
	line-height: 60px;
	font-weight: 700;
}

div.qaFeedbackDisplay {
	padding: 10px 10px 20px 30px;
	margin-bottom: 10px;
	margin: 10px 0;
	background-color: #fff;
	border-left: 2px solid #e5e5e5;
}

body.dark div.qaFeedbackDisplay {
	background-color: #222;
	border-color: #00c5da;
}

div.qaFeedbackDisplay:last-of-type {
	margin-bottom: 0;
}

div.qaFeedbackDisplay.cs {
	border-color: #909;
	background-image: url(../img/navIcons/countersigning_purple.svg);
	background-repeat: no-repeat;
	background-position: calc(100% - 10px) 10px;
	background-size: 40px 40px;
}

div.qaFeedbackDisplay.lr {
	border-color: #00c5da;
}

div.qaFeedbackDisplay.as {
	border-color: #abdbe1;
}

div.sampledAC {
	padding: 10px;
	border-radius: 3px;
	margin-bottom: 10px;
	background-color: #e5e5e5;
	display: flex;
	gap: 10px;
	flex-flow: row wrap;
}

div.sampledAC.display {
	margin: 0;
}

body.dark div.sampledAC {
	background-color: #333;
}

div.sampledAC p {
	margin-bottom: 10px;
	width: 100%;
}

div.sampledAC.display p {
	margin-bottom: 0px;
}

li[data-list=bullet] {
	list-style-type: disc;
}

label.sampledACLabel {
	width: calc(50% - 5px);
	display: inline-block;
	background-color: #f0f0f0;
	padding: 6px;
	border-radius: 3px;
	height: 32px;
	vertical-align: middle;
	line-height: 20px;
}

button.selectAllSampledACs {
	border: 0;
	border-radius: 50px;
	padding: 5px 10px;
	background: rgba(255,255,255,1) linear-gradient(-30deg, rgba(102,0,102,0.5), rgba(0,197,218,0.5)) !important;
}

body.dark button.selectAllSampledACs {
	color: #660066;
}

button.selectAllSampledACs:hover {
	background: rgba(255,255,255,1) linear-gradient(-30deg, rgba(102,0,102,0.8), rgba(0,197,218,0.8)) !important;
}

button.selectAllSampledACs:active {
	background: rgba(255,255,255,1) linear-gradient(-30deg, rgba(102,0,102,1), rgba(0,197,218,1)) !important;
}

body.dark label.sampledACLabel {
	background-color: #444;
}

label.sampledACLabel > span {
	height: 20px;
	width: 20px;
	border-radius: 10px;
	border: 1px solid #00c5da;
	display: inline-block;
	margin: 0 5px 0 0;
	vertical-align: middle;
	position: relative;
}

label.sampledACLabel > span > span {
	height: 14px;
	width: 14px;
	display: inline-block;
	border-radius: 10px;
	position: absolute;
	top: 2px;
	left: 2px;
}

div.sampledAC p.sampledAC {
	display: inline-block;
	border-radius: 3px;
	padding: 5px;
	background-color: #fff;
	font-size: 0.8em;
	margin: 0 5px 0 0;
	width: auto;
}

body.dark div.sampledAC p.sampledAC {
	background-color: #222;
}

p.sampledAC button.deleteSampledAC {
	padding: 4px;
	margin-left: 5px;
	background-color: #fff;
}

div.feedback a:not(:last-child) {
	margin-bottom: 10px;
	display: inline-block;
	width: auto;
}

div.feedback a.qaFeedback {
	margin-bottom: 10px;
	margin-top: 10px;
	display: inline-block;
	width: auto;
}

div.feedback > a.qaFeedback {
	margin-left: 70px;
}

body.dark p.sampledAC button.deleteSampledAC {
	background-color: #222;
}

p.sampledAC button.deleteSampledAC:hover,
body.dark p.sampledAC button.deleteSampledAC:hover {
	background-color: #00c5da;
}

p.sampledAC button.deleteSampledAC:active,
body.dark p.sampledAC button.deleteSampledAC:active {
	filter: brightness(0.8);
}

input.sampledAC {
	display: none;
}

input.sampledAC:checked + label.sampledACLabel > span > span {
	background-color: #00c5da;
}

input.sampledAC:checked + label.sampledACLabel {
	filter: brightness(1.2);
}

span.commentSeen {
	display: block;
	font-size: 0.9em;
	margin-top: 10px;
	font-style: italic;
}

textarea.giveFeedback,
div.leaveQAFeedback trix-editor {
	width: 100%;
	max-width: 650px;
	min-height: 190px;
	border: 1px solid #5a5a5a;
	border-radius: 3px;
	padding: 10px;
	font-size: 1em;
	line-height: 1.5em;
	width: 100%;
	max-width: 650px;
	display: block;
	position: relative;
	margin: 0 auto 10px auto;
}

div.leaveQAFeedback trix-toolbar {
	width: 100%;
	max-width: 650px;
	display: block;
	position: relative;
	margin: 0 auto 0px auto;
}

body.dark trix-editor {
	background-color: #666;
	border: 1px solid #00c5da;
}

p.feedbackTitle {
	width: 100%;
	max-width: 600px;
	border-bottom: 1px solid #660066;
	padding-bottom: 3px;
	margin: 10px 0;
	font-weight: 700;
	font-size: 1.17em;
}

body.dark p.feedbackTitle {
	border-color: #00c5da;
}

div.feedback {
	width: 100%;
	padding: 10px 10px 10px 30px;
	margin: 10px 0 10px 10px;
	border-left: 2px solid #e5e5e5;
	position: relative;
	top: 10px;
}

body.dark div.feedback {
	border-color: #00c5da;
}

p.commentDate {
	margin: 0 0 10px 0;
	font-weight: 100;
	font-size: 0.9em;
}

p.feedbackDisplay {
	width: 100%;
	max-width: 600px;
	line-height: 1.5em;
	font-size: 1em;
}

div.feedbackDisplay {
	padding-left: 70px;
	padding-right: 10px;
}

div.feedbackDisplay > div:not(.apReminder) {
	font-size: 1.2em;
}

p.feedbackDisplay + div {
	font-size: 1.2em;
}

p.feedbackAuthor {
	text-align: center;
	font-weight: 700;
}

button.newFeedback {
	margin-top: 10px;
	display: block;
	position: relative;
	margin: 10px auto 0 auto;
}

img.feedbackAuthorPhoto,
img.giveFeedbackAuthorPhoto {
	width: 60px;
	height: 60px;
	border-radius: 30px;
	position: relative;
	display: block;
	margin: 0 auto 10px auto;
}

img.giveFeedbackAuthorPhoto {
	margin: 0 10px 0 0;
	float: left;
}

body.dark img.giveFeedbackAuthorPhoto {
	border-color: #00c5da;
}

div.feedbackAuthor {
	padding: 10px 0;
}

div.feedbackAuthor p.authorName {
	float: left;
	height: 60px;
	line-height: 60px;
	font-weight: 400;
	font-size: 1.4em;
}

textarea.qaComment {
	width: 100%;
	max-width: 650px;
	height: 150px;
	border: 1px solid #5a5a5a;
	border-radius: 3px;
	display: block;
	position: relative;
	margin: 0 auto 10px auto;
	padding: 10px;
	font-size: 1.1em;
	line-height: 1.4em;
}

form.qaFeedbackForm {
	padding: 10px;
	display: none;
	background-color: #f0f0f0;
	border-radius: 3px;
	max-width: 750px;
	margin: 10px auto 10px auto;
}

body.dark form.qaFeedbackForm {
	background-color: #444;
}

form.qaFeedbackForm trix-toolbar .trix-button:not(:disabled) {
	background-color: #fff;
}

form.qaFeedbackForm trix-toolbar .trix-button:not(:disabled):hover {
	background-color: #abdbe1;
}

form.qaFeedbackForm trix-toolbar .trix-button:disabled:hover {
	background-color: initial;
	cursor: initial;
}

body.dark form.qaFeedbackForm trix-toolbar .trix-button:not(:disabled) {
	background-color: #0097a7;
}

body.dark form.qaFeedbackForm trix-toolbar .trix-button:not(:disabled):hover {
	background-color: #00c5da;
}

body.dark form.qaFeedbackForm trix-toolbar .trix-button:disabled:hover {
	background-color: initial;
	cursor: initial;
}

body.dark trix-toolbar .trix-button,
body.dark form.qaFeedbackForm trix-toolbar .trix-button,
body.dark trix-toolbar .trix-button-group {
	border: none;
	background-color: #999;
}

body.dark trix-toolbar .trix-button.trix-active,
body.dark form.qaFeedbackForm trix-toolbar .trix-button.trix-active {
	background-color: #00c5da;
}

body.dark div.trix-dialog {
	background-color: #222;
}

button.saveQAFeedback,
button.cancelQAFeedback {
	width: calc(50% - 5px);
	max-width: 400px;
	display: block;
	position: relative;
	margin: 0 10px 0 0;
	padding: 10px;
	float: left;
}

button.cancelQAFeedback {
	margin: 0;
}

div.linkedAccount {
	height: 60px;
	padding: 10px 10px 10px 70px;
	margin-bottom: 10px;
	border-radius: 3px;
	overflow: hidden;
	position: relative;
	background-color: #e5e5e5;
}

body.dark div.linkedAccount {
	background-color: #444;
}

div.linkedAccount img.linkedAccountProfilePic {
	position: absolute;
	top: 0;
	left: 0;
	height: 60px;
	width: 60px;
}

div.linkedAccount p.linkedAccountName {
	font-weight: 700;
	font-size: 1.2em;
}

div.linkedAccount:hover {
	background-color: #abdbe1;
	cursor: pointer;
}

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

div.linkedAccount:active * {
	color: #fff;
}

body.dark div.linkedAccount:hover {
	background-color: #134245;
}

div.viewRanges h4 {
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 2px solid #660066;
}

body.dark div.viewRanges h4 {
	border-color: #00c5da;
}

div.viewRanges p.viewRange {
	font-size: 1.2em;
	padding: 10px;
}

button.closeViewRanges {
	margin-top: 20px;
	padding: 10px;
}

a.rangeLink {
	display: inline-block;
	padding: 5px;
	border-radius: 10px;
	background-color: #fff;
}

body.dark a.rangeLink {
	background-color: #222;
}

a.rangeLink:hover,
body.dark a.rangeLink:hover {
	cursor: pointer;
	background-color: #00c5da;
	color: #fff;
}

a.rangeLink:active,
body.dark a.rangeLink:active {
	background-color: #0097a7;
}

/* Global Media Queries */

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

	div.darkBackground div.popUp {
		width: calc(100% - 10px);
		top: 5px;
		height: calc(100% - 10px);
	}

	div.headBacking {
		display: none;
	}

	div#userBox {
		width: 280px;
	}

	div#notifications {
		width: calc(100% - 530px);
	}

	div#navWrap {
		position: fixed;
		height: 100%;
		width: 0%;
		padding: 0;
		padding-bottom: 80px;
		z-index: 10000;
		overflow: scroll;
		-webkit-overflow-scrolling: touch;
		background: rgba(255, 255, 255, 0.7);
		backdrop-filter: blur(10px);
	}

	body.dark div#navWrap {
		background: rgba(20, 20, 20, 0.7);
	}

	div.nav {
		padding-top: 10px;
		width: 100%;
		position: relative;
	}

	div#navWrap div.nav {
		width: 100%;
	}

	div.nav ul.navList a {
		width: 100%;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	div.nav ul.navList a li {
		width: 100%;
		max-width: 300px;
	}

	div.nav ul.navList a li.navItem span.navText {
		font-weight: 600;
		font-size: 1.1em;
	}

	button.actionButton {
		padding: 10px;
	}

	div.mainWrap {
		padding-left: 0;
		padding-top: 50px;
	}

	div.mainWrap, 
	div.mainWrap.loginWrap {
		padding-top: 105px;
	}

	button.navShow {
		display: block;
	}

	div.unhideNav {
		display: none !important;
	}

	div.slideSwitch.navHidden,
	p.navHideText {
		display: none !important;
	}

	button.navHide {
		display: block;
		white-space: nowrap;
		padding: 10px;
		margin-bottom: 10px;
	}

	ul.navList {
		width: 100%;
	}

	div.nav ul.navList li.navItem span.navText {
		font-size: 1em;
	}

	div.statusIcons {
		padding-right: 30px;
		display: none;
	}

	div.nav ul.navList li.navItem span.navText span.navAlert {
		top: 4px;
	}

	div.content {
		padding: 10px;
	}

}

@media screen and (max-width: 690px) {
	div#header {
		width: 100%;
		margin: 0;
		border-radius: 0;
		height: auto;
		border-right: 0;
	}
	div#notifications {
		border-bottom: 0;
		width: 100%;
		margin-left: 0;
		position: relative;
		height: 50px;
		display: flex;
		justify-items: center;
		align-items: center;
		flex-direction: row;
	}
	div#notifications div#notCount {
		background-size: 45px 45px;
		position: relative;
		top: auto;
		left: auto;
		margin: auto;
	}
	div#headWrap {
		height: auto;
	}
	div#mainLogo {
		width: 100%;
		float: none;
		position: relative;
		border: 0;
	}
	div#userBox {
		width: 100%;
		position: relative;
		border: 0;
	}
	div.mainWrap {
		padding-top: 250px;
	}
	div.linkedAccount {
		height: auto;
	}
	div.myIQAs div.iqaWrap p:not(.empty) {
		width: 100%;
	}
}

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

	h3.containerTitle {
		font-size: 1.142em;
	}

	div.content {
		padding: 5px;
	}

	div.content.titleContainer {
		padding: 5px;
	}

	div.nav ul.navList li.navItem span.navText span.navAlert {
		top: 12px;
	}

	.indented {
		margin-left: 5px;
	}

	div.footer p {
		font-size: 0.7em;
	}

	div.mainWrap {
		padding-bottom: 5px;
	}

	div#userBox h4.userName {
		font-size: 1em;
	}

}

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

	h3.containerTitle {
		font-size: 1.142em;
	}

	div.statusIcons {
		padding-right: 50px;
	}

	div.statusIcons div {
		margin-right: 2px;
	}

	div.statusIcons div svg {
		width: 90%;
		max-height: 18px;
		margin: auto;
		margin-bottom: 2px;
		display: block;
	}

	div#userBox h4.userName {
		font-size: 0.9em;
	}

}

html.dark {
	background-color: #990099;
	background: linear-gradient(#00cccc, #990099);
	background-size: 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: absolute;
	overflow: auto;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

body.dark {
	background-color: transparent;
}

body.dark div.headBacking {
	background-color: #1a1a1a;
	background: linear-gradient(#00cccc, #00cccc);
}

body.dark div.footer p {
	color: #f5f5f5;
}

body.dark * {
	color: #f5f5f5;
}

body.dark p span,
body.dark p strong {
	background-color: transparent !important;
}

body.dark a {
	color: #00c5da;
}

body.dark h3.containerTitle {
/*	background-color: #2e1f8f;*/
	border-color: #00c5da;
}

body.dark div#headWrap {
	background-color: transparent;
	border-color: #00c5da;
}

body.dark div.content,
body.dark div#header {
	background-color: #222; 
/*	box-shadow: 0px 15px 0px -12px #00c5da;*/
}

body.dark div.content.titleContainer,
body.dark div.content {
	background-color: rgba(30, 30, 30, 0.8) !important;
}

body.dark div#notifications {
	background-color: #444;
}

body.dark div.darkBackground,
body.dark div.laserAlertBackground,
body.dark div.darkBackgroundUserSwitch {
	background-color: rgba(30, 30, 30, 0.8);
}

body.dark div#userBox,
body.dark div#mainLogo {
	border-color: #00c5da;
}

div#userBox p.userType {
	font-size: 0.9em;
}

div.nav div.viewMode {
	height: 50px;
	padding-right: 15px;
	position: relative;
	margin-bottom: 5px;
}

div.nav div.viewMode svg {
	height: 20px;
	position: absolute;
}

div.nav div.viewMode svg * {
	fill: #660066 !important;
}

body.dark div.nav div.viewMode svg * {
	fill: #00c5da !important;
}

div.nav div.viewMode svg:first-child {
	top: 0px;
	left: 20px;
}

div.nav div.viewMode svg:last-child {
	top: 0px;
	right: 35px;
}

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

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

div.slideSwitch.darkMode,
div.slideSwitch.navHidden {
	margin: auto;
}

div.slideSwitch.darkMode {
	margin-bottom: 5px;
}

p.navHideText {
	font-size: 0.8em;
	line-height: 1em !important;
	position: absolute;
	text-align: center;
	left: 15px;
	top: 25px;
	font-weight: 700;
	color: #606;
}

body.dark p.navHideText {
	color: #00c5da;
}

p.navHideText.hideNav {
	left: auto;
	right: 30px;
}

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

div.slideSwitch.on div.switch {
	left: 31px;
}

body.animateChange * {
	transition: all 0.3s linear;
}

body.dark h3.ajaxErrorMessage {
	background-color: #0097a7 !important;
}

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;
}

body.dark table.horizontal tr:first-child {
	background: linear-gradient(-90deg, #990099, #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: 3px 0 0 0;
}

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

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

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

table.horizontal td {
	background-color: #f0f0f0;
	padding: 5px;
	line-height: 1.37em !important
}

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

body.dark table.horizontal.inverse td {
	background-color: #333;
}

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

body.dark table.horizontal td {
	background-color: #555;
}

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

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

body.dark table.horizontal td a {
	color: #00c5da;
}

.quill-editor {
    width: 100%;
    max-width: 100%;
    min-height: 190px;
    border: 1px solid #5a5a5a;
    border-radius: 3px;
    margin: 0 auto 10px auto;
    background-color: #fff;
}

body.dark .quill-editor {
    background-color: #666;
    border: 1px solid #00c5da;
}

.ql-toolbar.ql-snow {
    border: 1px solid #5a5a5a;
    border-radius: 3px 3px 0 0;
    background-color: #f5f5f5;
}

body.dark .ql-toolbar.ql-snow {
    border-color: #00c5da;
    background-color: #444;
}

.ql-container.ql-snow {
    border: 1px solid #5a5a5a;
    border-top: 0;
    border-radius: 0 0 3px 3px;
}

body.dark .ql-container.ql-snow {
    border-color: #00c5da;
}

.ql-editor {
    min-height: 150px;
    font-size: 1em;
    line-height: 1.5em;
    padding: 10px;
}

body.dark .ql-editor {
    color: #fff;
}





















