.AcademicResult__AcademicResult___Lp7Jb {
	display: flex;
	align-items: center;
}

.AcademicResult__AcademicResult___Lp7Jb > :not(:first-child):not(:only-child) {
	margin-left: 8px;
}

.AcademicResult__AcademicResult___Lp7Jb > .AcademicResult__thermoscore___f2RCI {
	flex: 1;
}

.AcademicResult__cohort___nhv6o {
	list-style: none;
	padding: 0;
	margin: 0 0 0 8px;
	display: flex;
	flex-direction: column;
}

.AcademicResult__cohort___nhv6o > li {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: var(--small-text);
	--indicator-colour: transparent;
}

.AcademicResult__cohort___nhv6o > li > .AcademicResult__label___lCuro {
	text-transform: uppercase;
	flex: 1;
	opacity: 0.5;
}

.AcademicResult__cohort___nhv6o > li > .AcademicResult__value___TezBP {
	margin: 0 0 0 1ex;
	min-width: 3ex;
	text-align: right;
	font-family: 'Roboto Mono', 'Roboto', monospace;
}

.AcademicResult__cohort___nhv6o > li::before {
	content: '';
	border: 1ex solid transparent;
	border-left-color: var(--indicator-colour);
}

.AcademicResult__cohort___nhv6o > li.AcademicResult__min___uMhXb {
	--indicator-colour: var(--yellow);
}

.AcademicResult__cohort___nhv6o > li.AcademicResult__max___SjKLq {
	--indicator-colour: var(--green);
}

.AcademicResult__cohort___nhv6o > li.AcademicResult__avg___8mfBl {
	--indicator-colour: var(--blue);
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.SimpleGrade__SimpleGrade___X5tWC {
	--size: 1.75em;
	--contrast-colour: var(
		--container-accent-contrast,
		rgb(var(--theme-sel-fg-parts))
	);
	--accent-colour: var(--container-accent, rgb(var(--theme-sel-bg-parts)));

	min-width: var(--size);
	max-width: calc(var(--size) * 2);
	padding: 0 4px;
	height: var(--size);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-colour);
	color: var(--contrast-colour);
	box-sizing: border-box;
	border-radius: 2px;
	font-weight: bold;
}

.SimpleGrade__SimpleGrade___X5tWC.SimpleGrade__accented___FSO77 {
	font-size: var(--large-text);
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.Thermoscore__Thermoscore___WFpL3 {
	position: relative;
	--bar-size: 24px;
	height: var(--bar-size);
	border-radius: 2px;

	--background-color: var(--container-accent, rgb(var(--theme-sel-bg-parts)));
	--fill-colour: var(--container-accent, rgb(var(--theme-sel-bg-parts)));

	background-color: var(--background-color);
	background-image: linear-gradient(
		to top,
		rgba(var(--theme-bg-parts), 0.8),
		rgba(var(--theme-bg-parts), 0.8)
	);
	border: 2px solid rgb(var(--theme-bg-parts));
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

.Thermoscore__Thermoscore___WFpL3.Thermoscore__accented___qNjBX {
	--bar-size: 32px;
	--fill-colour: var(--container-accent, rgb(var(--theme-sel-bg-parts)));
}

@keyframes Thermoscore__initial-fill-transition___gYApH {
	from {
		transform: scaleX(0);
	}
	to {
		transform: scaleX(1);
	}
}

.Thermoscore__Thermoscore___WFpL3 > .Thermoscore__fill___ojxDI {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: transform 0.8s;
	transform-origin: left;
	border-radius: 2px;
	text-align: right;

	animation-name: Thermoscore__initial-fill-transition___gYApH;
	animation-fill-mode: both;
	animation-duration: 0.8s;

	background-color: var(--fill-colour);
}

@keyframes Thermoscore__initial-text-transition___MSXAg {
	from {
		opacity: 0;
	}
}

.Thermoscore__Thermoscore___WFpL3 > .Thermoscore__fill___ojxDI > .Thermoscore__text___XSR_M {
	color: var(--container-accent-contrast, #fff);
	box-sizing: border-box;
	font-weight: bold;
	z-index: 1;
	transition: opacity 0.2s 0.8s;
	padding: 1px 8px;

	animation-name: Thermoscore__initial-text-transition___MSXAg;
	animation-fill-mode: both;
	animation-duration: 0.2s;
	animation-delay: 0.8s;
}

.Thermoscore__Thermoscore___WFpL3 > .Thermoscore__fill___ojxDI > .Thermoscore__text___XSR_M.Thermoscore__outside___uP8jW {
	color: var(--fill-colour);
}

.Thermoscore__Thermoscore___WFpL3.Thermoscore__accented___qNjBX > .Thermoscore__fill___ojxDI > .Thermoscore__text___XSR_M {
	font-size: var(--large-text);
	padding: 2px 8px;
}

.Thermoscore__Thermoscore___WFpL3 > .Thermoscore__marker___wb8r5 {
	--size: 8px;
	--outline-size: calc(var(--size) + 1px);

	position: absolute;
	transform: translateX(calc(0px - var(--outline-size)));
	z-index: 2;
	bottom: 0;
	border: var(--outline-size) solid transparent;
	border-bottom-color: rgb(var(--theme-bg-parts, 255, 255, 255));

	transition: opacity 0.4s 1s;
}

.Thermoscore__Thermoscore___WFpL3 > .Thermoscore__marker___wb8r5::before {
	content: '';
	position: absolute;
	bottom: calc(var(--size) * -1 - 1px);
	transform: translateX(calc(0px - var(--size)));
	border: var(--size) solid transparent;
	border-bottom-color: var(--fill-colour);
}

.Thermoscore__Thermoscore___WFpL3 > .Thermoscore__marker___wb8r5.Thermoscore__min___ixQTv {
	--fill-colour: var(--yellow);
}

.Thermoscore__Thermoscore___WFpL3 > .Thermoscore__marker___wb8r5.Thermoscore__avg___HzNZq {
	--fill-colour: var(--blue);
}

.Thermoscore__Thermoscore___WFpL3 > .Thermoscore__marker___wb8r5.Thermoscore__max___L9otd {
	--fill-colour: var(--green);
}

.AvailabilitySlider__AvailabilitySlider___kG_va {
	display: flex;
	position: relative;
	margin: 24px 0;
	min-height: 1.2em;
	min-width: 370px;
	--border-width: 2px;
	--blob-size: 1.2em;

	--colour: var(--container-accent, rgb(var(--theme-sel-bg-parts)));
}

.AvailabilitySlider__AvailabilitySlider___kG_va > .AvailabilitySlider__travelled___Bu00z,
.AvailabilitySlider__AvailabilitySlider___kG_va > .AvailabilitySlider__untravelled___zxIS1 {
	position: absolute;
	top: calc((var(--blob-size) - var(--border-width)) / 2);
	height: var(--border-width);
	z-index: 0;
	transition: width 0.2s;
}

.AvailabilitySlider__AvailabilitySlider___kG_va > .AvailabilitySlider__travelled___Bu00z {
	background: var(--colour);
}

.AvailabilitySlider__AvailabilitySlider___kG_va > .AvailabilitySlider__untravelled___zxIS1 {
	background: rgba(var(--theme-fg-parts), 0.05);
}

.AvailabilitySlider__AvailabilitySlider___kG_va > label {
	position: relative;
	padding: 0 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	cursor: pointer;
	flex: 1;
}

.AvailabilitySlider__AvailabilitySlider___kG_va > label.AvailabilitySlider__active___BBItv {
	color: var(--colour);
}

.AvailabilitySlider__AvailabilitySlider___kG_va > label::before {
	content: '';
	width: var(--blob-size);
	height: var(--blob-size);
	border: var(--border-width) solid rgba(var(--theme-fg-parts), 0.05);
	border-color: rgba(
		var(--theme-fg-parts),
		0.05
	); /* Workaround for Safari bug -- https://codepen.io/finnhvman/post/theming-with-css-variables-in-rgba#browser-support-4 */
	background: rgb(var(--theme-bg-parts));
	position: absolute;
	box-sizing: border-box;
	top: 0;
	z-index: 1;
	border-radius: var(--blob-size);
}

.AvailabilitySlider__AvailabilitySlider___kG_va:not(.AvailabilitySlider__disabled___F66gA) > label:hover {
	color: var(--colour);
}

.AvailabilitySlider__AvailabilitySlider___kG_va > label.AvailabilitySlider__superceded___Qlkyd::before {
	background: var(--colour);
	border-color: rgb(var(--theme-bg-parts));
	border-width: calc(var(--border-width) * 2);
}

.AvailabilitySlider__AvailabilitySlider___kG_va:not(.AvailabilitySlider__disabled___F66gA) > label:hover::before {
	border-color: var(--colour);
	border-width: var(--border-width);
	background: rgb(var(--theme-bg-parts));
}

.AvailabilitySlider__AvailabilitySlider___kG_va > label.AvailabilitySlider__active___BBItv::before {
	background: var(--colour);
	border-color: var(--colour);
}

@keyframes AvailabilitySlider__station-selected___MsQvg {
	0% {
		box-shadow: 0 0 0 var(--colour);
	}
	100% {
		box-shadow: 0 0 0 8px transparent;
	}
}

.AvailabilitySlider__AvailabilitySlider___kG_va > label.AvailabilitySlider__active___BBItv::before {
	animation-name: AvailabilitySlider__station-selected___MsQvg;
	animation-duration: 0.5s;
}

.AvailabilitySlider__AvailabilitySlider___kG_va > label > input {
	display: none;
}

.AvailabilitySlider__AvailabilitySlider___kG_va > label > span {
	margin: calc(var(--blob-size) + 1ex) 0 0 0;
	opacity: 0.5;
	text-align: center;
}

.AvailabilitySlider__AvailabilitySlider___kG_va.AvailabilitySlider__unlabelled___OUS9p > label > span {
	display: none;
}

.AvailabilitySlider__AvailabilitySlider___kG_va:not(.AvailabilitySlider__disabled___F66gA) > label:hover > span {
	opacity: 0.8;
}

.AvailabilitySlider__AvailabilitySlider___kG_va > label.AvailabilitySlider__active___BBItv > span {
	opacity: 1;
}

.AvailabilitySlider__demoRed___KzR5x {
	--container-accent: #f00;
}

.AvailabilitySlider__demoGreen___ONYaD {
	--container-accent: #0a0;
}

.AvailabilitySlider__demoBlue___Tqw21 {
	--container-accent: #66f;
}

.AvailabilitySlider__AvailabilitySlider___kG_va.AvailabilitySlider__disabled___F66gA {
	opacity: 0.5;
}

.AvailabilitySlider__AvailabilitySlider___kG_va.AvailabilitySlider__disabled___F66gA > label {
	cursor: default;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.Avatar__Avatar___j4ZSp {
	width: 44px;
	height: 44px;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	border-radius: 100%;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);

	background-color: var(--person-colour, var(--navy));
	border: 2px solid var(--person-colour, rgba(0, 0, 0, 0.05));
}

@media (max-height: 800px) {
	.Avatar__Avatar___j4ZSp {
		width: 38px;
		height: 38px;
	}
}

.Avatar__Avatar___j4ZSp > svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.Avatar__Avatar___j4ZSp.Avatar__clickable___D0g4U {
	cursor: pointer;
}

.Avatar__Avatar___j4ZSp.Avatar__student___KXk6C {
	--person-colour: #4db848;
}

.Avatar__Avatar___j4ZSp.Avatar__staff___OBLwc {
	--person-colour: #00aeef;
}

.Avatar__Avatar___j4ZSp.Avatar__contact___x3OWb {
	--person-colour: #f36f21;
}

.Avatar__Avatar___j4ZSp.Avatar__tutor___jNgQF {
	--person-colour: #7b5aa6;
}

.Avatar__Avatar___j4ZSp > .Avatar__hidden___VY22w {
	display: none;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by simon on 2018-05-18
 */

.Documentation__Documentation___VA8Du {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

.Documentation__menu___JOr7q {
	overflow: auto;
}

.Documentation__contents___KXPfo {
	overflow: auto;
	width: 100%;
	height: 100%;
}

.Documentation__menu___JOr7q label {
	margin: 32px 32px 0;
}

.Documentation__menu___JOr7q .Documentation__backgroundPicker___zbNyp {
	margin: 32px 32px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.Documentation__menu___JOr7q h2 {
	color: rgba(var(--theme-fg-parts), 0.3);
	font-weight: bold;
	margin: 32px 32px 0;
	text-transform: uppercase;
	font-size: 100%;
	border-bottom: 1px solid var(--theme-offset-bg);
	padding: 0 0 8px;
}

.Documentation__menu___JOr7q a {
	display: block;
	padding: 16px 32px;
	text-decoration: none;
	text-transform: uppercase;
	color: rgba(var(--theme-fg-parts), 0.5);
}

.Documentation__menu___JOr7q a:hover {
	background: var(--theme-offset-bg);
}

.Documentation__contents___KXPfo h1 {
	padding: 32px;
	margin: 0;
	font-size: 300%;
	background: rgb(var(--theme-bg-parts));
	text-transform: uppercase;
	text-align: center;
}

.Documentation__contents___KXPfo > .Documentation__collection___DiFgo {
	z-index: 500;
}

.Documentation__contents___KXPfo > .Documentation__collection___DiFgo > div {
	margin: 32px;
}

.Documentation__contents___KXPfo > .Documentation__collection___DiFgo .Documentation__content___kxhpp {
	padding: 8px 16px 16px;
}

.Documentation__contents___KXPfo fieldset > article {
	padding: 32px;
}

.Documentation__contents___KXPfo fieldset > article p {
	margin: 0 0 1em;
}

.Documentation__contents___KXPfo fieldset > article p:last-child {
	margin-bottom: 0;
}

.Documentation__Documentation___VA8Du .Documentation__distributed___zzr5X {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.Documentation__Documentation___VA8Du .Documentation__iconsList___tOelU {
	max-height: 50vh;
	overflow: auto;
}

.Documentation__Documentation___VA8Du .Documentation__iconsList___tOelU > ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}

.Documentation__Documentation___VA8Du .Documentation__iconsList___tOelU > ol > li {
	padding: 0;
	margin: 0;
}

.Documentation__Documentation___VA8Du .Documentation__iconsList___tOelU > ol > li > a {
	width: 160px;
	height: 33px; /* Make icons nice and crisp in Fx -- https://bugzilla.mozilla.org/show_bug.cgi?id=1003763 */
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--theme-button-bg);
	color: var(--theme-button-fg);
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	margin: 4px;
	padding: 8px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
}

.Documentation__Documentation___VA8Du .Documentation__iconsList___tOelU > ol > li:nth-child(10n + 0):hover {
	color: #d9ed23;
}
.Documentation__Documentation___VA8Du .Documentation__iconsList___tOelU > ol > li:nth-child(10n + 1):hover {
	color: #ef5767;
}
.Documentation__Documentation___VA8Du .Documentation__iconsList___tOelU > ol > li:nth-child(10n + 2):hover {
	color: #fca93e;
}
.Documentation__Documentation___VA8Du .Documentation__iconsList___tOelU > ol > li:nth-child(10n + 3):hover {
	color: #03d987;
}
.Documentation__Documentation___VA8Du .Documentation__iconsList___tOelU > ol > li:nth-child(10n + 4):hover {
	color: #12c0ee;
}
.Documentation__Documentation___VA8Du .Documentation__iconsList___tOelU > ol > li:nth-child(10n + 5):hover {
	color: #94539e;
}
.Documentation__Documentation___VA8Du .Documentation__iconsList___tOelU > ol > li:nth-child(10n + 6):hover {
	color: #6dd5c3;
}
.Documentation__Documentation___VA8Du .Documentation__iconsList___tOelU > ol > li:nth-child(10n + 7):hover {
	color: #ff3eb5;
}
.Documentation__Documentation___VA8Du .Documentation__iconsList___tOelU > ol > li:nth-child(10n + 8):hover {
	color: #74d1ea;
}
.Documentation__Documentation___VA8Du .Documentation__iconsList___tOelU > ol > li:nth-child(10n + 9):hover {
	color: #8a69d4;
}

.Documentation__Documentation___VA8Du .Documentation__iconsList___tOelU > ol > li > a > span {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.Documentation__Documentation___VA8Du .Documentation__iconsList___tOelU > ol > li > a > svg {
	flex-shrink: 0;
}

.Documentation__layoutWrapper___gmmKx {
	border: 2px solid var(--theme-off-set-bg);
	border-radius: 1px;
	height: 50vh;
	padding: 8px;
	box-shadow: inset 0 0 0 8px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.Documentation__prettyPicture___drb8p {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	font-weight: bold;
	font-size: var(--huge-text);
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
}

.Documentation__prettyPicture___drb8p > span {
	z-index: 1;
}

.Documentation__prettyPicture___drb8p::before {
	content: '';
	position: absolute;
	top: -8px;
	right: -8px;
	bottom: -8px;
	left: -8px;
	filter: blur(8px);
	background-size: cover;
	background-position: center;
	z-index: 0;
}

@supports (-ms-ime-align: auto) {
	/* Don't apply the filter() to edge, because it struggles to render it performantly and prettily */
	.Documentation__prettyPicture___drb8p::before {
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		filter: none;
	}
}

.Documentation__prettyPictureOne___eFuNu::before {
	background-image: url('https://static.seqta.com.au/mockups/9hzwaXtk/rubrics/covers/0.png');
}
.Documentation__prettyPictureTwo___wnulw::before {
	background-image: url('https://static.seqta.com.au/mockups/9hzwaXtk/rubrics/covers/2.png');
}
.Documentation__prettyPictureThree____kEZR::before {
	background-image: url('https://static.seqta.com.au/mockups/9hzwaXtk/rubrics/covers/3.png');
}
.Documentation__prettyPictureFour___lqB_U::before {
	background-image: url('https://static.seqta.com.au/mockups/9hzwaXtk/rubrics/covers/4.png');
}

code {
	font-family: 'Roboto Mono', 'Roboto', monospace;
}

code.class {
	border-bottom: 2px solid var(--yellow);
	background: var(--theme-offset-bg);
}

code.attribute {
	border-bottom: 2px solid var(--green);
	background: var(--theme-offset-bg);
}

code.property {
	border-bottom: 2px solid var(--blue);
	background: var(--theme-offset-bg);
}

code.element {
	border-bottom: 2px solid var(--orange);
	background: var(--theme-offset-bg);
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.BadgedButton__BadgedButton___q10Fl > button {
	padding: 4px;
	box-sizing: border-box;
	position: relative;
	overflow: visible;
	margin: 4px;
}

.BadgedButton__BadgedButton___q10Fl > button > .BadgedButton__badge___EmkBh {
	--scaled-size: 24px;
	position: absolute;
	right: calc(var(--scaled-size) / 4 * -1);
	bottom: calc(50% - var(--scaled-size));
	width: var(--scaled-size);
	height: var(--scaled-size);
	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 100%;
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	font-weight: bold;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.Button__Button___kQRWg {
	font: inherit;
	overflow: hidden;
	background: var(--theme-button-bg);
	color: var(--theme-button-fg);
	border: 1px solid var(--theme-button-border);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 12px 24px;
	cursor: pointer;
	font-weight: bold;
	border-radius: 4px;
	transition: box-shadow 0.2s, background 0.2s;
	position: relative;
}

.Button__Button___kQRWg[disabled] {
	cursor: default;
	opacity: 0.5;
}

.Button__Button___kQRWg.Button__circular___iAiv2 {
	padding: 0;
	width: var(--size, 32px);
	height: var(--size, 32px);
	min-width: var(--size, 32px);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}

.Button__Button___kQRWg:not([disabled]):hover {
	box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
}

.Button__Button___kQRWg::-moz-focus-inner {
	border: 0;
}

.Button__Button___kQRWg:focus {
	outline: none;
}

.Button__Button___kQRWg:not([disabled]):focus {
	border-color: rgb(var(--theme-sel-bg-parts));
}

.Button__Button___kQRWg:not([disabled]):active {
	border-color: rgb(var(--theme-sel-bg-parts));
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
}

@keyframes Button__glow___Cpzco {
	0% {
		box-shadow: 0 0 0 rgb(var(--theme-sel-bg-parts));
	}
	10% {
		box-shadow: 0 0 0 8px transparent;
	}
}

.Button__Button___kQRWg.Button__highlight___Ur1M0 {
	border-color: rgb(var(--theme-sel-bg-parts));
	animation-name: Button__glow___Cpzco;
	animation-duration: 10s;
	animation-iteration-count: infinite;
}

.Button__Button___kQRWg.Button__emphasise___ULzut:not([disabled]) {
	border-color: currentColor;
}

.Button__Button___kQRWg.Button__dropdown___jmEEr {
	position: relative;
	padding-left: 12px;
}

.Button__Button___kQRWg.Button__dropdown___jmEEr > span {
	position: absolute;
	top: 0;
	right: 4px;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.Button__Button___kQRWg.Button__popup___FM0mg > span {
	margin-left: 8px;
	display: flex;
}

.Button__Button___kQRWg.Button__dropdown___jmEEr > span > svg,
.Button__Button___kQRWg.Button__popup___FM0mg > span > svg {
	width: 16px;
	height: 16px;
}

.Button__Button___kQRWg.Button__transparent___fR9uv {
	background: transparent;
}

.Button__Button___kQRWg.Button__inverse___ZuE0i {
	background: rgb(var(--theme-fg-parts));
	color: rgb(var(--theme-bg-parts));
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.BasicPanel__BasicPanel___q92_U {
	margin: 16px;
	flex: 1;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	border-radius: 4px;
	background: rgba(var(--theme-bg-parts), 0.8);
}

.BasicPanel__BasicPanel___q92_U > header {
	margin: 0;
	padding: 8px;
	display: flex;
	background: rgba(var(--theme-fg-parts), 0.04);
	align-items: center;
	border-radius: 4px 4px 0 0;
	flex-shrink: 0;
}

.BasicPanel__BasicPanel___q92_U > header.BasicPanel__clickable___Dx1xo {
	cursor: pointer;
}

.BasicPanel__BasicPanel___q92_U > header > h2 {
	text-transform: uppercase;
	flex: 1;
	font-size: var(--small-text);
	font-weight: bold;
	padding: 0;
	margin: 0;
}

.BasicPanel__BasicPanel___q92_U > article {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.BasicPanel__BasicPanel___q92_U > ol {
	list-style: none;
	padding: 0;
	margin: 0;
	overflow: auto;
}

.BasicPanel__BasicPanel___q92_U > ol > li {
	border-bottom: 1px solid var(--theme-offset-bg);
	position: relative;
	min-height: 40px;
	padding: 8px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

.BasicPanel__BasicPanel___q92_U > ol.BasicPanel__sidepadding____rUhE > li {
	padding-left: 48px;
	padding-right: 48px;
}

.BasicPanel__BasicPanel___q92_U > ol.BasicPanel__rightpadding___bdVFT > li {
	padding: 0 40px 0 8px;
}

.BasicPanel__BasicPanel___q92_U > ol.BasicPanel__leftpadding___ZEdeA > li {
	padding: 0 8px 0 40px;
}

.BasicPanel__BasicPanel___q92_U > ol > li:last-child {
	border-bottom: none;
}

.BasicPanel__BasicPanel___q92_U > ol.BasicPanel__numbered___m3sE4 {
	counter-reset: basicpanel-numbering;
}

.BasicPanel__BasicPanel___q92_U > ol.BasicPanel__numbered___m3sE4 > li {
	counter-increment: basicpanel-numbering;
}

.BasicPanel__BasicPanel___q92_U > ol > li > .open,
.BasicPanel__BasicPanel___q92_U > ol.BasicPanel__numbered___m3sE4 > li:not(.add)::before {
	--size: 32px;
	content: counter(basicpanel-numbering);
	position: absolute;
	width: var(--size);
	height: var(--size);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	top: calc(50% - var(--size) / 2);
	left: 8px;
	border-radius: var(--size);
	font-size: var(--small-text);
	font-weight: bold;
}

.BasicPanel__BasicPanel___q92_U > ol > li > :not(button).open {
	border: 1px solid rgba(var(--theme-fg-parts), 0.2);
}

.BasicPanel__BasicPanel___q92_U > ol > li > .open {
	transition: opacity 0.2s;
	padding: 0;
	color: rgba(var(--theme-fg-parts), 0.5);
}

.BasicPanel__BasicPanel___q92_U > ol > li > .open > svg {
	width: 16px;
}

.BasicPanel__BasicPanel___q92_U > ol > li > .remove,
.BasicPanel__BasicPanel___q92_U > ol > li > .edit,
.BasicPanel__BasicPanel___q92_U > ol > li > .postButton {
	--size: 32px;
	padding: 0;
	position: absolute;
	width: var(--size);
	height: var(--size);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	top: calc(50% - var(--size) / 2);
	right: 8px;
	border-radius: var(--size);
}

.BasicPanel__BasicPanel___q92_U > ol > li > .remove svg,
.BasicPanel__BasicPanel___q92_U > ol > li > .edit svg {
	width: 16px;
	height: 16px;
}

.BasicPanel__BasicPanel___q92_U > ol > li.add {
	display: flex;
	align-items: center;
	position: relative;
	border: none;
	text-transform: uppercase;
	font-size: var(--small-text);
	font-weight: bold;
	color: rgba(var(--theme-fg-parts), 0.5);
	cursor: pointer;
}

.BasicPanel__BasicPanel___q92_U > ol > li[onClick] {
	cursor: pointer;
}

/* In case of add button at the top of the list.. */
.BasicPanel__BasicPanel___q92_U > ol > li.add + li {
	counter-reset: basicpanel-numbering;
	border-top: 1px solid var(--theme-offset-bg);
}

.BasicPanel__BasicPanel___q92_U > ol > li.add > .add {
	background: rgb(var(--theme-bg-parts));
	--size: 32px;
	padding: 0;
	position: absolute;
	width: var(--size);
	height: var(--size);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	top: calc(50% - var(--size) / 2);
	left: 4px;
	border-radius: var(--size);
}

.BasicPanel__BasicPanel___q92_U > ol > li.add > .add + div {
	margin-left: 40px;
}

.BasicPanel__BasicPanel___q92_U > ol > a,
.BasicPanel__BasicPanel___q92_U > ol > a:focus,
.BasicPanel__BasicPanel___q92_U > ol > a:visited {
	color: inherit;
	text-decoration: none;
}

.BasicPanel__BasicPanelDocs___lCk1O {
	margin: 16px;
	min-width: 500px;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.InlineHelp__InlineHelp___NTYcB {
	position: relative;
	display: inline-block;
	color: rgb(var(--theme-sel-bg-parts));
}

.InlineHelp__InlineHelp___NTYcB > button {
	background: none;
	box-shadow: none;
	border: none;
	color: var(--theme-sel-bg-parts, var(--blue));
	padding: 0;
	border-radius: 100%;
}

.InlineHelp__InlineHelp___NTYcB > button > .InlineHelp__warn___F2p5m {
	color: var(--yellow);
}

.InlineHelp__InlineHelp___NTYcB svg {
	width: 1.5em;
	height: 1.5em;
}

.InlineHelp__InlineHelp___NTYcB > .InlineHelp__arrow___hvUnB {
	--size: 8px;
	position: absolute;
	border: var(--size) solid transparent;
	border-bottom-color: rgb(var(--theme-bg-parts));
	left: calc(50% - 8px);
	bottom: 0;
	pointer-events: none;
	z-index: 20000; /* To ensure it appears over the WidgetPortal's shadow */

	animation-name: InlineHelp__inlinehelp-appear___OzDD8;
	animation-duration: 0.2s;
	animation-iteration-count: 1;
	transform-origin: top right;
}

@keyframes InlineHelp__inlinehelp-appear___OzDD8 {
	0% {
		opacity: 0;
		transform: translateY(16px);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

.InlineHelp__InlineHelpPanel___FASav {
	width: 256px;
	position: relative;
	filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
	background: rgb(var(--theme-bg-parts));
	color: rgba(var(--theme-fg-parts), 0.8);
	box-sizing: border-box;
	border-radius: 2px;

	animation-name: InlineHelp__inlinehelp-appear___OzDD8;
	animation-duration: 0.2s;
	animation-iteration-count: 1;
	transform-origin: top right;

	padding: 8px;
	z-index: 1;

	line-height: 1.5;
}

.InlineHelp__InlineHelpPanel___FASav h2 {
	font-weight: bold;
	padding: 0;
	margin: 0 0 1ex;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(var(--theme-fg-parts), 0.5);
}

.InlineHelp__InlineHelpPanel___FASav p {
	margin: 0;
	padding: 0;
}

.InlineHelp__InlineHelpPanel___FASav p + p {
	margin-top: 8px;
}

.InlineHelp__InlineHelpPanel___FASav ul {
	padding: 0 0 0 1em;
	margin: 0;
	list-style-position: outside;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by huili on 2019-06-19
 */

.WidgetPortal__WidgetPortal___Gsvvw {
	position: absolute;
}

.Calendar__Calendar___f9QU9 {
	--total-width: calc(32px * 9);
	width: var(--total-width);
}

.Calendar__header___i7ad3 {
	display: flex;
	align-items: center;
	margin: 0 0 8px;
}

.Calendar__header___i7ad3 .Calendar__tachyon___u5Goa {
	/* Navigation buttons */
}

.Calendar__header___i7ad3 .Calendar__month___J2Zfq,
.Calendar__header___i7ad3 .Calendar__year___qFSeu {
	flex: 1;
	margin: 0 8px;
}

.Calendar__header___i7ad3 .Calendar__month___J2Zfq {
	margin-right: 4px;
}

.Calendar__header___i7ad3 .Calendar__year___qFSeu {
	margin-left: 4px;
}

.Calendar__grid___F56oz {
	position: relative;
}

.Calendar__grid___F56oz .Calendar__dayNames___q80rW,
.Calendar__grid___F56oz .Calendar__week___qKAFu {
	display: flex;
	align-items: stretch;
	z-index: 1;
}

.Calendar__grid___F56oz .Calendar__dayNames___q80rW > div,
.Calendar__grid___F56oz .Calendar__week___qKAFu > div {
	width: calc(100% / 7);
}

.Calendar__grid___F56oz .Calendar__dayNames___q80rW > div {
	text-align: center;
	font-weight: normal;
	font-size: var(--small-text);
	text-transform: uppercase;
	padding: 8px;
	color: rgba(var(--theme-fg-parts), 0.2);
}

.Calendar__grid___F56oz .Calendar__body___ryJDD {
	height: calc(32px * 6);
	overflow: hidden;
	position: relative;
}

.Calendar__grid___F56oz .Calendar__body___ryJDD > .Calendar__week___qKAFu {
	height: 32px;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
}

.Calendar__grid___F56oz .Calendar__body___ryJDD > .Calendar__week___qKAFu > .Calendar__day___ukVQq {
	text-align: center;
	cursor: pointer;
	transition: color 0.3s;
}

.Calendar__grid___F56oz .Calendar__body___ryJDD > .Calendar__week___qKAFu > .Calendar__day___ukVQq > div {
	width: 32px;
	height: 32px;
	box-sizing: border-box;
	border-radius: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid transparent;
}

.Calendar__grid___F56oz .Calendar__body___ryJDD > .Calendar__week___qKAFu > .Calendar__day___ukVQq:hover:not(.Calendar__disabled___ZDX7s) > div {
	background: var(--theme-offset-bg);
}

.Calendar__grid___F56oz .Calendar__body___ryJDD > .Calendar__week___qKAFu > .Calendar__day___ukVQq.Calendar__today___yM0dt > div {
	background: rgba(var(--theme-sel-bg-parts), 0.5);
	color: rgb(var(--theme-sel-fg-parts));
}

@keyframes Calendar__make-selection___NLnGL {
	0% {
		/* https://stackoverflow.com/questions/49837858/css-custom-properties-in-box-shadow-color-function-render-incorrectly-in-safari */
		/* Note that this will look naff in Safari (at least <=12), because it will use the value of currentColor as it cannot handle
			 css variables inside multi-part properties. The workaround above would be to create a temporary variable to store the colour,
			 but as per https://www.w3.org/TR/css-variables-1/#using-variables, CSS variables use the "flips at 50%" behaviour for all
			 transitions and animations, which makes the animation here look even worse. So Safari users get a slightly ugly experience. */
		box-shadow: 0 0 0 rgba(var(--theme-sel-bg-parts), 1);
	}
	100% {
		box-shadow: 0 0 0 8px rgba(var(--theme-sel-bg-parts), 0);
	}
}

.Calendar__grid___F56oz .Calendar__body___ryJDD > .Calendar__week___qKAFu > .Calendar__day___ukVQq.Calendar__selected___xWSSU > div {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
	animation-name: Calendar__make-selection___NLnGL;
	animation-duration: 0.5s;
}

.Calendar__grid___F56oz .Calendar__body___ryJDD > .Calendar__week___qKAFu > .Calendar__day___ukVQq.Calendar__today___yM0dt.Calendar__selected___xWSSU > div {
	background: rgb(var(--theme-sel-bg-parts));
}

.Calendar__grid___F56oz .Calendar__body___ryJDD > .Calendar__week___qKAFu > .Calendar__day___ukVQq.Calendar__sibling___hkVOW,
.Calendar__grid___F56oz .Calendar__body___ryJDD > .Calendar__week___qKAFu > .Calendar__day___ukVQq.Calendar__disabled___ZDX7s {
	color: rgba(var(--theme-fg-parts), 0.3);
}

/* weekend bars */
.Calendar__grid___F56oz::before,
.Calendar__grid___F56oz::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: calc(var(--total-width) / 7);
	background: rgba(var(--theme-fg-parts), 0.02);
	z-index: 0;
	pointer-events: none;
}

.Calendar__grid___F56oz::before {
	left: 0;
}

.Calendar__grid___F56oz::after {
	right: 0;
}

.Calendar__grid___F56oz .Calendar__body___ryJDD > .Calendar__week___qKAFu {
	animation-fill-mode: forwards;
	transition: transform 0.3s;
}

@keyframes Calendar__appear-from-below___Rh5Hd {
	from {
		transform: translateY(192px);
	}
}
.Calendar__forwards___sLjNS .Calendar__weekEnter___NAqbV {
	animation-name: Calendar__appear-from-below___Rh5Hd;
}

@keyframes Calendar__appear-from-above___XgsW5 {
	from {
		transform: translateY(-192px);
	}
}
.Calendar__backwards___ggUnJ .Calendar__weekEnter___NAqbV {
	animation-name: Calendar__appear-from-above___XgsW5;
}

@keyframes Calendar__disappear-to-above___TGimS {
	to {
		transform: translateY(-192px);
	}
}
.Calendar__forwards___sLjNS .Calendar__weekLeave___FIbuN {
	animation-name: Calendar__disappear-to-above___TGimS;
}

@keyframes Calendar__disappear-to-below___RefCo {
	to {
		transform: translateY(192px);
	}
}
.Calendar__backwards___ggUnJ .Calendar__weekLeave___FIbuN {
	animation-name: Calendar__disappear-to-below___RefCo;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.MenuButton__Menu___FMwps {
	position: relative;
	display: flex;
	align-items: stretch;
}

.MenuButton__Menu___FMwps > button {
	width: 100%;
	padding: 8px 24px;
}

.MenuButton__Menu___FMwps.MenuButton__invalid___C04oO > button {
	box-shadow: inset 0 0 2px 1px var(--orange);
}

.MenuButton__Menu___FMwps > button > div {
	overflow: hidden;
	white-space: nowrap;
	display: block;
	width: 0;
	text-overflow: ellipsis;
	flex: 1;
}

@keyframes MenuButton__menu-appear___m4bYE {
	0% {
		opacity: 0;
		transform: scaleX(0) scaleY(0);
	}
	50% {
		transform: scaleX(1) scaleY(0.5);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

.MenuButton__MenuPanel___w5oFd {
	width: auto;
	min-width: 128px;
	max-width: 512px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	border-radius: 2px;
	background: rgb(var(--theme-bg-alt-parts));
	animation-name: MenuButton__menu-appear___m4bYE;
	animation-duration: 0.2s;
	animation-iteration-count: 1;
	transform-origin: top right;
	color: rgba(var(--theme-fg-parts), 0.8);
	z-index: 5;
}

.MenuButton__MenuPanel___w5oFd h2 {
	font-size: var(--small-text);
	font-weight: bold;
	padding: 4px 24px;
	margin: 0;
	text-transform: uppercase;
	opacity: 0.5;
}

.MenuButton__MenuPanel___w5oFd > .MenuButton__toggles___uiIBD {
	display: flex;
	font-size: var(--small-text);
	border-bottom: 1px solid var(--theme-offset-bg);
}

.MenuButton__MenuPanel___w5oFd > .MenuButton__toggles___uiIBD > .MenuButton__all___o6LA_,
.MenuButton__MenuPanel___w5oFd > .MenuButton__toggles___uiIBD > .MenuButton__none___qSrp8 {
	flex: 1;
	padding: 8px 0;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
}

.MenuButton__MenuPanel___w5oFd > .MenuButton__toggles___uiIBD > .MenuButton__all___o6LA_:hover,
.MenuButton__MenuPanel___w5oFd > .MenuButton__toggles___uiIBD > .MenuButton__none___qSrp8:hover {
	background: var(--theme-offset-bg);
}

.MenuButton__MenuPanel___w5oFd > .MenuButton__menuContainer___Gua89 {
	max-height: 50vh;
	overflow: auto;
	padding: 8px 0;
}

.MenuButton__MenuPanel___w5oFd menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.MenuButton__MenuPanel___w5oFd menu > li {
	padding: 8px 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.MenuButton__MenuPanel___w5oFd menu > li.MenuButton__unspecified___kBYIF {
	font-style: italic;
}

.MenuButton__MenuPanel___w5oFd > .MenuButton__menuContainer___Gua89 > .MenuButton__disabled___QsW__ {
	opacity: 0.5;
	font-style: italic;
}

.MenuButton__MenuPanel___w5oFd > .MenuButton__menuContainer___Gua89 > .MenuButton__disabled___QsW__ menu > li {
	cursor: default;
}

.MenuButton__MenuPanel___w5oFd menu.MenuButton__checklist___bQ1yL > li,
.MenuButton__MenuPanel___w5oFd menu.MenuButton__swatched___nrZLj > li {
	padding-left: 8px;
}

.MenuButton__MenuPanel___w5oFd menu.MenuButton__checklist___bQ1yL > li > .MenuButton__check___XhlaP,
.MenuButton__MenuPanel___w5oFd menu.MenuButton__checklist___bQ1yL > li > .MenuButton__blank___I0WTF {
	width: 16px;
	height: 16px;
	margin: 0 8px 0 0;
	flex-shrink: 0;
}

.MenuButton__MenuPanel___w5oFd menu.MenuButton__checklist___bQ1yL > li > .MenuButton__check___XhlaP > svg,
.MenuButton__MenuPanel___w5oFd menu.MenuButton__checklist___bQ1yL > li > .MenuButton__blank___I0WTF > svg {
	width: 100%;
	height: 100%;
}

.MenuButton__MenuPanel___w5oFd menu.MenuButton__unset___y0ybh {
	opacity: 0.8;
	font-style: italic;
	text-transform: uppercase;
}

.MenuButton__MenuPanel___w5oFd menu.MenuButton__swatched___nrZLj > li > .MenuButton__swatch___GLisI {
	width: 1.2em;
	height: 1.2em;
	margin: 0 8px 0 0;
	border-radius: 100%;
}

.MenuButton__MenuPanel___w5oFd menu > li > .MenuButton__value___e0mbG {
	flex: 1;
}

.MenuButton__MenuPanel___w5oFd menu > li:hover {
	background: var(--theme-offset-bg);
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.Toolbar__Toolbar___ecArT {
	display: flex;
	flex-wrap: wrap;
	background: var(--nav-level-two);
	color: var(--nav-level-two-fg);
	position: relative;
	padding-left: 8px;
}

.Toolbar__Toolbar___ecArT > .Toolbar__spacer___OJGqc {
	flex: 1;
}

.Toolbar__Toolbar___ecArT input.singleSelect,
.Toolbar__Toolbar___ecArT input.calendar {
	margin: 4px 8px 4px 0;
	border: 1px solid var(--theme-button-border);
	border-radius: 2px;
	padding: 6px 7px;
}

.Toolbar__Toolbar___ecArT input.singleSelect {
	width: 192px;
}

.Toolbar__Toolbar___ecArT input.calendar {
	width: 128px;
}

.Toolbar__Toolbar___ecArT > div > button,
.Toolbar__Toolbar___ecArT > span > button,
.Toolbar__Toolbar___ecArT button:enabled,
.Toolbar__Toolbar___ecArT button[disabled] {
	border-radius: 4px;
	margin: 8px 8px 8px 0;
	border: 1px solid var(--theme-button-border);
	box-shadow: none;
	cursor: pointer;
	padding: 8px 24px;
	background: transparent;
	color: inherit;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-transform: uppercase;
	font-weight: bold;
	font-size: var(--small-text);
	transition: box-shadow 0.2s, background 0.2s;
	position: relative;
}

@media (max-height: 800px) {
	.Toolbar__Toolbar___ecArT > div > button,
	.Toolbar__Toolbar___ecArT > span > button,
	.Toolbar__Toolbar___ecArT button:enabled,
	.Toolbar__Toolbar___ecArT button[disabled] {
		margin-top: 4px;
		margin-bottom: 4px;
	}
}

@media (max-width: 1400px) {
	.Toolbar__Toolbar___ecArT > div > button,
	.Toolbar__Toolbar___ecArT > span > button,
	.Toolbar__Toolbar___ecArT button:enabled,
	.Toolbar__Toolbar___ecArT button[disabled] {
		padding-left: 16px;
		padding-right: 16px;
	}
}

@media (max-width: 800px) {
	.Toolbar__Toolbar___ecArT > div > button,
	.Toolbar__Toolbar___ecArT > span > button,
	.Toolbar__Toolbar___ecArT button:enabled,
	.Toolbar__Toolbar___ecArT button[disabled] {
		padding-left: 8px;
		padding-right: 8px;
	}
}

.Toolbar__Toolbar___ecArT > span > input {
	margin: 10px 0;
}

.Toolbar__Toolbar___ecArT input:first-child {
	margin: 8px 8px 8px 0;
	padding: 6px 7px;
}

@media (max-height: 800px) {
	.Toolbar__Toolbar___ecArT input:first-child {
		margin: 4px 8px 4px 0;
		border-radius: 2px;
	}
}

.Toolbar__Toolbar___ecArT button[disabled] {
	cursor: default;
	opacity: 0.5;
}

.Toolbar__Toolbar___ecArT > span > button:hover,
.Toolbar__Toolbar___ecArT button:enabled:hover {
	box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
	background-color: rgba(255, 255, 255, 0.1);
}

.Toolbar__Toolbar___ecArT > span > button:focus,
.Toolbar__Toolbar___ecArT button:enabled:focus {
	outline: none;
	border-color: rgb(var(--theme-sel-bg-parts));
}

.Toolbar__Toolbar___ecArT > span > button:active,
.Toolbar__Toolbar___ecArT button:enabled:active {
	border-color: rgb(var(--theme-sel-bg-parts));
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
}

.Toolbar__Toolbar___ecArT > span > button::after,
.Toolbar__Toolbar___ecArT button:enabled::after {
	visibility: hidden;
	content: '';
	display: block;

	position: absolute;

	/* We want this to be as wide as the button so that it goes into all the corners,
		 even when the button has some rounded and some square corners, like on the FancyNumberInput.*/
	width: 100%;

	/* Now we employ ✨MAGIC✨ for a 1:1 aspect ratio */
	padding-top: 100%;

	/* Only set the `left`; we'll rely on the button positioning us in the centre because of its
		 flex display. We can't explicitly set the top or bottom correctly because the centre is
		 dependent on our height, which we don't know here. */
	left: 0;
	border-radius: 100%;

	background: rgb(var(--theme-sel-bg-parts));
	opacity: 0.2;
	transform: scale(0);
	transform-origin: center;
}

.Toolbar__Toolbar___ecArT > span > button:not(:active)::after,
.Toolbar__Toolbar___ecArT button:enabled:not(:active)::after {
	animation-name: Toolbar__ripple___KAowa;
	animation-duration: 1s;
	animation-timing-function: ease-out;
}

.Toolbar__Toolbar___ecArT > span > button:focus::after,
.Toolbar__Toolbar___ecArT button:focus::after {
	visibility: visible;
}

.Toolbar__Toolbar___ecArT > span > button.Toolbar__highlight___FZLqD,
.Toolbar__Toolbar___ecArT button:enabled.Toolbar__highlight___FZLqD {
	border-color: var(--yellow);
	animation-name: Toolbar__glow___WtmnP;
	animation-duration: 10s;
	animation-iteration-count: infinite;
}

.Toolbar__Toolbar___ecArT button.toggled {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
	text-shadow: none;
}

.Toolbar__Toolbar___ecArT button.toggled:hover {
	box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
	background-color: rgba(var(--theme-sel-bg-parts), 0.6);
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.InfoPill__InfoPill___CQ6X_ {
	border-radius: 2px;
	background: var(--theme-offset-bg);
	text-transform: uppercase;
	font-size: var(--small-text);
	font-weight: bold;
	padding: 2px 4px;
	display: inline-block;
	margin: 0 0 0 1ex;
	box-sizing: border-box;
	vertical-align: baseline;
	color: inherit;
}

.InfoPill__InfoPill___CQ6X_ svg {
	width: 16px;
	display: block;
}

.InfoPill__InfoPill___CQ6X_.InfoPill__pre___VL96z {
	background: var(--yellow);
	color: #fff;
}

.InfoPill__InfoPill___CQ6X_.InfoPill__post___XKQBs {
	background: var(--green);
	color: #fff;
}

.InfoPill__InfoPill___CQ6X_.InfoPill__late___Y_7lk {
	background: var(--orange);
	color: #fff;
}

.InfoPill__InfoPill___CQ6X_.InfoPill__official___l66Vl {
	background: var(--theme-sel-bg-parts, var(--blue));
	color: var(--theme-sel-fg-parts, #fff);
}

.InfoPill__InfoPill___CQ6X_.InfoPill__disabled___CQMkz {
	background: var(--red);
	color: #fff;
}

.InfoPill__InfoPill___CQ6X_.InfoPill__enabled___bnC99 {
	background: var(--green);
	color: #fff;
}

.InfoPill__InfoPill___CQ6X_.InfoPill__fixed___k4uG1,
.InfoPill__InfoPill___CQ6X_.InfoPill__flexible___Wb66n,
.InfoPill__InfoPill___CQ6X_.InfoPill__visible___RhDRe,
.InfoPill__InfoPill___CQ6X_.InfoPill__invisible___jDDEh,
.InfoPill__InfoPill___CQ6X_.InfoPill__tobevisible___gXRiE {
	background: none;
	padding: 0;
	vertical-align: middle;
}

.InfoPill__InfoPill___CQ6X_.InfoPill__visible___RhDRe,
.InfoPill__InfoPill___CQ6X_.InfoPill__invisible___jDDEh,
.InfoPill__InfoPill___CQ6X_.InfoPill__tobevisible___gXRiE {
	padding: 0 4px;
}

.InfoPill__InfoPill___CQ6X_.InfoPill__invisible___jDDEh,
.InfoPill__InfoPill___CQ6X_.InfoPill__tobevisible___gXRiE {
	opacity: 0.5;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.Notice__Notice___Cze9V {
	background: var(--theme-offset-bg);
	padding: 8px;
	border-radius: 2px;
	border-left: 8px solid var(--yellow);
}

.Notice__Notice___Cze9V > .Notice__primary___vQCrl {
	display: flex;
	align-items: center;
	font-weight: bold;
	margin: 0 0 8px;
}

.Notice__Notice___Cze9V > .Notice__secondary___jQS5H {
	opacity: 0.5;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.Input__Input___KL0p5 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	flex: 1;
	box-sizing: border-box;
}

.Input__Input___KL0p5 > input {
	color: rgb(var(--theme-fg-parts));
	background: rgb(var(--theme-bg-parts));
	border-radius: 4px;
	border: 1px solid var(--theme-offset-bg);
	padding: 8px;
	flex: 1;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

.Input__Input___KL0p5 > input:focus {
	border: 1px solid rgb(var(--theme-sel-bg-parts));
	outline: none;
}

.Input__Input___KL0p5 > input[disabled] {
	opacity: 0.5;
}

.Input__Input___KL0p5 > input:invalid {
	box-shadow: inset 0 0 2px 1px var(--orange);
}

.Input__Input___KL0p5 > input::-moz-placeholder {
	color: rgba(var(--theme-fg-parts), 0.5);
}

.Input__Input___KL0p5 > input::placeholder {
	color: rgba(var(--theme-fg-parts), 0.5);
}

input[type='search'] {
	-webkit-appearance: textfield;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by huili on 2019-01-09
 */

.Label__Label___D7Qid {
	display: inline-flex;
	align-items: center;
}

.legacy-root .Label__Label___D7Qid {
	padding: 0;
}

.Label__disabled___w0zVQ {
	opacity: 0.5;
}

.Label__innerText___HVhy6 {
	opacity: 0.5;
	margin: 0 8px 0 0;
	text-transform: uppercase;
	font-weight: bold;
	font-size: var(--small-text);
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.FancyNumberInput__FancyNumberInput___de_Fx {
	display: inline-flex !important;
	flex-direction: row !important;
	align-items: stretch;
	justify-content: flex-end;
}

.FancyNumberInput__FancyNumberInput___de_Fx.FancyNumberInput__disabled___S71It {
	opacity: 0.5;
}

.FancyNumberInput__FancyNumberInput___de_Fx > .FancyNumberInput__label___e8CTc {
	margin-right: 8px;
	justify-content: flex-end;
}

.FancyNumberInput__FancyNumberInput___de_Fx > button {
	display: flex;
	width: 32px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border-radius: 64px;
}

.FancyNumberInput__FancyNumberInput___de_Fx > button > svg {
	opacity: 0.5;
	width: 16px;
}

.FancyNumberInput__FancyNumberInput___de_Fx > .FancyNumberInput__subtract___n7Wm_ {
	padding-left: 4px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-right: none;
}

.FancyNumberInput__FancyNumberInput___de_Fx > input {
	color: rgb(var(--theme-fg-parts));
	background: rgb(var(--theme-bg-parts));
	border-radius: 0;
	border: 1px solid rgba(var(--theme-fg-parts), 0.1);
	border-color: rgba(
		var(--theme-fg-parts),
		0.1
	); /* Workaround for Safari bug -- https://codepen.io/finnhvman/post/theming-with-css-variables-in-rgba#browser-support-4 */
	text-align: center;
	padding: 8px;
}

.FancyNumberInput__FancyNumberInput___de_Fx > input:focus {
	border: 1px solid rgba(var(--theme-sel-bg-parts), 0.1);
	outline: none;
}

.FancyNumberInput__FancyNumberInput___de_Fx.FancyNumberInput__invalid___prHGA > input {
	box-shadow: inset 0 0 2px 1px var(--orange);
}

.FancyNumberInput__FancyNumberInput___de_Fx > .FancyNumberInput__add___jiajY {
	padding-right: 4px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-left: none;
}

.FancyNumberInput__FancyNumberInput___de_Fx.FancyNumberInput__disabled___S71It {
	opacity: 0.5;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

ol.Checklist__Checklist___M_pcf {
	padding: 0;
	margin: 0;
	list-style: none;
}

.Checklist__Checklist___M_pcf label {
	display: flex;
	align-items: center;
	counter-increment: checklist;
	margin: 0 0 8px;
	padding: 0;
}

.Checklist__Checklist___M_pcf:not(.Checklist__readonly___tjw8B) label {
	cursor: pointer;
}

.Checklist__Checklist___M_pcf.Checklist__readonly___tjw8B label {
	cursor: default;
}

.Checklist__Checklist___M_pcf label > .Checklist__counter___aKSHy {
	--size: 32px;
	width: var(--size);
	height: var(--size);
	box-sizing: border-box;
	border-radius: 100%;
	border: 2px solid var(--theme-offset-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: var(--theme-offset-bg);
	transition: background 0.5s, color 0.5s;
	background-position: center;
}

.Checklist__Checklist___M_pcf:not(.Checklist__readonly___tjw8B) label:hover > .Checklist__counter___aKSHy {
	border-color: var(--container-accent, rgb(var(--theme-sel-bg-parts)));
}

@keyframes Checklist__checklist-checked___EjLii {
	0% {
		box-shadow: 0 0 0 var(--container-accent, rgb(var(--theme-sel-bg-parts)));
	}
	100% {
		box-shadow: 0 0 0 8px transparent;
	}
}

.Checklist__Checklist___M_pcf label.Checklist__checked___X1acW > .Checklist__counter___aKSHy {
	color: var(--container-contrast, rgb(var(--theme-sel-fg-parts)));
	background-color: var(--container-accent, rgb(var(--theme-sel-bg-parts)));
}

.Checklist__Checklist___M_pcf:not(.Checklist__readonly___tjw8B) label.Checklist__checked___X1acW > .Checklist__counter___aKSHy {
	animation-name: Checklist__checklist-checked___EjLii;
	animation-duration: 0.5s;
}

.Checklist__Checklist___M_pcf label.Checklist__checked___X1acW > .Checklist__counter___aKSHy > svg {
	width: 16px;
	height: 16px;
}

.Checklist__Checklist___M_pcf label > input {
	display: none;
}

.Checklist__Checklist___M_pcf label > input + span {
	margin: 0 0 0 8px;
}

.Checklist__Checklist___M_pcf label.Checklist__checked___X1acW > span {
	color: rgba(var(--theme-fg-parts), 0.5);
}

.Checklist__docColour___X_Lax {
	--container-accent: red;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by huili on 2019-06-07
 */

.Collapsible__Collapsible___i5btl {
	/* Fall back to theme colours */
	--accent-colour: var(--collapsible-accent, rgb(var(--theme-sel-bg-parts)));
	--accent-contrast: var(
		--collapsible-accent-contrast,
		rgb(var(--theme-sel-fg-parts))
	);
	--accent-colour-hsl: var(
		--collapsible-accent-hsl,
		rgb(var(--theme-sel-bg-parts))
	);
	width: 100%;
}

.Collapsible__Collapsible___i5btl > .Collapsible__header___cnyUU {
	padding: 4px 8px;
	border-bottom: 1px solid var(--theme-offset-bg);
	z-index: 10;
	background: rgb(var(--theme-sel-fg-parts));
}

.Collapsible__Collapsible___i5btl > .Collapsible__header___cnyUU > .Collapsible__label___acd8C {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	color: var(--accent-colour-hsl);
}

.Collapsible__Collapsible___i5btl.Collapsible__collapsed___ZtjP2,
.Collapsible__Collapsible___i5btl.Collapsible__expanded___v16Gt > .Collapsible__header___cnyUU {
	position: sticky;
	top: 0;
}

.Collapsible__Collapsible___i5btl > .Collapsible__header___cnyUU > .Collapsible__label___acd8C > .Collapsible__expandBtn___XlxNT {
	background: var(--accent-colour);
	color: var(--accent-contrast);
	--size: 24px;
}

.Collapsible__Collapsible___i5btl > .Collapsible__content___IfFnl {
	overflow: hidden;
	max-height: 100%;
}

.Collapsible__Collapsible___i5btl > .Collapsible__content___IfFnl.Collapsible__exitActive___Jz7Tn {
	animation-name: Collapsible__collapsible-collapsing___zTKJU;
	animation-duration: 400ms;
}

.Collapsible__Collapsible___i5btl > .Collapsible__content___IfFnl.Collapsible__enterActive___ygjEa {
	animation-name: Collapsible__collapsible-expanding___tEHWV;
	animation-duration: 400ms;
}

@keyframes Collapsible__collapsible-collapsing___zTKJU {
	0% {
		max-height: 100vh;
	}

	100% {
		max-height: 0;
	}
}

@keyframes Collapsible__collapsible-expanding___tEHWV {
	0% {
		max-height: 0;
	}

	100% {
		max-height: 100vh;
	}
}

.Curtain__Curtain___WMJPe {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-webkit-backdrop-filter: grayscale(100%);
	        backdrop-filter: grayscale(100%);
	display: flex;
	align-items: center;
	justify-content: center;

	animation-duration: 0.3s;
	animation-fill-mode: forwards;
	animation-name: Curtain__show___Pq4sc;
}

.Curtain__Curtain___WMJPe.Curtain__clickthrough___QyZaI {
	pointer-events: none;
}

.Curtain__Curtain___WMJPe > .Curtain__background___Os2eQ {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0.5;
	background: var(--background-colour);
}

@keyframes Curtain__show___Pq4sc {
	from {
		-webkit-backdrop-filter: grayscale(0);
		        backdrop-filter: grayscale(0);
		opacity: 0;
	}
}

.DatePicker__DatePicker___JFH9s {
	position: relative;
}

.DatePicker__DatePicker___JFH9s > .DatePicker__button___hPB2R {
	width: 100%;
	height: 100%;
	font-size: var(--small-text);
}

.DatePicker__DatePicker___JFH9s > .DatePicker__button___hPB2R.DatePicker__placeholder___dUoNS {
	font-weight: normal;
}

@keyframes DatePicker__panel-appear___DBmjq {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
}

.DatePicker__panel___LA3FY {
	box-sizing: border-box;
	background: rgb(var(--theme-bg-parts));

	z-index: 2;

	--padding: 16px;
	--width: calc(288px + var(--padding) * 2);
	padding: var(--padding);
	width: var(--width); /* 32px * 9, from calendar */
	left: calc(50% - var(--width) / 2);
	top: calc(100% + 4px);

	filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));

	animation-name: DatePicker__panel-appear___DBmjq;
	animation-duration: 0.2s;
	animation-iteration-count: 1;
	transform-origin: top;
}

.DatePicker__panel___LA3FY::before {
	--size: 8px;
	content: '';
	position: absolute;
	border: var(--size) solid transparent;
	border-bottom-color: rgb(var(--theme-bg-parts));
	top: calc(var(--size) * -2);
	left: calc(50% - var(--size));
	pointer-events: none;
}

.DateTimePicker__DateTimePicker___N8JpW {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.DateTimePicker__DateTimePicker___N8JpW .DateTimePicker__date___seXNv {
	flex: 1;
	white-space: pre;
}

.DateTimePicker__DateTimePicker___N8JpW .DateTimePicker__time___UZSNa {
	flex: 1;
	margin: 0 0 0 8px;
}

.DateTimePicker__DateTimePicker___N8JpW .DateTimePicker__clear___YvPTX {
	margin: 0 0 0 8px;
}

.DateTimePicker__DateTimePicker___N8JpW .DateTimePicker__clear___YvPTX svg {
	width: 16px;
	height: 16px;
}

.TimePicker__TimePicker___cV73V button {
	font-size: var(--small-text);
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.FindAsYouType__FindAsYouType___j4Emb {
	position: relative;
	flex: 1;
}

.FindAsYouType__FindAsYouType___j4Emb > button {
	width: 100%;
	text-transform: none;
}

.FindAsYouType__FindAsYouType___j4Emb > button > .FindAsYouType__value___lzuOB,
.FindAsYouType__FindAsYouType___j4Emb > button > .FindAsYouType__placeholder___i71lS {
	margin: 0 16px 0 0;
	flex: 1;
	text-align: left;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.FindAsYouType__FindAsYouType___j4Emb > button > .FindAsYouType__value___lzuOB.FindAsYouType__wrap___IWogB {
	white-space: normal;
}

.FindAsYouType__FindAsYouType___j4Emb > button > .FindAsYouType__placeholder___i71lS {
	opacity: 0.5;
	font-weight: normal;
}

.FindAsYouType__type___q5O_D {
	text-transform: none;
	background: var(--person-colour, rbg(var(--theme-sel-bg-parts)));
	border-radius: 2px;
	padding: 2px;
	margin: 0 1ex 0 0;
	min-width: 2ex;
	font-weight: bold;
	color: rgba(255, 255, 255, 0.7);
}

.FindAsYouType__type___q5O_D.FindAsYouType__student___pBpyl {
	--person-colour: #4db848;
}
.FindAsYouType__type___q5O_D.FindAsYouType__staff___LZdDQ {
	--person-colour: #00aeef;
}
.FindAsYouType__type___q5O_D.FindAsYouType__contact___N2OyZ {
	--person-colour: #f36f21;
}
.FindAsYouType__type___q5O_D.FindAsYouType__tutor___UosFx {
	--person-colour: #7b5aa6;
}

.FindAsYouType__meta___fZlYa {
	display: inline-flex;
	text-transform: none;
	background: var(--theme-offset-bg);
	border-radius: 2px;
	justify-content: space-between;
	align-self: center;
	overflow: hidden;
}

.FindAsYouType__meta___fZlYa > .FindAsYouType__house___VPOMd,
.FindAsYouType__meta___fZlYa > .FindAsYouType__rollgroup___inncy,
.FindAsYouType__meta___fZlYa > .FindAsYouType__schoolyear___U60pZ,
.FindAsYouType__meta___fZlYa > .FindAsYouType__campus___Kx0bz,
.FindAsYouType__meta___fZlYa > .FindAsYouType__boarder___TSnx4 {
	padding: 4px;
	text-overflow: ellipsis;
	max-width: 48px;
	overflow: hidden;
}

.FindAsYouType__meta___fZlYa > div + div {
	border-left: 1px solid var(--theme-offset-bg);
}

@keyframes FindAsYouType__panel-appear___fbNwF {
	0% {
		opacity: 0;
		transform: scaleY(0.8);
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: none;
	}
}

.FindAsYouType__panel___n6thn {
	display: flex;
	min-width: 256px;
	flex-direction: column;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	border-radius: 4px;
	background: rgb(var(--theme-bg-parts));
	animation-name: FindAsYouType__panel-appear___fbNwF;
	animation-duration: 0.2s;
	animation-iteration-count: 1;
	transform-origin: top;
	z-index: 10;
	overflow: hidden;
}

.FindAsYouType__panel___n6thn > input {
	margin: 4px;
	width: auto;
	font-size: var(--small-text);
	font-weight: bold;
	color: inherit;
}

.FindAsYouType__panel___n6thn > ol {
	overflow-y: auto;
	overflow-x: hidden;
	list-style: none;
	padding: 0;
	margin: 0;
	color: rgba(var(--theme-fg-parts), 0.8);
	max-height: 320px; /* Note overriden in JS */
	position: relative;
}

.FindAsYouType__panel___n6thn > ol > .FindAsYouType__pointer___y_g1d {
	position: absolute;
	top: 0;
	left: 0;
	height: 32px; /* Note overriden in JS */
	width: 4px;
	background: rgb(var(--theme-sel-bg-parts));
}

.FindAsYouType__panel___n6thn > ol > li {
	display: flex;
	align-items: center;
	padding: 8px;
	cursor: pointer;
	border-bottom: 1px solid rgba(var(--theme-fg-parts), 0.1);
	height: 32px; /* Note overriden in JS */
	box-sizing: border-box;
}

.FindAsYouType__panel___n6thn > ol > li:hover {
	background: var(--theme-offset-bg);
}

.FindAsYouType__panel___n6thn > ol > li[data-colourBar='negative'] {
	box-shadow: inset 4px 0 #f44336;
}

.FindAsYouType__panel___n6thn > ol > li[data-colourBar='positive'] {
	box-shadow: inset 4px 0 #4db848;
}

.FindAsYouType__panel___n6thn > ol > li > .FindAsYouType__value___lzuOB {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.FindAsYouType__panel___n6thn > ol > li > .FindAsYouType__meta___fZlYa {
	font-size: var(--small-text);
	font-weight: bold;
	white-space: nowrap;
}

.FindAsYouType__panel___n6thn > ol > li.FindAsYouType__empty___gzBcg {
	opacity: 0.5;
	text-transform: uppercase;
	font-weight: bold;
	font-size: var(--small);
	padding: 32px;
	text-align: center;
	height: auto;
	display: block;
}

.FindAsYouType__panel___n6thn > ol > li + li.FindAsYouType__empty___gzBcg {
	display: none;
}

.FindAsYouType__panel___n6thn > ol > li.FindAsYouType__empty___gzBcg:hover {
	background: none;
	cursor: default;
}

.FindAsYouType__panel___n6thn > ol > li > svg {
	padding-right: 4px;
}

.FindAsYouType__panel___n6thn .FindAsYouType__search___iSwQc {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.Empty__Empty___vsp0x {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8px;
	box-sizing: border-box;
	flex: 1;
	animation-name: Empty__empty-shown___dKrqy;
	animation-duration: 600ms;
}

.Empty__Empty___vsp0x > svg {
	width: 64px;
	height: 64px;
	opacity: 0.5;
}

.Empty__Empty___vsp0x > .Empty__title___bQfO4 {
	font-size: var(--large-text);
	margin: 16px 0 0;
}

.Empty__Empty___vsp0x > .Empty__message___JJVXI {
	margin: 16px 0;
}

@keyframes Empty__empty-shown___dKrqy {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@media print {
	.Empty__Empty___vsp0x {
		display: block !important;
	}
}

.Expand__Expand___MQDq7 {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--theme-bg-offset);
	background: rgb(var(--theme-bg-parts));
	overflow: hidden;
	max-height: 50vh;
}

.Expand__Expand___MQDq7 + .Expand__Expand___MQDq7 {
	border-top: none;
}

.Expand__header___lIKkB {
	background: rgba(var(--theme-fg-parts), 0.02);
	text-transform: uppercase;
	color: rgba(var(--theme-fg-parts), 0.5);
	font-weight: bold;
	display: flex;
	align-items: center;
	cursor: pointer;
	flex-shrink: 0;
}

.Expand__header___lIKkB button {
	align-self: stretch;
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
}

.Expand__compact___ZZy6H .Expand__header___lIKkB button {
	height: auto;
	min-height: 24px;
}

.Expand__open___SYzm_ .Expand__header___lIKkB {
	background: var(--theme-offset-bg);
	border-bottom: 1px solid var(--theme-offset-bg);
}

.Expand__header___lIKkB > button > svg {
	transition: transform 0.3s;
}

.Expand__open___SYzm_ .Expand__header___lIKkB > button > svg {
	transform: rotate(180deg);
}

.Expand__header___lIKkB > .Expand__title___pBS_5 {
	flex: 1;
	padding: 4px 8px;
}

.Expand__content___Whyox {
	overflow: auto;
	padding: 8px;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.FancyCheckbox__FancyCheckbox___OjfVq {
	display: flex;
	align-items: center;
	--size: 24px;
	--pop: -2px;
	padding: calc(var(--pop) * -1);
	cursor: pointer;
	flex: 1;
}

.FancyCheckbox__FancyCheckbox___OjfVq > .FancyCheckbox__label___DTAFz {
	flex: 1;
	cursor: pointer;
}

.FancyCheckbox__FancyCheckbox___OjfVq.FancyCheckbox__disabled___MSEJ_ > .FancyCheckbox__label___DTAFz {
	flex: 1;
	cursor: default;
}

.FancyCheckbox__FancyCheckbox___OjfVq > .FancyCheckbox__wrapper___doLbf {
	--active-colour: rgba(var(--theme-sel-bg-parts), 0.5);
	width: calc(var(--size) * 2 - var(--pop) * 2);
	height: calc(var(--size) - var(--pop) * 2);
	box-sizing: border-box;
	border-radius: var(--size);
	background-color: rgba(var(--theme-fg-parts), 0.05);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
	transition: all 0.2s;
	display: inline-block;
	position: relative;
	margin: var(--pop);
	overflow: hidden;
}

.FancyCheckbox__FancyCheckbox___OjfVq:focus-within > .FancyCheckbox__wrapper___doLbf {
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2),
		0 0 0 1px var(--theme-sel-bg-parts, var(--blue));
}

.FancyCheckbox__FancyCheckbox___OjfVq:focus > .FancyCheckbox__wrapper___doLbf {
	outline: none;
}

.FancyCheckbox__FancyCheckbox___OjfVq.FancyCheckbox__checked___ykkiZ > .FancyCheckbox__wrapper___doLbf {
	background-color: var(--active-colour);
}

.FancyCheckbox__FancyCheckbox___OjfVq.FancyCheckbox__disabled___MSEJ_ {
	opacity: 0.5;
	cursor: default;
}

.FancyCheckbox__FancyCheckbox___OjfVq > .FancyCheckbox__unchecked___ne38p {
	opacity: 0.5;
}

.FancyCheckbox__FancyCheckbox___OjfVq > .FancyCheckbox__wrapper___doLbf > input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.FancyCheckbox__FancyCheckbox___OjfVq > .FancyCheckbox__wrapper___doLbf > .FancyCheckbox__activeText___eri8w {
	pointer-events: none;
	text-transform: uppercase;
	color: rgba(var(--theme-sel-fg-parts), 0.8);
	font-weight: bold;
	position: absolute;
	top: 0;
	right: calc(var(--size) - 2px);
	bottom: 0;
	left: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateX(-100%);
	transition: all 0.2s;
}

.FancyCheckbox__FancyCheckbox___OjfVq.FancyCheckbox__checked___ykkiZ > .FancyCheckbox__wrapper___doLbf > .FancyCheckbox__activeText___eri8w {
	opacity: 1;
	transform: none;
}

.FancyCheckbox__FancyCheckbox___OjfVq > .FancyCheckbox__wrapper___doLbf::after {
	content: '';
	position: absolute;
	top: calc(var(--pop) * -1);
	left: calc(var(--pop) * -1);
	border-radius: 100%;
	width: var(--size);
	height: var(--size);
	background: rgb(var(--theme-sel-bg-parts));
	transition: all 0.2s;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 -1px 4px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	border: 2px solid transparent;
}

.FancyCheckbox__FancyCheckbox___OjfVq.FancyCheckbox__checked___ykkiZ > .FancyCheckbox__wrapper___doLbf::after {
	transform: translateX(var(--size));
}

.FancyCheckbox__FancyCheckbox___OjfVq:focus-within > .FancyCheckbox__wrapper___doLbf::after {
	opacity: 0.8;
}

.FavouriteButton__FavouriteButton___MqMpR {
	padding: 8px;
	transition: background 0.3s;
}

.FavouriteButton__FavouriteButton___MqMpR > svg {
	width: 16px;
	transform-origin: center;
}

@keyframes FavouriteButton__💓___iYKem {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	10% {
		transform: scale(1.2);
		opacity: 0.8;
	}
	20% {
		transform: scale(1);
		opacity: 1;
	}
	30% {
		transform: scale(1.2);
		opacity: 0.8;
	}
	40% {
		transform: scale(1);
		opacity: 1;
	}
}

.FavouriteButton__FavouriteButton___MqMpR.FavouriteButton__favourited___lQxCE > svg {
	animation-name: FavouriteButton__💓___iYKem;
	animation-duration: 1s;
	animation-iteration-count: 2;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.GradeDistribution__GradeDistribution___sEXvf {
	list-style: none;
	padding: 16px 8px;
	margin: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;

	--accent-colour: var(--container-accent, rgb(var(--theme-sel-bg-parts)));
	--accent-contrast: var(
		--container-accent-contrast,
		rgb(var(--theme-sel-fg-parts))
	);
}

.GradeDistribution__GradeDistribution___sEXvf > li {
	height: 128px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	max-width: 64px;
	margin: 0 8px;
}

.GradeDistribution__GradeDistribution___sEXvf > li > .GradeDistribution__container___YfREl {
	flex: 1;
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 0 8px;
}

.GradeDistribution__GradeDistribution___sEXvf > li > .GradeDistribution__container___YfREl > .GradeDistribution__fill___CZAOj {
	background: var(--accent-colour);
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: var(--size);
	border-radius: 2px;
	box-sizing: border-box;
}

.GradeDistribution__GradeDistribution___sEXvf > li:not(.GradeDistribution__achieved___fft8a) > .GradeDistribution__container___YfREl > .GradeDistribution__fill___CZAOj {
	opacity: 0.2;
}

.GradeDistribution__GradeDistribution___sEXvf > li > .GradeDistribution__grade___Wbwcu {
	--accent-colour: rgb(var(--container-accent-parts));
	--accent-contrast: rgb(var(--container-accent-contrast-parts));
}

@media (max-width: 800px) {
	.GradeDistribution__GradeDistribution___sEXvf {
		flex-direction: column;
		align-items: flex-start;
	}

	.GradeDistribution__GradeDistribution___sEXvf > li {
		flex-direction: row-reverse;
		max-width: none;
		width: 100%;
		margin: 0 0 16px;
		height: 64px;
	}

	.GradeDistribution__GradeDistribution___sEXvf > li > .GradeDistribution__container___YfREl {
		height: 100%;
		margin: 0 0 0 8px;
	}

	.GradeDistribution__GradeDistribution___sEXvf > li > .GradeDistribution__container___YfREl > .GradeDistribution__fill___CZAOj {
		width: var(--size);
		height: 100%;
	}
}

.GradeDistribution__GradeDistribution___sEXvf.GradeDistribution__vertical___JBRib {
	flex-direction: column;
	align-items: flex-start;
}

.GradeDistribution__GradeDistribution___sEXvf.GradeDistribution__vertical___JBRib > li {
	flex-direction: row-reverse;
	max-width: none;
	width: 100%;
	margin: 0 0 16px;
	height: 64px;
}

.GradeDistribution__GradeDistribution___sEXvf.GradeDistribution__vertical___JBRib > li > .GradeDistribution__container___YfREl {
	margin: 0 0 0 8px;
}

.GradeDistribution__GradeDistribution___sEXvf.GradeDistribution__vertical___JBRib > li > .GradeDistribution__container___YfREl > .GradeDistribution__fill___CZAOj {
	width: var(--size);
	height: 100%;
}

.MediaRecorder__MediaRecorder___lrBvr {
	background: rgb(var(--theme-bg-parts));
	max-width: 640px;
	margin: auto;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.MediaRecorder__MediaRecorder___lrBvr.MediaRecorder__noMedia___S0Zom {
	display: none;
}

.MediaRecorder__searching___LKcck {
	padding: 32px;
}

.MediaRecorder__preview___ut2L3 {
	min-height: 200px;
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.MediaRecorder__preview___ut2L3 .MediaRecorder__recording___WJjXL,
.MediaRecorder__preview___ut2L3 .MediaRecorder__ready___WCw4z {
	margin: auto;
	font-size: var(--huge-text);
	font-weight: bold;
}

.MediaRecorder__preview___ut2L3 .MediaRecorder__ready___WCw4z {
	opacity: 0.1;
}

.MediaRecorder__preview___ut2L3 audio {
	margin: auto;
}

.MediaRecorder__preview___ut2L3 video {
	margin: auto;
	-o-object-fit: contain;
	   object-fit: contain;
	max-width: 100%;
	max-height: 100%;
}

.MediaRecorder__preview___ut2L3 .MediaRecorder__buffer___DGCi4 {
	height: 4px;
	width: 100%;
	background: var(--theme-offset-bg-more);
}

@keyframes MediaRecorder__pulse___Gk4xh {
	to {
		opacity: 0.2;
	}
}

.MediaRecorder__preview___ut2L3 .MediaRecorder__buffer___DGCi4 .MediaRecorder__progress___uyG96 {
	height: 100%;
	width: 100%;
	background: rgb(var(--theme-sel-bg-parts));
	transform-origin: left;
	transition: transform 0.5s linear;
	animation-name: MediaRecorder__pulse___Gk4xh;
	animation-direction: alternate;
	animation-iteration-count: infinite;
	animation-duration: 2s;
}

.MediaRecorder__preview___ut2L3 .MediaRecorder__buffer___DGCi4.MediaRecorder__warning___dnXLV .MediaRecorder__progress___uyG96 {
	animation-duration: 1s;
}

.MediaRecorder__preview___ut2L3 .MediaRecorder__buffer___DGCi4.MediaRecorder__warning___dnXLV.MediaRecorder__dire___DW4v2 .MediaRecorder__progress___uyG96 {
	animation-duration: 0.25s;
}

.MediaRecorder__actions___ouTNo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--theme-offset-bg);
	padding: 8px;
}

.MediaRecorder__actions___ouTNo .MediaRecorder__mode___hWGfU {
	font-size: var(--small-text);
}

.MediaRecorder__actions___ouTNo .MediaRecorder__record___nxbnT {
	--size: 64px;
	position: absolute;
	right: 8px;
	bottom: 64px;
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.MediaRecorder__actions___ouTNo .MediaRecorder__record___nxbnT svg {
	width: 24px;
	height: 24px;
}

.MediaRecorder__actions___ouTNo .MediaRecorder__finalisation___g63eZ {
	display: flex;
}

.MediaRecorder__finalisation___g63eZ .MediaRecorder__download___pd2za {
	margin: 0 8px;
}

.MediaRecorder__finalisation___g63eZ .MediaRecorder__reset___yQX6l svg,
.MediaRecorder__finalisation___g63eZ .MediaRecorder__download___pd2za svg,
.MediaRecorder__finalisation___g63eZ .MediaRecorder__accept___DJcx7 svg {
	width: 16px;
	height: 16px;
}

.MediaRecorder__finalisation___g63eZ .MediaRecorder__accept___DJcx7:not([disabled]) {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.PillBox__PillBox___bMXbq {
	display: inline-flex;
	align-items: stretch;
}

.PillBox__PillBox___bMXbq > button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border-radius: 0;
}

.PillBox__PillBox___bMXbq > button:first-child {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.PillBox__PillBox___bMXbq > button:not(:first-child) {
	border-left: none;
}

.PillBox__PillBox___bMXbq > button:last-child {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.PillBox__PillBox___bMXbq > button.PillBox__active___GmI4p {
	background: rgb(var(--theme-sel-bg-parts));
	background-image: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.1),
		4px,
		transparent
	);
	color: rgb(var(--theme-sel-fg-parts));
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.Spinner__Spinner___c4Yc8 {
	position: relative;
	width: 100%;
	min-height: 32px;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.Spinner__Spinner___c4Yc8 > svg {
	width: 32px;
	height: 32px;
	display: block;
	margin: 0 auto;
}

@keyframes Spinner__progress-q___tM5Qm {
	from {
		stroke-dashoffset: 140;
	}
	to {
		stroke-dashoffset: 0;
	}
}

.Spinner__Spinner___c4Yc8 > svg > path {
	stroke-width: 1px;
	stroke: rgb(var(--theme-fg-parts));
	stroke-dasharray: 70;
	stroke-linecap: round;
	fill: transparent;

	animation-name: Spinner__progress-q___tM5Qm;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

/*
 * Copyright (c) EHG 2020
 */

.MultiSelect__MultiSelect___wWbEh {
	background: rgb(var(--theme-bg-parts));
	border-radius: 4px;
	border: 1px solid var(--theme-offset-bg);
	flex: 1;
	max-height: 256px;
}

.MultiSelect__MultiSelect___wWbEh .MultiSelect__input___gk_P0 > input {
	border: none;
}

.MultiSelect__MultiSelect___wWbEh .MultiSelect__footer___Iwa_5 {
	background: var(--theme-offset-bg);
	padding: 0 !important;
	justify-content: left !important;
	align-items: center !important;
}

.MultiSelect__MultiSelect___wWbEh .MultiSelect__footer___Iwa_5 > .MultiSelect__label___zz49n {
	flex: 1;
	font-size: var(--small-text);
	font-style: italic;
	margin: 8px;
}

.MultiSelect__MultiSelect___wWbEh .MultiSelect__footer___Iwa_5 > .MultiSelect__button___sWWJ7 {
	padding: 4px 16px;
	margin: 4px;
}

.SelectionList__SelectionList___oaomc {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.SelectionList__SelectionList___oaomc > .SelectionList__header___jwVkB {
	display: flex;
	align-items: stretch;
	border-bottom: 1px solid var(--theme-offset-bg);
}

.SelectionList__SelectionList___oaomc > .SelectionList__footer___JKarl {
	display: flex;
	align-items: stretch;
	border-top: 1px solid var(--theme-offset-bg);
	padding: 8px;
	justify-content: space-evenly;
}

.SelectionList__SelectionList___oaomc > .SelectionList__list___QE5YK {
	flex: 1;
	padding: 0;
	margin: 0;
	list-style: none;
	overflow: auto;
	display: flex;
	flex-direction: column;
}

.SelectionList__SelectionListItem___D5Tzw {
	position: relative;
	border-bottom: 1px solid var(--theme-offset-bg);
	padding: 8px 16px;
	cursor: pointer;
	transition: background 0.1s;
	word-break: break-word;
}

.SelectionList__SelectionListItem___D5Tzw:hover {
	background-color: var(--theme-offset-bg);
}

.SelectionList__SelectionListItem___D5Tzw.SelectionList__selected___ETgFA {
	background-color: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.SelectionList__SelectionListItem___D5Tzw > .SelectionList__title___pg0Uj {
	font-size: var(--large-text);
	overflow-wrap: break-word;
	padding-right: 24px;
}

.SelectionList__SelectionListItem___D5Tzw > .SelectionList__marker___KylpB {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	border: 8px solid transparent;
	pointer-events: none;
}

.SelectionList__SelectionListItem___D5Tzw > .SelectionList__action___HqrYb {
	position: absolute;
	top: 8px;
	right: 8px;
	color: inherit;
}

.SelectionList__SelectionListItem___D5Tzw > .SelectionList__action___HqrYb[disabled] {
}

.SelectionList__SelectionListItem___D5Tzw > .SelectionList__action___HqrYb > svg {
	width: 16px;
	height: 16px;
}

.SelectionList__SelectionListItem___D5Tzw.SelectionList__dirty___tlju4 {
	font-style: italic;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.SplitButton__SplitButton___hDKZt {
	display: flex;
	align-items: stretch;
	--radius: 24px;
}

.SplitButton__SplitButton___hDKZt > button:enabled,
.SplitButton__SplitButton___hDKZt > button[disabled] {
	background: rgba(var(--theme-fg-parts), 0.1);
	padding: 4px;
	min-width: 24px;
	margin: 0;
	border: none;
	border-radius: var(--radius) 0 0 var(--radius);
	padding-right: 0;
	flex: 2;
}

.SplitButton__SplitButton___hDKZt > .SplitButton__menu___o8PNg {
	flex: 1;
	display: flex;
}

.SplitButton__SplitButton___hDKZt > .SplitButton__menu___o8PNg > button {
	background: rgba(var(--theme-fg-parts), 0.25);
	padding: 4px 4px 4px 0;
	min-width: 24px;
	border: none;
	margin: 0;
	border-radius: 0 var(--radius) var(--radius) 0;
	flex: 1;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.SidebarPage__SidebarPage___HEWl3 {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;

	padding: 0;
	transition: padding 0s 0.2s;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__sidebar-left___QVo3S {
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__sidebar-right___mtmcy {
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__collapsed___SH0U_ {
	padding: 0;
	transition: padding 0s;
}

.SidebarPage__SidebarPage___HEWl3 > .SidebarPage__sidebar___fG08i {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	overflow: visible;
	width: 256px;
	transition: transform 0.2s;
	display: flex;
	flex-direction: column;
	background: rgb(var(--theme-bg-parts));
	z-index: 2;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__collapsed___SH0U_ > .SidebarPage__sidebar___fG08i {
	transform: translateX(-256px);
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__sidebar-right___mtmcy > .SidebarPage__sidebar___fG08i {
	left: auto;
	right: 0;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__sidebar-right___mtmcy.SidebarPage__collapsed___SH0U_ > .SidebarPage__sidebar___fG08i {
	transform: translateX(256px);
}

/* 50% wide sidebar */
.SidebarPage__SidebarPage___HEWl3.SidebarPage__half___r3RPq > .SidebarPage__sidebar___fG08i {
	width: 50%;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__half___r3RPq.SidebarPage__collapsed___SH0U_ > .SidebarPage__sidebar___fG08i {
	transform: translateX(-100%);
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__half___r3RPq.SidebarPage__sidebar-right___mtmcy.SidebarPage__collapsed___SH0U_ > .SidebarPage__sidebar___fG08i {
	transform: translateX(100%);
}

.SidebarPage__SidebarPage___HEWl3 > .SidebarPage__main___h9E40 {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__fixedWidth___XtnDH > .SidebarPage__main___h9E40 {
	position: absolute;
	left: 256px;
	width: calc(100% - 256px);
	box-sizing: border-box;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__fixedWidth___XtnDH.SidebarPage__collapsed___SH0U_ > .SidebarPage__main___h9E40 {
	left: 0;
	width: 100%;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__fixedWidth___XtnDH.SidebarPage__sidebar-right___mtmcy > .SidebarPage__main___h9E40 {
	left: 0;
	right: 256px;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__fixedWidth___XtnDH.SidebarPage__sidebar-right___mtmcy.SidebarPage__collapsed___SH0U_ > .SidebarPage__main___h9E40 {
	right: 0;
}

.SidebarPage__SidebarPage___HEWl3 > .SidebarPage__separator___hJYxU {
	width: 6px;
	background: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent);
	background: linear-gradient(to left, rgba(0, 0, 0, 0.4), 30%, transparent);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 256px;
	transition: transform 0.2s, left 0.2s, right 0.2s;
	z-index: 2;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__sidebar-left___QVo3S > .SidebarPage__separator___hJYxU {
	background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.4), 30%, transparent);
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__collapsed___SH0U_ > .SidebarPage__separator___hJYxU {
	transform: translateX(-256px);
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__half___r3RPq > .SidebarPage__separator___hJYxU {
	left: 50%;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__half___r3RPq.SidebarPage__collapsed___SH0U_ > .SidebarPage__separator___hJYxU {
	left: 256px;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__sidebar-right___mtmcy > .SidebarPage__separator___hJYxU {
	left: auto;
	right: 256px;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__sidebar-right___mtmcy.SidebarPage__collapsed___SH0U_ > .SidebarPage__separator___hJYxU {
	transform: translateX(256px);
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__half___r3RPq.SidebarPage__sidebar-right___mtmcy > .SidebarPage__separator___hJYxU {
	right: 50%;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__half___r3RPq.SidebarPage__sidebar-right___mtmcy.SidebarPage__collapsed___SH0U_ > .SidebarPage__separator___hJYxU {
	right: 0;
	left: auto;
	transform: translateX(100%);
}

.SidebarPage__SidebarPage___HEWl3 > .SidebarPage__separator___hJYxU > .SidebarPage__toggle___XvZjm {
	--size: 32px;
	background: var(--theme-button-bg);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--size);
	height: var(--size);
	border-radius: 100%;
	position: absolute;
	top: 8px;
	left: -12px;
	z-index: 1;
	border: none;
	transition: left 0.2s 0.4s, border-radius 0.2s 0.4s;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__collapsed___SH0U_ > .SidebarPage__separator___hJYxU > .SidebarPage__toggle___XvZjm {
	left: 0;
	border-radius: 0 100% 100% 0;
	transition: left 0.2s 0.4s, border-radius 0.2s;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__sidebar-right___mtmcy.SidebarPage__collapsed___SH0U_ > .SidebarPage__separator___hJYxU > .SidebarPage__toggle___XvZjm {
	left: -32px;
	border-radius: 100% 0 0 100%;
}

.SidebarPage__SidebarPage___HEWl3 > .SidebarPage__separator___hJYxU > .SidebarPage__toggle___XvZjm > svg {
	transition: transform 0.2s 0.4s;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__collapsed___SH0U_ > .SidebarPage__separator___hJYxU > .SidebarPage__toggle___XvZjm > svg {
	transform: rotate(180deg);
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__sidebar-right___mtmcy > .SidebarPage__separator___hJYxU > label {
	position: absolute;
	height: 32px;
	width: 64px;
	left: -58px;
	top: 8px;
	box-sizing: border-box;
	padding: 8px;
	text-align: center;
	background: var(--theme-button-bg);
	color: var(--theme-button-fg);
	text-overflow: ellipsis;
	transition: left 0.2s 0.4s;
	transform: translateX(0);
	cursor: pointer;
	overflow: hidden;
	white-space: nowrap;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__sidebar-right___mtmcy.SidebarPage__collapsed___SH0U_ > .SidebarPage__separator___hJYxU > .SidebarPage__toggle___XvZjm.SidebarPage__toggleWithText___iOoGi {
	left: -90px;
}

.SidebarPage__SidebarPage___HEWl3.SidebarPage__sidebar-right___mtmcy > .SidebarPage__separator___hJYxU > .SidebarPage__toggle___XvZjm.SidebarPage__toggleWithText___iOoGi {
	box-shadow: none !important;
	border-radius: 100% 0 0 100%;
	left: -90px;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.Navigator__Navigator___K8XB5 {
	max-height: 33px;
	display: flex;
	align-items: stretch;
	margin: 8px;
	width: calc(100% - 16px);
}

@media (max-height: 800px) {
	.Navigator__Navigator___K8XB5 {
		max-height: 32px;
		margin: 4px;
	}
}

.Navigator__Navigator___K8XB5 > button:first-child,
.Navigator__Navigator___K8XB5 > button:last-child {
	border-radius: 32px;
	padding: 4px;
	width: 36px;
	align-items: center;
	justify-content: center;
}

.Navigator__Navigator___K8XB5 > button:first-child {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	margin: 0;
}

.Navigator__Navigator___K8XB5 > button:last-child {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-left: none;
	margin: 0;
}

.Navigator__Navigator___K8XB5 > .Navigator__picker___VzxF0 {
	background: none;
	display: flex;
	align-items: stretch;
}

.Navigator__Navigator___K8XB5 > .Navigator__picker___VzxF0 > button {
	border-radius: 0;
	margin: 0;
	border-left: none;
	padding: 8px 24px;
}

.Navigator__Navigator___K8XB5 > .Navigator__avatarContainer___hPRBi {
	display: flex;
	align-items: center;
	justify-content: center;
	border-top: 1px solid
		var(--theme-button-border, rgba(var(--theme-fg-parts), 0.1));
	border-bottom: 1px solid
		var(--theme-button-border, rgba(var(--theme-fg-parts), 0.1));
	border-top-color: var(
		--theme-button-border,
		rgba(var(--theme-fg-parts), 0.1)
	); /* Workaround for Safari bug -- https://codepen.io/finnhvman/post/theming-with-css-variables-in-rgba#browser-support-4 */
	border-bottom-color: var(
		--theme-button-border,
		rgba(var(--theme-fg-parts), 0.1)
	); /* Workaround for Safari bug -- https://codepen.io/finnhvman/post/theming-with-css-variables-in-rgba#browser-support-4 */
	width: 64px;
	position: relative;
}

.Navigator__Navigator___K8XB5 > .Navigator__avatarContainer___hPRBi > div {
	position: absolute;
}

.Navigator__Navigator___K8XB5 > .Navigator__avatarContainer___hPRBi > .Navigator__avatar___hkDXq {
	align-self: center;
	flex-shrink: 0;
}

.Navigator__Navigator___K8XB5 > .Navigator__holdMenu___Ogug5 {
	display: flex;
}

.Navigator__Navigator___K8XB5 > .Navigator__holdMenu___Ogug5 > button {
	border-left: none;
	border-radius: 0;
	padding: 4px 8px;
	margin: 0;
}

.Navigator__Navigator___K8XB5 > .Navigator__holdMenu___Ogug5 > button > span {
	display: none;
}

.NotificationList__NotificationList___UnQbW {
	text-shadow: none;
}

.NotificationList__NotificationList___UnQbW > ol {
	list-style: none;
	padding: 0;
	margin: 0;
	max-height: 50vh;
	overflow: auto;
}

.NotificationList__NotificationList___UnQbW > ol > li {
	border-top: 1px solid var(--theme-offset-bg);
	overflow: hidden;
}

.NotificationList__NotificationList___UnQbW > ol > li:hover {
	background: var(--theme-offset-bg);
}

.NotificationList__NotificationList___UnQbW > ol > li.NotificationList__read___EGUE4 {
	opacity: 0.2;
}

.NotificationList__NotificationList___UnQbW > ol > li.NotificationList__unread___hd_Kg {
	box-shadow: inset 8px 0 0 var(--yellow);
}

.NotificationList__NotificationList___UnQbW > ol > li.NotificationList__failed___eG4ZB {
	color: var(--orange);
}

.NotificationList__NotificationList___UnQbW > ol > li > a {
	text-decoration: none;
	color: inherit;
	display: block;
	padding: 0;
}

.NotificationList__NotificationList___UnQbW > ol > li > a:hover {
	background: none;
}

.NotificationList__NotificationList___UnQbW > ol.NotificationList__exiting___ub1DL {
	height: 0;
}

.NotificationList__notification___F3dp4 {
	display: flex;
	align-items: flex-start;
	padding: 8px 8px 8px 16px;
	animation-name: NotificationList__notification-entering___SFvsY;
	animation-duration: 300ms;
}

.NotificationList__notification___F3dp4 > svg {
	opacity: 0.5;
}

.NotificationList__notification___F3dp4 > .NotificationList__details___FYPRj {
	flex: 1;
	margin: 0 8px;
}

.NotificationList__notification___F3dp4 > .NotificationList__details___FYPRj > .NotificationList__title___j4j1F {
	font-weight: bold;
}

.NotificationList__notification___F3dp4 > .NotificationList__details___FYPRj > .NotificationList__description___RsAoX {
}

.NotificationList__notification___F3dp4 > .NotificationList__details___FYPRj > .NotificationList__date___CLZip {
	opacity: 0.5;
	font-size: var(--small-text);
}

.NotificationList__notification___F3dp4 > button > svg {
	width: 16px;
}

li.NotificationList__exiting___ub1DL .NotificationList__notification___F3dp4 {
	animation-name: NotificationList__notification-exiting___ciMoK;
	animation-duration: 0.3s;
}

@keyframes NotificationList__notification-entering___SFvsY {
	0% {
		opacity: 0;
		transform: translateX(300px);
	}

	100% {
		opacity: 1;
		transform: none;
	}
}

@keyframes NotificationList__notification-exiting___ciMoK {
	0% {
		opacity: 1;
		transform: none;
	}

	100% {
		opacity: 0;
		transform: translateX(300px);
	}
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2018.
 *  
 * Created by huili on 2018-08-01
 */

.PopupDialog__PopupDialog___Hk5TZ {
	z-index: 10;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	animation-name: PopupDialog__dialog-appear___aE5h6;
	animation-duration: 0.4s;
}

.PopupDialog__PopupDialog___Hk5TZ.PopupDialog__hide___pY7LO {
	animation-name: PopupDialog__dialog-disappear___Y3DKV;
	animation-duration: 0.3s;
}

.PopupDialog__dialog___RaJcl {
	background: rgb(var(--theme-bg-parts));
	width: 500px;
	margin: 32px auto;
	border-radius: 4px;
	box-shadow: 0 0 16px rgba(var(--theme-fg-parts), 0.5);
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	transition: width 0.2s, height 0.2s;
	max-height: calc(100vh - 64px);
}

.PopupDialog__dialog___RaJcl.PopupDialog__wide___CwinD {
	width: 1200px;
}

.PopupDialog__dialog___RaJcl.PopupDialog__full___SUeDU {
	width: calc(100% - 64px);
}

.PopupDialog__dialog___RaJcl.PopupDialog__tall___I1zRr {
	height: calc(100% - 64px);
}

.PopupDialog__dialog___RaJcl > .PopupDialog__header___UF3sl {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px;
	background: rgba(var(--theme-fg-parts), 0.04);
}

.PopupDialog__dialog___RaJcl > .PopupDialog__header___UF3sl > .PopupDialog__title___WqzRg {
	flex: 1;
	font-size: var(--large-text);
	padding: 0 16px;
	justify-content: center;
	text-align: center;
}

.PopupDialog__dialog___RaJcl > .PopupDialog__header___UF3sl > .PopupDialog__expander___ZmqBv {
	margin: 0 8px 0 0;
	--size: 40px;
}

.PopupDialog__dialog___RaJcl > .PopupDialog__header___UF3sl div > button:nth-child(2) {
	margin-left: 6px;
}

.PopupDialog__dialog___RaJcl > .PopupDialog__header___UF3sl div {
	display: flex;
}

.PopupDialog__dialog___RaJcl > .PopupDialog__header___UF3sl > .PopupDialog__alpha___VR24n,
.PopupDialog__dialog___RaJcl > .PopupDialog__header___UF3sl > .PopupDialog__beta____b1Tq {
	min-width: 48px;
}

.PopupDialog__dialog___RaJcl > .PopupDialog__content___yAKJk {
	flex: 1;
	width: 100%;
	min-height: 0;
	overflow: auto;
}

@keyframes PopupDialog__dialog-appear___aE5h6 {
	0% {
		opacity: 0;
		transform: translateY(108px);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

@keyframes PopupDialog__dialog-disappear___Y3DKV {
	0% {
		opacity: 1;
		transform: none;
	}

	100% {
		opacity: 0;
		transform: translateY(108px);
	}
}

@media (max-width: 1264px) {
	.PopupDialog__dialog___RaJcl.PopupDialog__wide___CwinD {
		width: calc(100% - 64px);
	}
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.ProfileMenu__ProfileMenu___d4v98 {
	position: relative;
	display: inline-block;
	--size: 48px;
}

.ProfileMenu__ProfileMenu___d4v98 > button {
	padding: 0;
	box-shadow: none;
}

@keyframes ProfileMenu__profile-menu-appear___x9U_A {
	0% {
		opacity: 0;
		transform: translateY(-8px);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

.ProfileMenu__ProfileMenu___d4v98 > .ProfileMenu__panel___nUZZQ {
	position: absolute;
	background: rgb(var(--theme-bg-parts));
	list-style: none;
	padding: 0;
	top: 100%;
	right: 0;
	color: rgb(var(--theme-fg-parts));
	border-radius: 2px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	width: 320px;
	overflow: hidden;
	z-index: 10;
	animation-name: ProfileMenu__profile-menu-appear___x9U_A;
	animation-duration: 0.2s;
	animation-iteration-count: 1;
	text-shadow: none;
}

.ProfileMenu__ProfileMenu___d4v98 > .ProfileMenu__panel___nUZZQ > .ProfileMenu__meta___N64Zn,
.ProfileMenu__ProfileMenu___d4v98 > .ProfileMenu__panel___nUZZQ > .ProfileMenu__actions___cgoh7 {
	display: flex;
}

.ProfileMenu__ProfileMenu___d4v98 > .ProfileMenu__panel___nUZZQ > .ProfileMenu__actions___cgoh7 {
	border-top: 1px solid var(--theme-offset-bg);
}

.ProfileMenu__ProfileMenu___d4v98 > .ProfileMenu__panel___nUZZQ > .ProfileMenu__meta___N64Zn > a,
.ProfileMenu__ProfileMenu___d4v98 > .ProfileMenu__panel___nUZZQ > .ProfileMenu__actions___cgoh7 > button {
	margin: 8px;
	flex: 1;
	align-items: center;
	justify-content: center;
}

.ProfileMenu__ProfileMenu___d4v98 > .ProfileMenu__panel___nUZZQ > .ProfileMenu__meta___N64Zn > a {
	text-decoration: none;
	border: 1px solid var(--theme-offset-bg);
	border-radius: 4px;
	padding: 16px 8px;
	text-transform: uppercase;
	font-weight: bold;
	display: flex;
}

.ProfileMenu__ProfileMenu___d4v98 > .ProfileMenu__panel___nUZZQ > .ProfileMenu__actions___cgoh7 > button:first-child:not(:only-child) {
	margin-right: 4px;
}

.ProfileMenu__ProfileMenu___d4v98 > .ProfileMenu__panel___nUZZQ > .ProfileMenu__actions___cgoh7 > button:last-child:not(:only-child) {
	margin-left: 4px;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.ResourceList__ResourceList___hUysi {
}

.ResourceList__ResourceItem___voTSd.ResourceList__deleted___FHmgW {
	opacity: 0.5;
	cursor: default;
	font-style: italic;
}

.ResourceList__ResourceItem___voTSd.ResourceList__deleted___FHmgW > *:not(.ResourceList__remove___sPYJB) {
	opacity: 0.5;
}

.ResourceList__ResourceItem___voTSd.ResourceList__file___BY4uU > .ResourceList__thumb___qTHVC {
	width: 32px;
	height: 32px;
	background-size: cover;
	background-position: center;
	border-radius: 2px;
}

.ResourceList__ResourceItem___voTSd.ResourceList__file___BY4uU > svg {
	padding: 4px;
}

.ResourceList__ResourceItem___voTSd.ResourceList__file___BY4uU > .ResourceList__filetype___rZFKE {
	margin-left: 8px;
}

.ResourceList__ResourceItem___voTSd.ResourceList__rightPadding___Me3kE {
	padding-right: 40px;
}

.ResourceList__ResourceItem___voTSd > .ResourceList__name___ydvDT {
	flex: 1;
	margin: 0 8px;
	word-break: break-word;
}

.ResourceList__ResourceItem___voTSd > .ResourceList__name___ydvDT > .ResourceList__pending___xSrUg {
	margin-left: 8px;
	font-size: var(--small-text);
	opacity: 0.4;
	display: inline-block;
}

.ResourceList__ResourceItem___voTSd.ResourceList__webLink___VBd35 > .ResourceList__name___ydvDT,
.ResourceList__ResourceItem___voTSd.ResourceList__text___wLCOh > .ResourceList__name___ydvDT {
	margin-left: 40px;
}

/******************************/
/* Resource List Insert Popup */
/******************************/

.ResourceList__ResourceListInsertPopup___RePwv {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ResourceList__ResourceListInsertPopup___RePwv > .ResourceList__textName___lNZbG {
	padding: 16px;
	border-bottom: 1px solid rgb(var(--theme-offset-bg-more));
	background: var(--theme-offset-bg);
	display: flex;
	width: 100%;
	box-sizing: border-box;
}

.ResourceList__ResourceListInsertPopup___RePwv > .ResourceList__webLink___VBd35 {
	display: flex;
	padding: 0 16px 16px;
	width: 100%;
	box-sizing: border-box;
}

.ResourceList__ResourceListInsertPopup___RePwv > .ResourceList__textName___lNZbG > span,
.ResourceList__ResourceListInsertPopup___RePwv > .ResourceList__webLink___VBd35 > span {
	padding-right: 16px;
}

.ResourceList__ResourceListInsertPopup___RePwv > .ResourceList__textName___lNZbG > label,
.ResourceList__ResourceListInsertPopup___RePwv > .ResourceList__webLink___VBd35 > label {
	flex: 1;
}

.ResourceList__ResourceListInsertPopup___RePwv > .ResourceList__pillBox___F5RfL {
	margin: 16px 0;
}

.ResourceList__ResourceListInsertPopup___RePwv > .ResourceList__fileName___KL0gT {
	text-align: center;
	padding: 8px 0 16px;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.FileDropzone__FileDropzone___idSN5 {
	border: 2px dashed transparent;
	margin: 8px;
	padding: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	background: rgba(var(--theme-bg-parts), 0.8);
	transition: background 0.3s, border 0.3s;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.FileDropzone__FileDropzone___idSN5 > button {
	border: none;
}

.FileDropzone__FileDropzone___idSN5 > .FileDropzone__dropzone___H5Z9B {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: border 0.3s, color 0.3s;
}

.FileDropzone__FileDropzone___idSN5.FileDropzone__dragging___h3HZ1 {
	border-color: var(--green);
	background: var(--green);
	background-image: linear-gradient(
		to top,
		rgba(var(--theme-bg-parts), 0.9),
		rgb(var(--theme-bg-parts), 0.9)
	);
}

.FileDropzone__FileDropzone___idSN5.FileDropzone__dragging___h3HZ1 > .FileDropzone__dropzone___H5Z9B {
	border-color: var(--green);
	color: var(--green);
	background: rgb(var(--theme-bg-parts));
}

.FileDropzone__FileDropzone___idSN5 input.FileDropzone__hidden___JWfJA {
	display: none;
}

.FileDropzone__FileDropzone___idSN5 .FileDropzone__tip___qfUBC {
	margin: 16px 0 0;
}

.FileDropzone__FileDropzone___idSN5 .FileDropzone__message___oJdu5 {
	margin: 4px 8px;
	font-size: var(--small-text);
	text-align: center;
}

.FileDropzone__FileDropzone___idSN5 .FileDropzone__message___oJdu5 > h4 {
	margin: 2px 0;
}

.FileDropzone__FileDropzone___idSN5 .FileDropzone__message___oJdu5 > div {
	margin: 2px 0;
	border-top: 1px solid var(--theme-offset-bg);
}

.FileDropzone__FileDropzone___idSN5 .FileDropzone__message___oJdu5.FileDropzone__filenames___fzUgX {
}

.FileDropzone__FileDropzone___idSN5 .FileDropzone__message___oJdu5.FileDropzone__errors___OYNh2 {
	color: var(--orange);
	font-weight: bold;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.Rubric__Rubric___RP3Xm {
	overflow-x: auto;
	border: 1px solid var(--theme-offset-bg-more);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background-color: var(--theme-offset-bg);
	background-image: url("data:image/svg+xml,%3Csvg width=%276%27 height=%276%27 viewBox=%270 0 6 6%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27%23000000%27 fill-opacity=%270.1%27 fill-rule=%27evenodd%27%3E%3Cpath d=%27M5 0h1L0 6V5zM6 5v1H5z%27/%3E%3C/g%3E%3C/svg%3E");
}

.Rubric__Rubric___RP3Xm > .Rubric__line___t6sgz {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	border-bottom: 1px solid var(--theme-offset-bg-more);
	background: rgb(var(--theme-bg-parts));
	min-width: 100%;
}

.Rubric__Rubric___RP3Xm > .Rubric__line___t6sgz:last-child {
	border-bottom: none;
}

.Rubric__Rubric___RP3Xm > .Rubric__line___t6sgz > li {
	display: flex;
	flex-direction: column;
	padding: 4px;
	box-sizing: border-box;
	flex-shrink: 0;
	max-height: 10rem;
}

.Rubric__Rubric___RP3Xm > .Rubric__line___t6sgz > li {
	overflow: auto;
}

.Rubric__Rubric___RP3Xm > .Rubric__line___t6sgz > .Rubric__meta___YgHm5 {
	background: var(--theme-offset-bg);
	width: 160px;
	flex-shrink: 0;
}

.Rubric__Rubric___RP3Xm > .Rubric__line___t6sgz > .Rubric__meta___YgHm5 > .Rubric__label___JkwGT {
	font-weight: bold;
	word-wrap: break-word;
}

.Rubric__Rubric___RP3Xm > .Rubric__line___t6sgz > .Rubric__meta___YgHm5 > .Rubric__description___T_YXz {
	margin: 4px 0;
	font-size: var(--small-text);
	word-wrap: break-word;
	opacity: 0.8;
	white-space: pre-wrap;
}

.Rubric__Rubric___RP3Xm > .Rubric__line___t6sgz > .Rubric__meta___YgHm5 > .Rubric__weight___kwOFI {
	font-size: var(--small-text);
	opacity: 0.5;
}

.Rubric__Rubric___RP3Xm > .Rubric__line___t6sgz > .Rubric__descriptor___m9Fgs {
	font-size: var(--small-text);
	flex: 1;
	position: relative;
	color: rgba(var(--theme-fg-parts), 0.8);
	border-left: 1px solid var(--theme-offset-bg);
	word-wrap: break-word;
	min-width: 128px;
	white-space: pre-wrap;
}

.Rubric__Rubric___RP3Xm > .Rubric__line___t6sgz.Rubric__editable___sXwG9 > .Rubric__descriptor___m9Fgs {
	cursor: pointer;
}

.Rubric__Rubric___RP3Xm > .Rubric__line___t6sgz.Rubric__editable___sXwG9 > .Rubric__descriptor___m9Fgs:hover {
	background: var(--theme-offset-bg);
}

.Rubric__Rubric___RP3Xm > .Rubric__line___t6sgz > .Rubric__descriptor___m9Fgs.Rubric__selected___Px60U,
.Rubric__Rubric___RP3Xm > .Rubric__line___t6sgz > .Rubric__descriptor___m9Fgs.Rubric__selected___Px60U:hover {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
	box-sizing: border-box;
}

.Rubric__Rubric___RP3Xm > .Rubric__line___t6sgz > .Rubric__descriptor___m9Fgs > .Rubric__points___YJYpd {
	position: absolute;
	right: 4px;
	bottom: 4px;
	opacity: 0.5;
	font-weight: bold;
	align-self: flex-end;
}

.Rubric__Rubric___RP3Xm > .Rubric__line___t6sgz > .Rubric__descriptor___m9Fgs.Rubric__selected___Px60U > .Rubric__points___YJYpd {
	opacity: 1;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.SectionedBar__SectionedBar___DAabi {
	--size: 2em;
	height: var(--size);
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
	border-radius: var(--size);
	overflow: hidden;
}

.SectionedBar__SectionedBar___DAabi::after {
	content: '';
	pointer-events: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
	border-radius: var(--size);
}

.SectionedBar__SectionedBar___DAabi > li {
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	text-shadow: 0 1px rgba(0, 0, 0, 0.1);
	border-bottom: none !important; /* yuk */
	border-right: 1px solid rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	padding: 0 4px;
}

.SectionedBar__SectionedBar___DAabi > li > span {
	flex: 1;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	color: #fff;
	font-weight: bold;
}

.SectionedBar__SectionedBar___DAabi > li:last-child {
	border-right: none;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.SentimentRating__SentimentRating___tCrHV {
	display: flex;
	align-items: center;
	justify-content: center;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by huili on 2019-07-12
 */

.Rating__Rating___wXOBC {
	color: rgba(var(--theme-fg-parts), 0.2);
	cursor: pointer;
	transition: filter 0.2s, color 0.2s, transform 0.2s;
	padding: 0 8px;
	--selected-colour: var(
		--rating-accent-colour,
		rgb(var(--theme-sel-bg-parts))
	);
}

.Rating__Rating___wXOBC.Rating__disabled___Wzchb {
	cursor: auto;
}

.Rating__Rating___wXOBC.Rating__selected___LAfbY {
	color: var(--selected-colour);
	transform: scale(1.5);
}

.Rating__Rating___wXOBC.Rating__disabled___Wzchb.Rating__selected___LAfbY {
	transform: none;
}

.Rating__Rating___wXOBC.Rating__hovered___pS0eW {
	color: var(--selected-colour);
	filter: drop-shadow(0 0 4px currentColor);
	transform: scale(1.5);
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.StarRating__StarRating___e9f07 {
	display: flex;
	align-items: center;
	justify-content: center;
}

.StarRating__StarRating___e9f07 > .StarRating__rating___zPe8V {
	--rating-accent-colour: var(--yellow);
}

.SyllabusCard__SyllabusItem___sg_bV {
	background: var(--theme-offset-bg);
	border-radius: 2px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	padding: 16px;
}

.SyllabusCard__code___LIQTa {
	font-size: var(--small-text);
	opacity: 0.5;
}

.SyllabusCard__area___MPGaB {
	margin: 8px 0;
}

.SyllabusCard__set___yOjMg {
	text-transform: uppercase;
	font-size: var(--small-text);
	opacity: 0.5;
}

.SyllabusCard__name___jbzXX {
	text-transform: uppercase;
	font-size: var(--small-text);
	font-weight: bold;
}

.SyllabusCard__details___NCTxI {
	margin: 8px 0 0;
	border-top: 1px solid var(--theme-offset-bg);
	padding: 8px 0 0;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.TagList__TagList___HoGg9 {
	width: 100%;
	box-sizing: border-box;
	display: flex;
}

.TagList__TagList___HoGg9 > label {
	width: 80px;
}

.TagList__TagList___HoGg9 > ul {
	list-style: none;
	padding: 2px;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	font-size: var(--small-text);
	align-self: start;
	width: 100%;
	position: relative;
}

.TagList__TagList___HoGg9 > ul.TagList__editable___cE4Rn {
	background: rgb(var(--theme-bg-parts));
	border-radius: 8px;
	max-height: 128px;
	overflow: auto;
}

.TagList__TagList___HoGg9 > ul > li {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	border: 1px solid var(--theme-offset-bg);
	border-radius: 4px;
	text-transform: uppercase;
	font-weight: bold;
	padding: 0;
	margin: 2px;
}

.TagList__TagList___HoGg9 > ul > li > i {
	margin: 2px 4px;
}

.TagList__TagList___HoGg9 > ul > li > span {
	padding: 4px;
	white-space: nowrap;
	max-width: 128px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.TagList__TagList___HoGg9 > ul > li .TagList__remove___lFCbP {
	padding: 4px;
	border: none;
	color: inherit;
	align-self: stretch;
}

.TagList__TagList___HoGg9 > ul > li .TagList__remove___lFCbP > svg {
	width: 16px;
	height: 16px;
	opacity: 0.5;
}

/* Styles for editable TagList */

.TagList__TagList___HoGg9 > ul.TagList__editable___cE4Rn > li.TagList__tagInput____jJDA {
	border: none;
	flex-grow: 1;
	max-width: 12em;
	min-width: 8em;
}

.TagList__TagList___HoGg9 > ul.TagList__editable___cE4Rn > li.TagList__tagInput____jJDA input {
	padding: 6px 8px;
	text-transform: uppercase;
	font-weight: bold;
	font-size: var(--small-text);
}

.TagList__TagList___HoGg9 > ul.TagList__editable___cE4Rn + .TagList__addButton___TuQh6 {
	padding: 4px;
	margin: 2px;
}

.TagList__TagList___HoGg9 > ul.TagList__editable___cE4Rn + .TagList__addButton___TuQh6 > svg {
	width: 16px;
	height: 16px;
}

/* - - - - - specialisation : YEAR - - - - - */
.TagList__TagList___HoGg9 i.TagList__year___OXNxt,
.TagList__TagList___HoGg9 i.TagList__department___UBh8R {
	color: white;
	border-radius: 2px;
	padding: 2px 4px;
	font-style: normal;
	background: var(--navy);
}

.TagList__TagList___HoGg9 li.TagList__year___OXNxt {
	border: 1px solid var(--blue);
}

.TagList__TagList___HoGg9 i.TagList__year___OXNxt {
	background: var(--blue);
}

/* - - - - - specialisation : DEPARTMENT - - - - - */
.TagList__TagList___HoGg9 li.TagList__department___UBh8R {
	border: 1px solid var(--green);
}

.TagList__TagList___HoGg9 i.TagList__department___UBh8R {
	background: var(--green);
}

/* - - - - - specialisation : DEFAULT (NONE) - - - - - */
.TagList__TagList___HoGg9 i.TagList__default___UfiwE {
	border: none;
	opacity: 0.4;
}

/*
 * Copyright (c) SEQTA Software 2019.
 */

.Textarea__Textarea___HYtMY {
	display: flex;
	align-items: stretch;
	width: 100%;
	box-sizing: border-box;
}

.Textarea__Textarea___HYtMY > .Textarea__label___SPAMF {
	flex: 1;
	margin: 0 8px 0 0;
}

.Textarea__Textarea___HYtMY > textarea {
	color: rgb(var(--theme-fg-parts));
	background: rgb(var(--theme-bg-parts));
	border-radius: 4px;
	border: 1px solid rgba(var(--theme-fg-parts), 0.1);
	padding: 8px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	display: block;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

.Textarea__Textarea___HYtMY > textarea:focus {
	border: 1px solid rgb(var(--theme-sel-bg-parts));
	outline: none;
}

.Textarea__Textarea___HYtMY > textarea[disabled] {
	opacity: 0.5;
}

.Textarea__Textarea___HYtMY > textarea:invalid {
	border: 1px dashed var(--orange);
}

.Textarea__Textarea___HYtMY > textarea::-moz-placeholder {
	color: rgba(var(--theme-fg-parts), 0.5);
}

.Textarea__Textarea___HYtMY > textarea::placeholder {
	color: rgba(var(--theme-fg-parts), 0.5);
}

.WarningMessage__WarningMessage___weOGK {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	background: rgba(255, 255, 191, 0.8);
	border-color: red;
	border-style: solid;
	border-width: 1px 1px 1px 2px;
	border-radius: 4px;
	padding: 8px;
	font-size: var(--small-text);
	margin: 8px;
	width: 95%;
	z-index: 10; /* the position of the layer */
	position: relative;
}

.WarningMessage__WarningMessage___weOGK h1 {
	font-size: 1.3em;
	margin: 0;
	padding: 0;
	color: rgb(var(--theme-fg-parts));
	background-color: transparent;
}

.WarningMessage__WarningMessage___weOGK p {
	font-size: 1em;
	margin: 0.5em 0.3em 0.3em 0.3em;
	font-weight: normal;
	color: rgb(var(--theme-fg-parts));
}

.WarningMessage__WarningMessage___weOGK .WarningMessage__closeButton___c_8nA {
	position: absolute;
	right: 8px;
	top: 8px;
	background: none;
	border: none;
	font-size: 1em;
	cursor: pointer;
	transition: transform 0.2s;
	font-weight: bold;
	color: rgb(var(--theme-fg-parts));
}

.WarningMessage__WarningMessage___weOGK .WarningMessage__closeButton___c_8nA:hover {
	transform: scale(1.2);
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.Accordion__Accordion___JS3sw {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.Accordion__Accordion___JS3sw > .Accordion__bar___QUWWi {
	display: flex;
	flex-direction: column;
	transition: flex 0.2s;
}

.Accordion__Accordion___JS3sw > .Accordion__bar___QUWWi.Accordion__active___ECFtz {
	flex: 1;
}

.Accordion__Accordion___JS3sw > .Accordion__bar___QUWWi > .Accordion__header___YUmKs {
	background: rgba(var(--theme-bg-parts), 0.5);
	border-top: 1px solid var(--theme-offset-bg);
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.Accordion__Accordion___JS3sw > .Accordion__bar___QUWWi > .Accordion__header___YUmKs > h2 {
	padding: 8px;
	margin: 0;
	text-transform: uppercase;
}

.Accordion__Accordion___JS3sw > .Accordion__bar___QUWWi > .Accordion__header___YUmKs > button {
	padding: 4px;
	border: none;
	border-radius: 100%;
}

.Accordion__Accordion___JS3sw > .Accordion__bar___QUWWi > .Accordion__header___YUmKs > button > svg {
	transition: transform 0.2s 0.4s;
}

.Accordion__Accordion___JS3sw > .Accordion__bar___QUWWi.Accordion__active___ECFtz > .Accordion__header___YUmKs > button > svg {
	transform: rotate(180deg);
}

@keyframes Accordion__content-appear___tNe4F {
	from {
		opacity: 0;
		transform: scaleY(0.9);
	}
}

.Accordion__Accordion___JS3sw > .Accordion__bar___QUWWi > .Accordion__content___gz1KM {
	flex: 1;
	transform-origin: top;
	animation-name: Accordion__content-appear___tNe4F;
	animation-iteration-count: 1;
	animation-duration: 0.2s;
	animation-delay: 0.2s;
	animation-fill-mode: both;
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.TabSet__TabSet___K9txB {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.TabSet__TabSet___K9txB > ol.TabSet__tabs___p1_an {
	list-style: none;
	margin: 0;
	display: flex;
	border-bottom: 1px solid var(--theme-offset-bg);
	color: inherit;
	flex-wrap: wrap;
	overflow: hidden;
}

.TabSet__TabSet___K9txB > ol.TabSet__tabs___p1_an > li {
	padding: 12px 12px 8px;
	cursor: pointer;
	text-transform: uppercase;
	font-size: var(--small-text);
	opacity: 0.5;
	font-weight: bold;
	max-width: 16em;
	transition: all 0.2s;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0 4px 0 0;
	border-bottom: 4px solid transparent;
}

.TabSet__TabSet___K9txB > ol.TabSet__tabs___p1_an > li:hover {
	background: var(--theme-offset-bg);
	box-shadow: inset 0 -1px rgb(var(--theme-sel-bg-parts));
}

.TabSet__TabSet___K9txB > ol.TabSet__tabs___p1_an > li.TabSet__selected___a59gN {
	border-bottom-color: rgb(var(--theme-sel-bg-parts));
	opacity: 1;
}

.TabSet__TabSet___K9txB > .TabSet__tabContainer___spAYG {
	background: rgb(var(--theme-bg-parts));
	border: 1px solid var(--theme-bg-offset);
	border-top: none;
	flex: 1;
	position: relative;
	overflow: hidden;
}

.TabSet__TabSet___K9txB > .TabSet__tabContainer___spAYG > .TabSet__tabsheet___dq5mH {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	transform-origin: center;
	animation-iteration-count: 1;
	animation-fill-mode: both;
	display: flex;
	align-items: stretch;
	flex-direction: column;
	overflow: auto;
}

@keyframes TabSet__disappearToRight___fS6uR {
	to {
		transform: translateX(100%);
	}
}
@keyframes TabSet__disappearToLeft___i3TjQ {
	to {
		transform: translateX(-100%);
	}
}

.TabSet__TabSet___K9txB > .TabSet__tabContainer___spAYG > .TabSet__tabsheet___dq5mH.TabSet__hidden___tADU_ {
	visibility: hidden;
	z-index: 0;
	animation-name: TabSet__disappearToRight___fS6uR;
	animation-duration: 0.1ms;
}

.TabSet__TabSet___K9txB > .TabSet__tabContainer___spAYG > .TabSet__tabsheet___dq5mH.TabSet__hidden___tADU_.TabSet__disappearToRight___fS6uR {
	animation-duration: 0.4s;
}

.TabSet__TabSet___K9txB > .TabSet__tabContainer___spAYG > .TabSet__tabsheet___dq5mH.TabSet__hidden___tADU_.TabSet__disappearToLeft___i3TjQ {
	animation-name: TabSet__disappearToLeft___i3TjQ;
	animation-duration: 0.4s;
}

.TabSet__TabSet___K9txB > .TabSet__tabContainer___spAYG > .TabSet__tabsheet___dq5mH.TabSet__hidden___tADU_.TabSet__vanished___YA3bX {
	display: none;
}

.TabSet__TabSet___K9txB > .TabSet__tabContainer___spAYG > .TabSet__tabsheet___dq5mH.TabSet__selected___a59gN {
	visibility: visible;
	z-index: 1;
	animation-duration: 0.4s;
}

@keyframes TabSet__appear-from-right___lhEDM {
	from {
		transform: translateX(100%);
	}
}
.TabSet__TabSet___K9txB > .TabSet__tabContainer___spAYG > .TabSet__tabsheet___dq5mH.TabSet__selected___a59gN.TabSet__appearFromRight___U77J8 {
	animation-name: TabSet__appear-from-right___lhEDM;
}

@keyframes TabSet__appear-from-left___cQWhp {
	from {
		transform: translateX(-100%);
	}
}
.TabSet__TabSet___K9txB > .TabSet__tabContainer___spAYG > .TabSet__tabsheet___dq5mH.TabSet__selected___a59gN.TabSet__appearFromLeft___Lhh1U {
	animation-name: TabSet__appear-from-left___cQWhp;
}

@media print {
	.TabSet__TabSet___K9txB,
	.TabSet__TabSet___K9txB > .TabSet__tabContainer___spAYG,
	.TabSet__TabSet___K9txB > .TabSet__tabContainer___spAYG > .TabSet__tabsheet___dq5mH,
	.TabSet__TabSet___K9txB > .TabSet__tabContainer___spAYG > .TabSet__tabsheet___dq5mH.TabSet__hidden___tADU_,
	.TabSet__TabSet___K9txB > .TabSet__tabContainer___spAYG > .TabSet__tabsheet___dq5mH.TabSet__hidden___tADU_.TabSet__vanished___YA3bX {
		position: unset;
		display: block;
		visibility: unset;
	}

	.TabSet__TabSet___K9txB > .TabSet__tabContainer___spAYG > .TabSet__tabsheet___dq5mH > * {
		height: auto;
	}

	.TabSet__TabSet___K9txB > ol.TabSet__tabs___p1_an {
		display: none;
	}
}

/*
 * Copyright (c) SEQTA Software 2018.
 */

.TwinPane__TwinPane____EKKq {
	display: flex;
	overflow: hidden;
	flex: 1;
	height: 100%;
}

.TwinPane__TwinPane____EKKq > .TwinPane__left___y8YAF,
.TwinPane__TwinPane____EKKq > .TwinPane__right___fVCw6 {
	width: 50%;
	min-width: 50%;
	max-width: 50%;
	flex-shrink: 0;
	box-sizing: border-box;
	overflow: hidden;
}

.TwinPane__TwinPane____EKKq > .TwinPane__left___y8YAF {
	border-right: 1px solid rgb(var(--theme-sel-bg-parts));
}

.TwinPane__TwinPane____EKKq > .TwinPane__right___fVCw6 {
	border-left: 1px solid rgb(var(--theme-sel-bg-parts));
}

.TwinPane__TwinPane____EKKq.TwinPane__single___n5BTO {
	flex: 1;
}

.TwinPane__TwinPane____EKKq.TwinPane__single___n5BTO > .TwinPane__left___y8YAF,
.TwinPane__TwinPane____EKKq.TwinPane__single___n5BTO > .TwinPane__right___fVCw6 {
	width: 100%;
	max-width: none;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-08-02
 */

.AlertManager__AlertManager___nQRpj {
	position: absolute;
	bottom: 32px;
	right: 40px;
	z-index: 5000;
}

@keyframes AlertManager__alert-appear___moNXN {
	from {
		transform: translateY(-16px);
		opacity: 0;
	}
}

@keyframes AlertManager__alert-disappear___j4qNP {
	to {
		transform: translateY(16px);
		opacity: 0;
	}
}

.AlertManager__Alert___gMURX {
	position: relative;
	margin-top: 12px;
	width: 512px;
	transform-origin: center;
	background: #000;
	color: #fff;
	display: flex;
	align-items: center;
	z-index: 50;
	border-radius: 4px;
	box-shadow: 0 8px 16px 2px rgba(0, 0, 0, 0.2);
	padding: 16px;
	overflow: hidden;
	animation-name: AlertManager__alert-appear___moNXN;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
	animation-duration: 0.5s;
}

.AlertManager__Alert___gMURX.AlertManager__shown___rZB1X {
	transition: bottom 0.5s;
}

.AlertManager__Alert___gMURX::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(
		to right,
		var(--blue),
		var(--green),
		var(--yellow),
		var(--orange)
	);
}

.AlertManager__Alert___gMURX.AlertManager__hidden___UCWVT {
	animation-name: AlertManager__alert-disappear___j4qNP;
}

.AlertManager__Alert___gMURX > .AlertManager__message___9CUGU {
	flex: 1;
}

.AlertManager__Alert___gMURX > .AlertManager__message___9CUGU > h2 {
	font-weight: bold;
	padding: 0;
	margin: 0;
}

.AlertManager__Alert___gMURX > .AlertManager__message___9CUGU > div {
	opacity: 0.5;
	margin: 4px 0 0;
}

.AlertManager__Alert___gMURX > button.AlertManager__action___JZ8JK {
	color: var(--yellow);
	margin-left: 16px;
}

.AlertManager__Alert___gMURX > button.AlertManager__close___mljuF {
	--size: 32px;
	width: var(--size);
	height: var(--size);
	padding: 0;
	border-radius: 100%;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 16px;
}

.AlertManager__Alert___gMURX > button.AlertManager__close___mljuF > svg {
	width: 16px;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by simon on 2016-11-07
 */

.notifications__notifications___A2gRp {
}

.notifications__notifications___A2gRp > button {
	height: 24px;
	overflow: visible;
	padding: 2px;
	position: absolute;
	right: 78px;
	top: 4px;
	width: 24px;
}

.notifications__notifications___A2gRp.notifications__hasItems___zu36R > button {
	background: var(--yellow);
	color: var(--navy);
}

.notifications__notifications___A2gRp > button > svg {
	margin: 0;
}

.notifications__notifications___A2gRp.notifications__shown___oFfsf > button {
	background-color: #3465a4;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	box-shadow: none;
	opacity: 1;
}

.notifications__notifications___A2gRp > button > .notifications__bubble___nOft4 {
	display: block;
	color: #fff;
	position: absolute;
	top: -8px;
	right: -8px;
	border-radius: 100%;
	background: var(--orange);
	font-weight: bold;
	font-size: var(--small-text);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.notifications__list___B5ftJ {
	background: #eee;
	position: absolute;
	right: 0;
	top: 28px;
	opacity: 1;
	width: 300px;
	overflow: hidden;
	border: 4px solid #3465a4;
	z-index: 10;
}

.notifications__actions___qkpq2 {
	text-align: center;
	background: #f8f8f8;
}

.notifications__actions___qkpq2 > button {
	margin: 8px;
}

.notifications__items___iP0xx {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	border-bottom: solid 1px #ccc;
	height: 300px;
}

.notifications__item___GOzzu {
	padding: 8px;
	display: flex;
	border: none;
	border-bottom: 1px solid #ccc;
	box-shadow: none;
}

.notifications__item___GOzzu[data-type='error'] {
	background: #c00;
	color: #fff;
}

.notifications__item___GOzzu > svg,
.notifications__item___GOzzu > .notifications__icon___QoQAx {
	width: 16px;
	height: 16px;
	margin: 0;
	padding: 8px 0;
}

.notifications__item___GOzzu > .notifications__icon___QoQAx {
	padding: 0;
	margin: 8px 0;
	border-radius: 2px;
}

.notifications__item___GOzzu > .notifications__dismiss___hutlO {
	height: 32px;
	width: 32px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}

.notifications__item___GOzzu > .notifications__details___Jxet2 {
	flex: 1;
	padding: 0 8px;
}

.notifications__detailsBody___o_fAp > .notifications__title___JEtvK {
	margin: 4px 0;
}

.notifications__detailsBody___o_fAp > .notifications__subtitle___DaJGc {
	color: #666;
	margin: 4px 0;
}

.notifications__details___Jxet2 > .notifications__time___zKZRl {
	font-size: var(--small-text);
	margin: 4px 0;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by simon on 2016-12-16
 */

.Accordion__Accordion___DVllU {
	display: flex;
	flex-direction: column;
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR {
	display: flex;
	flex-direction: column;
	transition: flex 0.2s;
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR.Accordion__active___Jcajq {
	flex: 1;
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR > .Accordion__header___tx7qC {
	background: var(--theme-button-bg);
	border-top: 1px solid var(--theme-offset-bg);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR:not(.Accordion__disabled___Otaou) > .Accordion__header___tx7qC {
	cursor: pointer;
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR > .Accordion__header___tx7qC > .Accordion__label___SH_Bj {
	padding: 8px;
	margin: 0;
	text-transform: uppercase;
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR.Accordion__disabled___Otaou > .Accordion__header___tx7qC > .Accordion__label___SH_Bj {
	opacity: 0.5;
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR > .Accordion__header___tx7qC > .Accordion__caption___eJU7p {
	opacity: 0.5;
	flex: 1;
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR.Accordion__disabled___Otaou > .Accordion__header___tx7qC > .Accordion__caption___eJU7p {
	opacity: 0.3;
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR > .Accordion__header___tx7qC > .Accordion__actions___pzQ1h {
	display: flex;
	align-items: stretch;
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR > .Accordion__header___tx7qC > .Accordion__actions___pzQ1h > * {
	margin: 0 0 0 4px;
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR > .Accordion__header___tx7qC a,
.Accordion__Accordion___DVllU > .Accordion__item___EVqcR > .Accordion__header___tx7qC button.Accordion__expand___rR2vm {
	padding: 4px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 4px;
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR > .Accordion__header___tx7qC button.Accordion__expand___rR2vm > svg {
	transition: transform 0.2s 0.4s;
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR.Accordion__active___Jcajq > .Accordion__header___tx7qC button.Accordion__expand___rR2vm > svg {
	transform: rotate(180deg);
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR > .Accordion__header___tx7qC > .Accordion__actions___pzQ1h a svg,
.Accordion__Accordion___DVllU > .Accordion__item___EVqcR > .Accordion__header___tx7qC > .Accordion__actions___pzQ1h button.Accordion__expand___rR2vm svg {
	margin: 0;
}

@keyframes Accordion__content-appear___FHNau {
	from {
		opacity: 0;
		transform: scaleY(0.9);
	}
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR > .Accordion__body___Zvir8 {
	flex: 0;
	max-height: 0;
	overflow: hidden;
	position: relative;
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR.Accordion__active___Jcajq > .Accordion__body___Zvir8 {
	flex: 1;
	transform-origin: top;
	animation-name: Accordion__content-appear___FHNau;
	animation-iteration-count: 1;
	animation-duration: 0.2s;
	animation-delay: 0.2s;
	animation-fill-mode: both;
	max-height: initial;
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR > .Accordion__body___Zvir8 > *:first-child {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.Accordion__Accordion___DVllU > .Accordion__item___EVqcR > .Accordion__body___Zvir8 > iframe {
	width: 100%;
	height: 100%;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by simon on 2017-11-20
 */

.Avatar__Avatar___BHDjH {
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	border-radius: 100%;
	margin: 4px;
	overflow: hidden;
	box-sizing: border-box;
}

.Avatar__Avatar___BHDjH .Avatar__img___Z_as6 {
	background-size: cover;
	background-position: 33% center;
}

.Avatar__hidden___PEk2c {
	display: none;
}

.Avatar__Avatar___BHDjH .Avatar__name___axC0Y {
	display: flex;
	height: 100%;
	width: 100%;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	color: #fff;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by huili on 2016-12-19
 */

.Checkbox__Checkbox___h63El {
	box-sizing: border-box;
	display: inline-block;
	float: none;
	vertical-align: middle;
	width: 100%;
	flex: 1;
}

.Checkbox__Checkbox___h63El > input {
	margin: 0;
	width: 16px;
}

.Checkbox__Checkbox___h63El > input,
.Checkbox__checkbox___Mizda > .Checkbox__labelWrapper___jJlEG {
	display: inline-block;
	vertical-align: middle;
}

.Checkbox__Checkbox___h63El > .Checkbox__labelWrapper___jJlEG {
	box-sizing: border-box;
	display: inline-block;
	margin: 0 0 0 8px;
	vertical-align: middle;
	word-wrap: break-word;
	width: calc(100% - 24px);
}

.Checkbox__Checkbox___h63El > .Checkbox__labelWrapper___jJlEG > .Checkbox__label___evFd0 {
}

.Checkbox__Checkbox___h63El > .Checkbox__labelWrapper___jJlEG > .Checkbox__sublabel___rTd4L {
	font-size: var(--small-text);
	opacity: 0.3;
	font-weight: bold;
	text-transform: uppercase;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by huili on 2017-01-27
 */

.EditableList__EditableList____APWd {
}

.EditableList__EditableList____APWd > label {
	padding: 0;
}

.EditableList__EditableList____APWd > .EditableList__items___XK6LN {
	padding: 0;
}

.EditableList__Item___udMMe {
	display: flex;
	margin: 4px 0;
}

.EditableList__Item___udMMe > input {
	flex: 1;
}

.EditableList__Item___udMMe > .EditableList__actions___uNp4u {
	display: inline-block;
}

.EditableList__action___osrrZ {
	margin-left: 4px;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by huili on 2017-01-25
 */

button.wxImgButton__toggled___Vxpum,
button.wxImgButton__toggled___Vxpum:hover {
	background-color: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.FlatButton__FlatButton___ON6KR {
	cursor: pointer;
	background: none;
	border: none;
	box-shadow: none;
}

.FlatButton__FlatButton___ON6KR:hover {
	opacity: 0.8;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by huili on 2017-03-21
 */

.InlineHelp__InlineHelp___QcZ3b {
	display: inline-block;
}

.InlineHelp__help___DIW9F {
	border-radius: 32px !important;
	padding: 0 !important;
	width: 24px;
	height: 24px;
	font-weight: bold;
	transition: background 0.25s !important;
	vertical-align: baseline !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.InlineHelp__explanation___HnJrX {
	width: 200px;
	background: #eee;
	padding: 8px;
	color: #444;
	font-style: italic;
	line-height: 1.5;
	margin-top: 8px;
	max-height: 100px;
	overflow: auto;
	border: 4px solid #fff;
	border-radius: 2px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), inset 0 0 4px rgba(0, 0, 0, 0.3);
}

.InlineHelp__explanation___HnJrX a:visited {
	color: #3465a4;
}

.InlineHelp__explanation___HnJrX a {
	border: 0;
	color: #3465a4;
	margin: 0;
	padding: 0;
	box-shadow: none;
	text-decoration: underline;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by huili on 2017-02-07
 */

.ImgList__ImgList___UtK58 > .ImgList__label___UV4ws {
	color: #999;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.ImgList__ImgList___UtK58 > .ImgList__list___CRcZk {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.ImgList__ImgList___UtK58 > .ImgList__list___CRcZk.ImgList__centered___nAXWG {
	justify-content: center;
}

.ImgList__more___n9GBh {
	border-radius: 100%;
	background: #eee;
	border: 2px solid #fff;
	color: #999;
	text-align: center;
	box-sizing: border-box;
	padding: 6px 0;
}

.ImgList__selectable___Ii07T .ImgList__ImgItem___kcRhO:hover {
	cursor: pointer;
}

.ImgList__ImgItem___kcRhO,
.ImgList__more___n9GBh {
	margin-right: -8px;
	transition: opacity 0.5s;
}

.ImgList__ImgItem___kcRhO.ImgList__faded___Laxnc {
	opacity: 0.2;
}

.ImgList__ImgItem___kcRhO > svg {
	display: block;
	border-radius: 100%;
	border: 2px solid #fff;
	box-sizing: border-box;
	background: #fff;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by huili on 2016-12-15
 */

.ItemList__ItemList___h6ECV {
	display: flex;
	flex-direction: column;
	width: 200px;
	overflow: auto;
	height: 100%;
}

.ItemList__ItemList___h6ECV > input.ItemList__search___lG04w {
	width: auto;
	min-height: 24px;
	padding: 8px;
	border-right: 0;
	border-left: 0;
	border-top: 0;
}

.ItemList__Item___EXrYD {
	align-items: center;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	position: relative;
	border-bottom: 1px solid var(--theme-offset-bg);
	padding: 4px 0;
}

.ItemList__Item___EXrYD:hover {
	background: var(--theme-offset-bg);
}

.ItemList__Item___EXrYD.ItemList__selected___DudiO,
.ItemList__Item___EXrYD.ItemList__selected___DudiO > .ItemList__delete___QiXof {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
	flex-shrink: 0;
}

.ItemList__Item___EXrYD.ItemList__disabled___poaou {
	opacity: 0.3;
}

.ItemList__Item___EXrYD > .ItemList__colour___HhamW {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 8px;
}

.ItemList__Item___EXrYD > .ItemList__column___Jp5hg {
	flex-direction: column;
	padding: 8px;
	word-wrap: break-word;
	overflow: hidden;
}

.ItemList__Item___EXrYD > .ItemList__colour___HhamW + .ItemList__column___Jp5hg {
	margin: 0 0 0 8px;
}

.ItemList__Item___EXrYD > .ItemList__smallercolumn___R_96i {
	flex-direction: column;
	padding: 8px;
	width: 115px;
	word-wrap: break-word;
}

.ItemList__Item___EXrYD > .ItemList__column___Jp5hg > .ItemList__label___deRjp,
.ItemList__Item___EXrYD > .ItemList__smallercolumn___R_96i > .ItemList__label___deRjp {
	flex: 1;
}

.ItemList__Item___EXrYD > .ItemList__column___Jp5hg > .ItemList__sublabel___AMv7j,
.ItemList__Item___EXrYD > .ItemList__smallercolumn___R_96i > .ItemList__sublabel___AMv7j {
	font-size: var(--small-text);
	opacity: 0.5;
}

.ItemList__Item___EXrYD > .ItemList__column___Jp5hg > .ItemList__disabled___poaou,
.ItemList__Item___EXrYD > .ItemList__column___Jp5hg > .ItemList__disabled___poaou {
	display: inline-block;
	font-size: var(--small-text);
	padding: 0 8px;
	border-radius: 32px;
	text-transform: capitalize;
}

.ItemList__Item___EXrYD > .ItemList__delete___QiXof {
	margin: auto 8px auto auto;
	padding: 8px;
	border-radius: 100%;
	flex-shrink: 0;
}

.ItemList__Item___EXrYD > .ItemList__delete___QiXof > svg {
	margin: auto;
}

.ItemList__Item___EXrYD > .ItemList__flag1___SyQL8,
.ItemList__Item___EXrYD > .ItemList__flag2___Sp5dX {
	position: absolute;
	top: 4px;
	right: 4px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	font-size: var(--small-text);
	border-radius: 4px;
	padding: 2px 8px;
	text-shadow: none;
}

.ItemList__Item___EXrYD > .ItemList__flag1___SyQL8 {
	background: rgb(var(--theme-sel-bg-parts));
}

.ItemList__Item___EXrYD > .ItemList__flag2___Sp5dX {
	background: #c7d1e1;
}

.ItemList__Item___EXrYD > .ItemList__flag1flag2___UrhEX {
	position: absolute;
	top: 28px;
	right: 4px;
	background: #c7d1e1;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	font-size: var(--small-text);
	border-radius: 4px;
	padding: 2px 8px;
}

.ItemList__Item___EXrYD.ItemList__selected___DudiO > .ItemList__flag2___Sp5dX,
.ItemList__Item___EXrYD.ItemList__selected___DudiO > .ItemList__flag1flag2___UrhEX,
.ItemList__Item___EXrYD.ItemList__selected___DudiO > .ItemList__flag1___SyQL8 {
	background: #fff;
	color: rgb(var(--theme-sel-bg-parts));
	opacity: 1;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by bryn on 2017-02-09
 */

.Lightbox__lightbox___EpOut {
	position: fixed;
	background: #fff;
	border: solid 8px #111;
	box-shadow: 0 8px 16px #000;
	min-width: 128px;
	min-height: 128px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 20;
}

.Lightbox__lightbox___EpOut > img {
	display: block;
	max-width: 80vw;
	max-height: 80vh;
}

.Lightbox__modaliser___dpFEU {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.25);
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9oMHwQQIipQxEgAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAASUlEQVRYw+3SIQEAMAwDwQichvmXUdJpWMCBgGcBlyR3d3Zt3X+w9djr/oMMMsgggwwyyCCDDDLIIIMMMsgggwwyyCCDDDL4oweksBNf1gP3twAAAABJRU5ErkJggg==);
	transition: opacity 0.25s ease-in-out;
	z-index: 19;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by david on 2016-12-14
 */
.wxLongText__LongText___XN3re {
	border-radius: 0px;
	padding: 1px 12px;
}

/* when the text in the input box is in error
 */
.wxLongText__error___fod0J {
	border: 2px solid red;
}

/* when no text has yet been entered and it is mandatory
 */
.wxLongText__missing___EzRy2 {
	border: 2px solid orange;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by huili on 2016-12-19
 */

.MultiFieldOptions__MultiFieldOptions___NhTUC {
	display: flex;
	flex-direction: column;
}

.MultiFieldOptions__MultiFieldOptions___NhTUC > .MultiFieldOptions__search___OqALQ {
	border-radius: 4px;
	border: 1px solid var(--theme-offset-bg-more);
	padding: 8px;
}

.MultiFieldOptions__MultiFieldOptions___NhTUC > .MultiFieldOptions__filters___GXpbI {
}

.MultiFieldOptions__MultiFieldOptions___NhTUC > .MultiFieldOptions__filters___GXpbI > .MultiFieldOptions__filter___EnU8W {
	padding: 8px 0;
	display: flex;
	align-items: center;
}

.MultiFieldOptions__MultiFieldOptions___NhTUC > .MultiFieldOptions__filters___GXpbI > .MultiFieldOptions__filter___EnU8W input {
	margin: 0;
}

.MultiFieldOptions__ItemList___cEllH {
	overflow-y: auto;
	width: 100%;
}

.MultiFieldOptions__MultiFieldOptions___NhTUC > .MultiFieldOptions__limit___AKGtb {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
	font-size: 0.8em;
	padding: 4px 8px;
	font-style: italic;
}

.MultiFieldOptions__MultiFieldOptions___NhTUC > .MultiFieldOptions__actions___ZZSEn {
	display: flex;
	justify-content: space-evenly;
}

ul.MultiFieldOptions__CategoryItems___c2sW6 {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.MultiFieldOptions__CategoryItems___c2sW6 > .MultiFieldOptions__heading___ihgzx {
	padding: 8px;
	text-transform: uppercase;
	position: sticky;
	top: 0;
	font-size: var(--small-text);
	font-weight: bold;
	background: rgb(var(--theme-bg-alt-parts));
	display: block;
	z-index: 1;
}

.MultiFieldOptions__CategoryItems___c2sW6 > .MultiFieldOptions__item___CmwKO {
	border-bottom: 1px solid var(--theme-offset-bg);
}

.MultiFieldOptions__CategoryItems___c2sW6 > .MultiFieldOptions__item___CmwKO > .MultiFieldOptions__itemWrapper___vpKB3 {
	padding: 8px;
	display: flex;
	align-items: center;
}

.MultiFieldOptions__CategoryItems___c2sW6 > .MultiFieldOptions__item___CmwKO > .MultiFieldOptions__itemWrapper___vpKB3 input {
	margin: 0;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by david on 2016-12-14
 */
.wxPillbox__Pillbox___ta4lp {
	display: inline-block;
	white-space: nowrap;
}

.wxPillbox__enabled___OS626 {
}

.wxPillbox__disabled___iYIzm {
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by david on 2016-12-19
 */

button.wxPillboxButton__PillboxButton___LUbyH {
}

button.wxPillboxButton__PillboxButton___LUbyH.wxPillboxButton__depressed___lV4lI {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

button.wxPillboxButton__PillboxButton___LUbyH.wxPillboxButton__disabled___Tm9dE {
	opacity: 0.3;
}

button.wxPillboxButton__PillboxButton___LUbyH.wxPillboxButton__enabled___ei9Bw {
}

button.wxPillboxButton__PillboxButton___LUbyH:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

button.wxPillboxButton__PillboxButton___LUbyH:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-right: none;
}

.ResourceDialog__ResourceDialog___g39kx {
}

.ResourceDialog__ResourceDialog___g39kx > .ResourceDialog__name___i13Hz {
}

.ResourceDialog__ResourceDialog___g39kx > .ResourceDialog__name___i13Hz > label {
	padding: 0;
	margin-bottom: 4px;
	display: block;
}

.ResourceDialog__ResourceDialog___g39kx > .ResourceDialog__name___i13Hz > input {
	box-sizing: border-box;
	display: block;
	padding: 4px 12px;
	width: 100%;
}

.ResourceDialog__ResourceDialog___g39kx > .ResourceDialog__legend___LZyXu {
	display: block;
	width: 100%;
	margin: 16px 0 4px;
	padding: 0;
}

.ResourceDialog__ResourceDialog___g39kx > fieldset {
	border: none;
	padding: 0;
	margin: 0;
}

.ResourceDialog__ResourceDialog___g39kx > fieldset > .ResourceDialog__radioGroupItem___zldGW {
	padding: 8px;
	border-top: 1px solid var(--theme-offset-bg);
}

.ResourceDialog__ResourceDialog___g39kx > fieldset > .ResourceDialog__radioGroupItem___zldGW.ResourceDialog__selected___PGx4c {
	background-color: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.ResourceDialog__ResourceDialog___g39kx > fieldset > .ResourceDialog__radioGroupItem___zldGW > .ResourceDialog__linkInput___PiO03 {
	display: block;
	width: 90%;
	margin: 4px 0 0;
	padding: 4px 12px;
}

.ResourceDialog__ResourceDialog___g39kx > fieldset > .ResourceDialog__radioGroupItem___zldGW > .ResourceDialog__linkInput___PiO03.ResourceDialog__disabled___rFSHA {
}

.ResourceDialog__ResourceDialog___g39kx > fieldset > .ResourceDialog__radioGroupItem___zldGW > .ResourceDialog__filename___dE1I4 {
	text-align: center;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by david on 2016-12-14
 */
.wxShortText__ShortText___eOhgQ {
	border-radius: 0px;
	padding: 1px 12px;
	font-family: 'Trebuchet MS', sans-serif;
}

/* when the text in the input box is in error
 */
.wxShortText__ShortText___eOhgQ.wxShortText__error___tGZ5P {
	border: 2px solid red;
}

/* when no text has yet been entered and it is mandatory
 */
.wxShortText__ShortText___eOhgQ.wxShortText__missing___HH8Ee {
	border: 2px solid orange;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by simon on 2016-12-16
 */

.Tags__Tags___mWUuc {
	background: var(--theme-offset-bg);
	padding: 8px;
}

.Tags__Tags___mWUuc > .Tags__item___DS20t {
	background: var(--theme-offset-bg);
	display: inline-block;
	padding: 0;
	margin: 0 4px 2px 0;
	vertical-align: middle;
}

.Tags__Tags___mWUuc > .Tags__item___DS20t.Tags__active___Req7Q {
	background: #ddd;
	border-color: #ccc;
}

.Tags__Tags___mWUuc.Tags__disabled___SNLee > .Tags__item___DS20t {
	border-radius: 4px;
}

.Tags__Tags___mWUuc > .Tags__item___DS20t > label {
	cursor: default;
	margin: 0;
	padding: 4px 0 4px 8px;
	display: inline-block;
	vertical-align: middle;
}

.Tags__Tags___mWUuc.Tags__disabled___SNLee > .Tags__item___DS20t > label {
	padding: 4px 8px;
}

.Tags__Tags___mWUuc > .Tags__item___DS20t > button {
	background: none;
	border: none;
	box-shadow: none;
	color: #999;
	cursor: pointer;
	display: inline-block;
	padding: 4px 4px 4px 8px;
	vertical-align: middle;
}

.Tags__Tags___mWUuc > .Tags__item___DS20t > button:hover {
	color: #444;
}

.Tags__Tags___mWUuc > input {
	width: 80px;
	vertical-align: middle;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2018.
 *
 * Created by Cameron Armstrong on 2018-01-23
 */

/* Styling for HtmlEditor */

.HtmlEditor__htmlEditorWrapper___HS2mV {
}

.HtmlEditor__htmlEditor___Rq_FI {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	min-height: 256px;
	position: relative !important;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by huili on 2016-12-15
 */

.AdminSyllabusSet__AdminSyllabusSet___e8PI6 {
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.AdminSyllabusSet__AdminSyllabusSet___e8PI6 > .AdminSyllabusSet__sidePane___vhtof {
	width: 200px;
	margin: 0;
	padding: 0;
	box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.3);
	border-radius:0;
}

.AdminSyllabusSet__AdminSyllabusSet___e8PI6 > .AdminSyllabusSet__syllabusSet___llcU2 {
	flex: 1;
	display: flex;
	flex-direction: column;
	margin: 0 8px 8px 12px;
}

.AdminSyllabusSet__AdminSyllabusSet___e8PI6 > .AdminSyllabusSet__syllabusSet___llcU2 > .AdminSyllabusSet__syllabusMigrateBanner___Qt7OK {
	background: #ffc20e;
	height: 32px;
	display: flex;
	align-items: center;
	color: rgba(0, 0, 0, 0.8);
	transition: 0.5s;
}

.AdminSyllabusSet__AdminSyllabusSet___e8PI6 > .AdminSyllabusSet__syllabusSet___llcU2 > .AdminSyllabusSet__syllabusMigrateBanner___Qt7OK > span {
	flex: 1;
	padding: 8px;
}

.AdminSyllabusSet__AdminSyllabusSet___e8PI6 > .AdminSyllabusSet__syllabusSet___llcU2 > .AdminSyllabusSet__syllabusMigrateBanner___Qt7OK > button {
	margin: 0 4px;
}

.AdminSyllabusSet__AdminSyllabusSet___e8PI6 > .AdminSyllabusSet__syllabusSet___llcU2 > .AdminSyllabusSet__main___nGMvR {
	display: flex;
	width: 100%;
	flex: 1;
	overflow: auto;
}

.AdminSyllabusSet__AdminSyllabusSet___e8PI6 .AdminSyllabusSet__details___POyya.filterBox {
	flex-direction: row;
	margin-top: 16px;
}

.AdminSyllabusSet__details___POyya > .AdminSyllabusSet__field___fN9lS {
	display: flex;
	align-items: center;
}

.AdminSyllabusSet__details___POyya > .AdminSyllabusSet__field___fN9lS.AdminSyllabusSet__AdminSyllabusSetName___CLTIF {
	flex: 1;
}

.AdminSyllabusSet__details___POyya > .AdminSyllabusSet__field___fN9lS.AdminSyllabusSet__AdminSyllabusSetName___CLTIF input {
	width: 400px;
	border-radius: 4px;
	border: 1px solid var(--theme-offset-bg-more);
	padding: 8px;
}

.AdminSyllabusSet__details___POyya > .AdminSyllabusSet__field___fN9lS > .AdminSyllabusSet__wrapper___kfoaF > .AdminSyllabusSet__label___rfpsg,
.AdminSyllabusSet__details___POyya > .AdminSyllabusSet__field___fN9lS > .AdminSyllabusSet__wrapper___kfoaF > input {
	vertical-align: middle;
	display: inline-block;
}

.AdminSyllabusSet__details___POyya > .AdminSyllabusSet__field___fN9lS > .AdminSyllabusSet__wrapper___kfoaF > .AdminSyllabusSet__label___rfpsg,
.AdminSyllabusSet__details___POyya > .AdminSyllabusSet__field___fN9lS > .AdminSyllabusSet__wrapper___kfoaF > input {
	margin-left: 8px;
}

.AdminSyllabusSet__details___POyya > .AdminSyllabusSet__field___fN9lS > .AdminSyllabusSet__wrapper___kfoaF {
	display: flex;
	align-items: center;
	height: 100%;
	width: 100%;
}

.AdminSyllabusSet__details___POyya > .AdminSyllabusSet__field___fN9lS.AdminSyllabusSet__name___oX0Pn > .AdminSyllabusSet__wrapper___kfoaF > input {
	flex: 1;
}

.AdminSyllabusSet__details___POyya > .AdminSyllabusSet__AdminSyllabusSetEnabled___HG_lP {
	padding-left: 16px;
}

.AdminSyllabusSet__AdminSyllabusSetMeta___HLaE1 {
	width: 256px;
	overflow: auto;
	align-items: stretch;
}

.AdminSyllabusSet__AdminSyllabusSetMeta___HLaE1 > .AdminSyllabusSet__subjects___qcVDq {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 300px;
	margin: 8px 0 0;
}

.AdminSyllabusSet__AdminSyllabusSetMeta___HLaE1 > .AdminSyllabusSet__description___nXLxC {
	width: 100%;
}

.AdminSyllabusSet__AdminSyllabusSetMeta___HLaE1 > .AdminSyllabusSet__description___nXLxC > .AdminSyllabusSet__content___RNzIa {
}

.AdminSyllabusSet__AdminSyllabusSetMeta___HLaE1 > .AdminSyllabusSet__description___nXLxC > .AdminSyllabusSet__content___RNzIa > textarea {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	resize: vertical;
	max-height: 250px;
	min-height: 60px;
	overflow-x: hidden;
	border-radius: 4px;
	border: 1px solid var(--theme-offset-bg-more);
	padding: 8px;
}

.AdminSyllabusSet__AdminSyllabusSetMeta___HLaE1 > .AdminSyllabusSet__subjects___qcVDq > .AdminSyllabusSet__subjectDefaults___W_1yx {
	flex: 1;
	min-height: 0;
}

.AdminSyllabusSet__fancyCheckbox___utFKs {
	flex: none;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by huili on 2016-12-16
 */

.SidepaneSection__sidepaneSection___ycxh2 {
}

.SidepaneSection__sidepaneSection___ycxh2 > .SidepaneSection__heading___Srg1_ {
	text-transform: uppercase;
	font-weight: bold;
	font-size: var(--small-text);
}

.SidepaneSection__sidepaneSection___ycxh2 > .SidepaneSection__heading___Srg1_ > .SidepaneSection__title___Q3cLb {
}

.SidepaneSection__sidepaneSection___ycxh2 > .SidepaneSection__heading___Srg1_ > .SidepaneSection__title___Q3cLb {
	flex: 1;
	display: inline-block;
}

.SidepaneSection__sidepaneSection___ycxh2 > .SidepaneSection__heading___Srg1_ > .SidepaneSection__actions___f8sgB {
	display: flex;
}

.SidepaneSection__sidepaneSection___ycxh2 > .SidepaneSection__heading___Srg1_ > .SidepaneSection__actions___f8sgB > button {
	padding: 2px;
	color: #204a87;
	width: 32px;
	display: inline-block;
}

.SidepaneSection__sidepaneSection___ycxh2 > .SidepaneSection__heading___Srg1_ > .SidepaneSection__actions___f8sgB > button {
	margin: 0;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by huili on 2016-12-21
 */

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ {
	flex: 1;
	overflow: auto;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ th {
	box-sizing: border-box;
	font-size: var(--small-text);
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ th.ReportingSyllabusItems__syllabusItem___dWbzy {
	padding: 2px 8px;
	width: 35%;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__mode___PSuCT,
.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__types___DIT2v {
	padding: 2px 8px;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .tableWrapper {
	overflow-y: scroll;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .tableWrapper > .body td:first-child {
	padding: 4px 8px;
	width: 35%;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .tableWrapper > .body td {
	vertical-align: top;
	box-sizing: border-box;
	border: 1px solid var(--theme-offset-bg);
	padding-top: 4px;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0.ReportingSyllabusItems__deleted___L_tDP {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sBDgEoADUN3FIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAeElEQVRo3u3VsQnAMBADwN9/Ha+Twps42JAQQwaIyBVq3o1UmKujtTEzer9z3Z756nsll18DkstvAxLLz3sll18Dksu/Dkj7E5VcfhvAAQ5wgAMc4AAHOMABDnCAAxzgAAc4wAEOcIADHOAABzjAAQ5wgAMc+IUDJ+8f8KMbNnjeAAAAAElFTkSuQmCC);
	opacity: 0.5;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__SyllabusItem___tj5gw {
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__SyllabusItem___tj5gw > .ReportingSyllabusItems__name___fmYvb {
	margin: 0 0 2px;
	padding: 2px 0;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__SyllabusItem___tj5gw > .ReportingSyllabusItems__code_____SRs {
	padding: 2px 0;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__SyllabusItem___tj5gw > .ReportingSyllabusItems__setContainer___qRJld {
	word-break: break-word;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__SyllabusItem___tj5gw > .ReportingSyllabusItems__setContainer___qRJld > div {
	display: inline;
	margin-right: 2ex;
	padding: 2px 0;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__SyllabusItem___tj5gw > .ReportingSyllabusItems__setContainer___qRJld > .ReportingSyllabusItems__set___urqPF {
	opacity: 0.5;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__SyllabusItem___tj5gw > .ReportingSyllabusItems__setContainer___qRJld > .ReportingSyllabusItems__areaCode___cUau8 {
	opacity: 0.4;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__SyllabusItem___tj5gw > .ReportingSyllabusItems__setContainer___qRJld > .ReportingSyllabusItems__strand___qd9ZF {
	opacity: 0.3;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__SyllabusItem___tj5gw > .ReportingSyllabusItems__details___mdVQv {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 2px 0;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__SyllabusMode___JN9N6 .ReportingSyllabusItems__mode___PSuCT {
	width: 100%;
	box-sizing: border-box;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__SyllabusMode___JN9N6 > .ReportingSyllabusItems__custom___BdnmH {
	width: 100%;
	box-sizing: border-box;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__SyllabusMode___JN9N6 > .ReportingSyllabusItems__custom___BdnmH > input {
	text-transform: uppercase; /* NOTE: text transform is also done upon value changed */
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__SyllabusMode___JN9N6.ReportingSyllabusItems__readOnly___GBhu1 > .ReportingSyllabusItems__custom___BdnmH {
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__SyllabusMode___JN9N6 > .ReportingSyllabusItems__extra___VwkRN {
	font-size: var(--small-text);
	opacity: 0.4;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__syllabusReportType___ZTEKz {
	width: 100%;
	box-sizing: border-box;
	padding-left: 4px;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__syllabusReportType___ZTEKz > ul {
	list-style-position: outside;
	text-align: left;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__RSItem___AhiP0 .ReportingSyllabusItems__types___DIT2v button {
	width: 100%;
	padding: 2px 8px;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__action___rrhkD {
	width: 10%;
	padding: 2px 4px;
	text-align: center;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__action___rrhkD > .ReportingSyllabusItems__button___CfuTt {
	padding: 0;
}

.ReportingSyllabusItems__ReportingSyllabusItems___vV3c_ .ReportingSyllabusItems__action___rrhkD > .ReportingSyllabusItems__button___CfuTt.ReportingSyllabusItems__add___dWZnN {
	height: auto;
	width: auto;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-02-20
 */

.SyllabusMigrate__SyllabusMigrate___Lofhb {
	width: 100%;
	height: 100%;
}

.SyllabusMigrate__SyllabusMigrate___Lofhb > .SyllabusMigrate__containerHeader___dBoXU {
	display: flex;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.SyllabusMigrate__SyllabusMigrate___Lofhb > .SyllabusMigrate__containerHeader___dBoXU > div {
	font-size: var(--small-text);
	text-transform: uppercase;
	background: #f8f8f8;
	text-align: left;
	color: #999;
	padding: 4px 0;
}

.SyllabusMigrate__SyllabusMigrate___Lofhb > .SyllabusMigrate__containerHeader___dBoXU > div > span {
	padding-left: 4px;
	font-size: var(--small-text);
}

.SyllabusMigrate__SyllabusMigrate___Lofhb > .SyllabusMigrate__containerHeader___dBoXU > .SyllabusMigrate__checkbox___KVfgi {
	width: 24px;
}

.SyllabusMigrate__SyllabusMigrate___Lofhb > .SyllabusMigrate__containerHeader___dBoXU > .SyllabusMigrate__setWidth___vkt82 {
	width: 128px;
	cursor: pointer;
}

.SyllabusMigrate__SyllabusMigrate___Lofhb > .SyllabusMigrate__containerHeader___dBoXU > .SyllabusMigrate__flexWidth___zG2T1 {
	flex: 1;
	cursor: pointer;
	padding-left: 4px;
}

.SyllabusMigrate__SyllabusMigrate___Lofhb > .SyllabusMigrate__warning___vjYkd {
	background: #ffc20e;
	color: #000;
	font-size: var(--small-text);
	padding: 4px 8px;
	font-style: italic;
}

.SyllabusMigrate__SyllabusMigrate___Lofhb > .SyllabusMigrate__itemContainer___JPaPx {
	flex: 1;
	overflow-y: scroll;
}

.SyllabusMigrate__slidePane___zIcTy {
	left: 10%;
	right: 10%;
}

.SyllabusMigrate__loading___xSKUX {
	padding-top: 64px;
}

.SyllabusMigrate__message___maRDT {
	width: 100%;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	color: rgb(var(--theme-fg-parts));
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-02-20
 */

.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml {
	display: flex;
	flex-direction: column;
}

.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml + .SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml {
	margin-top: 64px;
}

.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__main___T9xCI {
	height: 128px;
	position: relative; /* Fallback for ie11 */
	position: sticky;
	top: 0;
	z-index: 2;
	list-style: none;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: flex-end;
	margin: 0;
	overflow: hidden;
}

.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__main___T9xCI > .SyllabusMigrateGroup__cover___OlM4h {
	background-position: center;
	background-size: cover;
	position: absolute;
	top: -6px;
	right: -6px;
	bottom: -6px;
	left: -6px;
}

.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__main___T9xCI > h2 {
	background: rgba(0, 0, 0, 0.8);
	padding: 4px 8px;
	color: #fff;
	min-width: 30%;
	margin: 0;
	z-index: 1;
	font-size: var(--large-text);
}

.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__main___T9xCI > .SyllabusMigrateGroup__summary___Ej9EP {
	background: rgba(255, 255, 255, 0.8);
	padding: 8px;
	font-size: var(--small-text);
	z-index: 1;
	min-width: 30%;
}

.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__main___T9xCI > .SyllabusMigrateGroup__summary___Ej9EP > .SyllabusMigrateGroup__problems___sgnmD,
.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__main___T9xCI > .SyllabusMigrateGroup__summary___Ej9EP > .SyllabusMigrateGroup__pairs___vh0CD {
	text-transform: uppercase;
	display: flex;
	align-items: center;
}

.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__main___T9xCI > .SyllabusMigrateGroup__summary___Ej9EP > .SyllabusMigrateGroup__pairs___vh0CD::before,
.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__main___T9xCI > .SyllabusMigrateGroup__summary___Ej9EP > .SyllabusMigrateGroup__problems___sgnmD::before {
	border-radius: 2px;
	width: 1em;
	height: 1em;
	display: inline-flex;
	margin: 0 4px 0 0;
	padding: 2px 0 2px 3px;
	content: '\2713';
	background: #8cc63e;
}

.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__main___T9xCI > .SyllabusMigrateGroup__summary___Ej9EP > .SyllabusMigrateGroup__problems___sgnmD::before {
	content: '\2715';
	background: #f36f21;
}

.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__main___T9xCI > .SyllabusMigrateGroup__summary___Ej9EP > .SyllabusMigrateGroup__pairs___vh0CD + .SyllabusMigrateGroup__problems___sgnmD {
	margin-top: 4px;
}

.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__row___SmqbQ {
	color: #999;
	background: #f8f8f8;
	position: sticky;
	top: 128px;
	z-index: 2;
	display: flex;
}

.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__row___SmqbQ > div {
	padding: 8px 4px;
	font-size: var(--small-text);
	text-transform: uppercase;
}

.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__row___SmqbQ > .SyllabusMigrateGroup__selector___du00q {
	width: 24px;
}

.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__row___SmqbQ > .SyllabusMigrateGroup__version___R4hEP,
.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__row___SmqbQ > .SyllabusMigrateGroup__area___VOhjb,
.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__row___SmqbQ > .SyllabusMigrateGroup__code___x5y_C {
	width: 10%;
}

.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__row___SmqbQ > .SyllabusMigrateGroup__strand___TTvZy,
.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__row___SmqbQ > .SyllabusMigrateGroup__set___HFKTY {
	width: 15%;
}

.SyllabusMigrateGroup__SyllabusMigrateGroup___XK3Ml > .SyllabusMigrateGroup__row___SmqbQ > .SyllabusMigrateGroup__details___FiXdU {
	flex: 1;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-02-20
 */

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI {
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd {
	margin-top: 24px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	overflow: hidden;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd.SyllabusMigrateItem__problem___OB4lg {
	border: 2px solid #f36f21;
}
.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__row___OnmQg {
	border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
	display: flex;
	cursor: pointer;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__row___OnmQg.SyllabusMigrateItem__checked___jCxza {
	background: #204a87;
	color: #fff;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__row___OnmQg > div {
	padding: 4px;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__selector___tGEgi {
	width: 24px;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__version___pZxQc,
.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__area___FlLyf,
.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__code___MjY1d {
	width: 10%;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__strand___BNLzS,
.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__set___JI798 {
	width: 15%;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__details___iF_dN {
	flex: 1;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__version___pZxQc,
.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__code___MjY1d {
	text-transform: uppercase;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__version___pZxQc,
.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__match___kkyx3 {
	opacity: 0.5;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__noCandidate___Ni2Im > .SyllabusMigrateItem__warning___K0TyO {
	font-weight: bold;
	padding: 4px;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__noCandidate___Ni2Im > .SyllabusMigrateItem__explanation___XoEjp {
	font-style: italic;
	padding: 4px;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__noCandidate___Ni2Im > .SyllabusMigrateItem__usage___ZhK4c {
	padding: 4px;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__container___xCGxd > .SyllabusMigrateItem__noCandidate___Ni2Im > ul {
	margin: 4px;
	padding: 0;
	list-style-position: inside;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__contentContainer___kolRR {
	position: relative;
	margin-left: 32px;
	margin-top: 8px;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__contentContainer___kolRR > .SyllabusMigrateItem__row___OnmQg {
	color: #999;
	background: #f8f8f8;
	position: sticky;
	top: calc(128px + 24px + 2px + 2px);
	z-index: 0;
	display: flex;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__contentContainer___kolRR > .SyllabusMigrateItem__row___OnmQg > div {
	padding: 8px 4px;
	font-size: var(--small-text);
	text-transform: uppercase;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__contentContainer___kolRR > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__selector___tGEgi {
	width: 24px;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__contentContainer___kolRR > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__version___pZxQc,
.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__contentContainer___kolRR > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__code___MjY1d {
	width: 10%;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__contentContainer___kolRR > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__name___tvwW9,
.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__contentContainer___kolRR > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__year___WNvVe {
	width: 15%;
}

.SyllabusMigrateItem__SyllabusMigrateItem___HNRsI > .SyllabusMigrateItem__contentContainer___kolRR > .SyllabusMigrateItem__row___OnmQg > .SyllabusMigrateItem__details___iF_dN {
	flex: 1;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-02-21
 */

.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM {
	margin-top: 8px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	overflow: hidden;
}

.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM.SyllabusMigrateContent__problem___acHla {
	border: 2px solid #f36f21;
}

.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__row___oCSfW {
	border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
	display: flex;
	cursor: pointer;
}

.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__row___oCSfW.SyllabusMigrateContent__checked___rmtd_ {
	background: #204a87;
	color: #fff;
}

.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__row___oCSfW > div {
	padding: 4px;
}

.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__row___oCSfW > .SyllabusMigrateContent__selector___rm9p6 {
	width: 24px;
}

.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__row___oCSfW > .SyllabusMigrateContent__name___es1g_,
.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__row___oCSfW > .SyllabusMigrateContent__year___nlfxs {
	width: 15%;
}

.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__row___oCSfW > .SyllabusMigrateContent__version___RbHEL,
.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__row___oCSfW > .SyllabusMigrateContent__code___Mc5ef {
	width: 10%;
}

.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__row___oCSfW > .SyllabusMigrateContent__details___y6KSK {
	flex: 1;
}

.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__row___oCSfW > .SyllabusMigrateContent__version___RbHEL,
.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__row___oCSfW > .SyllabusMigrateContent__code___Mc5ef {
	text-transform: uppercase;
}

.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__row___oCSfW > .SyllabusMigrateContent__version___RbHEL,
.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__row___oCSfW > .SyllabusMigrateContent__match___MZNi0 {
	opacity: 0.5;
}

.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__noCandidate___JznmW > .SyllabusMigrateContent__warning___M7XBg {
	font-weight: bold;
	padding: 4px;
}

.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__noCandidate___JznmW > .SyllabusMigrateContent__explanation___vEwJ7 {
	font-style: italic;
	padding: 4px;
}

.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__noCandidate___JznmW > .SyllabusMigrateContent__usage___uK1NI {
	padding: 4px;
}

.SyllabusMigrateContent__SyllabusMigrateContent___dWFJM > .SyllabusMigrateContent__noCandidate___JznmW > ul {
	margin: 4px;
	padding: 0;
	list-style-position: inside;
}

.SyllabusSetProgramme__SyllabusSetProgramme___QmnqU {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
}

.SyllabusSetProgramme__setItems___a0Ela {
	flex: unset;
}

.SyllabusSetProgramme__deactivate___Yc1e4 {
	text-decoration: line-through;
}

.SyllabusSetPreview__SyllabusSetPreview___Snh91 {
	flex: 1;
	position: relative;
}

.SyllabusSetPreview__wrapper___sjA9e {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
}

.SyllabusSetPreview__warningBar___qxhyf {
	background: #ffc20e;
	padding: 8px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.8);
	text-align: center;
}

.SyllabusSetPreview__warningBar___qxhyf > em {
	font-weight: bold;
	font-style: normal;
	color: #000;
}

.SyllabusSetPreview__syllabusSetWrapper___vK9nc {
	flex: 1;
	position: relative;
}

.SyllabusSetPreview__syllabusSet___bxRWa {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.SyllabusSetPreview__header___B48wC {
	padding: 8px;
	background: rgba(var(--theme-fg-parts), 0.04);
	border-bottom: 1px solid var(--theme-offset-bg);
	position: relative;
}

.SyllabusSetPreview__meta___tENx0 {
	font-size: var(--large-text);
	margin: 0;
	padding: 0;
	font-weight: normal;
}

.SyllabusSetPreview__pillbox___WxBjv {
	position: absolute;
	top: 8px;
	right: 8px;
}

.SyllabusSetPreview__pillbox___WxBjv > div > button:first-child {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	cursor: pointer;
}

.SyllabusSetPreview__pillbox___WxBjv > div > button:nth-child(2) {
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
	cursor: pointer;
}

.SyllabusSetPreview__defaultmsg___CQ4jW {
	display: block;
}

.SyllabusSetPreview__defaultmsg___CQ4jW > em {
	display: inline-block;
	background: #204a87;
	text-align: center;
	font-style: italic;
	font-weight: bold;
	width: 16px;
	height: 16px;
	border-radius: 32px;
	opacity: 0.5;
	margin: 0 8px 0 0;
}

.SyllabusSetPreview__description___ij7TD {
	margin: 8px 0 0;
	max-height: 67px;
	overflow-y: auto;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by simon on 2016-10-14
 */

.classlist__loadingSpinner___eMsaf {
	margin: 15% auto;
}

.classlist__classListTable___DF8qs {
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.classlist__classListTable___DF8qs tbody > tr > td,
.classlist__classListTable___DF8qs thead > tr > th {
	padding: 8px;
}

.classlist__classListTable___DF8qs .classlist__interHeader___Z8tGJ {
	position: sticky;
	top: 0;
	background: var(--theme-table-headers);
	z-index: 2;
}

.classlist__classListTable___DF8qs .classlist__interHeader___Z8tGJ > .classlist__header___xChZj {
	font-weight: normal;
	padding: 8px 8px 8px 38px;
	margin: 0;
}

.classlist__classListTable___DF8qs .classlist__interHeader___Z8tGJ button > * {
	vertical-align: middle;
}

.classlist__classListTable___DF8qs .classlist__message___CAMBE.classlist__none___NUj9N {
	padding: 8px 8px 8px 40px;
}

.classlist__classListTable___DF8qs .classlist__classRow___mNBJN {
	cursor: pointer;
}

.classlist__classListTable___DF8qs .classlist__classRow___mNBJN:hover {
	background: var(--theme-offset-bg);
}

.classlist__classListTable___DF8qs .classlist__blankRow___iCvlM,
.classlist__classListTable___DF8qs .classlist__blankRow___iCvlM > td {
	border: none;
	max-height: 0;
	height: 0;
	padding: 0;
	margin: 0;
	visibility: hidden;
}

.classlist__classListTable___DF8qs .classlist__colour___ISgK1 {
	box-sizing: border-box;
	width: 32px;
}

.classlist__classListTable___DF8qs .classlist__colour___ISgK1:hover {
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
	position: relative;
	transform: scale(1.05);
	z-index: 10;
}

.classlist__classListTable___DF8qs tbody :not(.classlist__blankRow___iCvlM) .classlist__colour___ISgK1 {
	height: 32px;
	width: 32px;
}

.classlist__classListTable___DF8qs .classlist__classname___Szmjj {
	box-sizing: border-box;
	width: 160px;
}

.classlist__classListTable___DF8qs td.classlist__classname___Szmjj {
}

.classlist__classListTable___DF8qs .classlist__subject___g7bE8 {
}

.classlist__classListTable___DF8qs .classlist__students___jLUw5 {
	box-sizing: border-box;
	text-align: center;
	width: 140px;
}

.classlist__classListTable___DF8qs td.classlist__students___jLUw5 {
}

.classlist__classListTable___DF8qs .classlist__programme___u7DRj.classlist__none___NUj9N {
}

.classlist__classListTable___DF8qs .classlist__actions___XtVu7 {
	box-sizing: border-box;
	cursor: default;
	text-align: left;
	width: 250px;
}

.classlist__classListTable___DF8qs .classlist__actions___XtVu7 button,
.classlist__classListTable___DF8qs .classlist__actions___XtVu7 a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	border: none;
	margin: 0 4px 0 0;
	vertical-align: top;
	width: 40px;
	height: 40px;
	padding: 0;
}

.classlist__classListTable___DF8qs .classlist__actions___XtVu7 button > svg,
.classlist__classListTable___DF8qs .classlist__actions___XtVu7 a > svg {
	width: 24px;
	height: 24px;
}

.classlist__classListTable___DF8qs .classlist__actions___XtVu7 button::-moz-focus-inner {
	padding: 0;
	border: 0 none;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Rami Ruhayel on 2016-11-10
 */

.Node__node___fMbly {
	border: none;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Rami Ruhayel on 2016-11-10
 */

.RootModule__root-module___lRk4D {
	display: block;
	margin: 0 auto 256px;
	transition: transform 1s;
	max-width: 1024px;
}

.use-intrinsic-height .RootModule__root-module___lRk4D {
	margin: 0 auto;
}

.document-width-micro .RootModule__root-module___lRk4D,
.document-width-nano .RootModule__root-module___lRk4D {
	margin: 0 0 128px;
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by simon on 2017-04-11
 */

.ThemeCard__ThemeCard___le8Yv {
	cursor: pointer;
	display: inline-flex;
	flex-direction: column;
	padding: 4px;
	margin: 4px;
	width: calc(100% / 2 - 16px);
	max-width: 240px;
	border-radius: 10px;
	position: relative;
}

.ThemeCard__ThemeCard___le8Yv.ThemeCard__selected___rKMcz {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
	cursor: default;
}

.ThemeCard__ThemeCard___le8Yv:not(.ThemeCard__selected___rKMcz):hover {
	background: var(--theme-offset-bg);
}

.ThemeCard__miniPreview___AncqW {
	background-size: cover;
	padding: 30% 0 0 30%;
	border-radius: 8px;
	overflow: hidden;
}

.ThemeCard__alpha___PGc4h,
.ThemeCard__beta___eW5bk {
	box-sizing: border-box;
	height: 30px;
	line-height: 30px;
	padding: 0 8px;
}

.ThemeCard__footer___DuTX5 {
}

.ThemeCard__title___MGhlA {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: bold;
	font-size: var(--small-text);
	text-transform: uppercase;
	display: block;
	margin: 4px 0 0;
	text-align: center;
}

.ThemeCard__footer___DuTX5 > button {
	width: 32px;
	height: 32px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: var(--theme-button-bg);
	color: var(--theme-button-fg);
	position: absolute;
	top: -4px;
	right: -4px;
}

.ThemeCard__footer___DuTX5 > button.ThemeCard__favourite___zlaFY {
}

.ThemeCard__footer___DuTX5 > button.ThemeCard__edit___Y571V {
	right: 32px;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by simon on 2017-04-11
 */

.ThemeBrowser__ThemeBrowser___q95Ye {
}

.ThemeBrowser__toolbar___GMybb {
	align-items: stretch;
	display: flex;
	flex-direction: row;
	margin: 0 0 8px;
}

.ThemeBrowser__toolbar___GMybb > input {
	flex: 1;
	margin: 0 8px;
}

.ThemeBrowser__title___PpKFr {
	text-transform: uppercase;
	flex: 1;
	padding: 0;
	margin: 0 8px 0 0;
	align-self: center;
}

.ThemeBrowser__filters___SkJCG {
	align-items: stretch;
	display: flex;
	margin: 0 8px 0 0;
}

.ThemeBrowser__filters___SkJCG > button {
}

.ThemeBrowser__filters___SkJCG > button:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-left: none;
}

.ThemeBrowser__filters___SkJCG > button:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.ThemeBrowser__filters___SkJCG > .ThemeBrowser__selected___EF9Qj {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.ThemeBrowser__body___CHk7h {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
}

.ThemeBrowser__themeless___IjArg {
	color: #ccc;
	font-style: italic;
	text-align: center;
	margin: 8px;
}

.ThemeBrowser__addTheme___IUoa9 {
	background: #f8f8f8;
	border: none;
	box-shadow: none;
	box-sizing: border-box;
	color: #bbb;
	cursor: pointer;
	margin: 10px 20px 4px;
	width: 100px;
	height: 100px;
}

.ThemeEditor__ThemeEditor___N2Uiq {
	flex: 1;
	display: flex;
	height: 800px;
	overflow: hidden;
	-webkit-overflow-scrolling: auto; /* TA-8501 overflow scrolling in safari blocks the colour chooser */
}

.ThemePalette__ThemePalette___Kt9_w {
	background-image: linear-gradient(
		to left,
		rgba(0, 0, 0, 0.5),
		30%,
		transparent 8px
	);
	background-image: linear-gradient(
		to left,
		rgba(0, 0, 0, 0.5),
		transparent 8px
	);
	flex-direction: column;
	width: 250px;
	display: flex;
	overflow-y: auto;
	overflow-x: hidden;
}

.ThemePalette__basic___zdeno,
.ThemePalette__document___Pccgn,
.ThemePalette__content___rLkkT,
.ThemePalette__typography___p67f9 {
	padding: 8px 8px 64px;
}

.ThemePalette__delete___bNCb5 {
	display: flex;
	min-height: 40px;
	flex-direction: column;
	padding: 10px;
}

.ThemePalette__wrapper___EYK8E {
	flex: 1;
	min-height: 570px;
}

.ThemePalette__ThemePalette___Kt9_w h2,
.ThemePalette__title___fhgLE {
	text-transform: uppercase;
	font-weight: bold;
	font-size: var(--small-text);
	margin: 0;
	padding: 0;
}

.ThemePalette__ThemePalette___Kt9_w label,
.ThemePalette__ThemePalette___Kt9_w input {
	vertical-align: middle;
}

.ThemePalette__name___tL54l > input {
	width: 100%;
	box-sizing: border-box;
}

.ThemePalette__ThemePalette___Kt9_w .ThemePalette__selector___ZZL_J input,
.ThemePalette__ThemePalette___Kt9_w .ThemePalette__checkbox___HmnO7 input {
	margin: 0 1ex 0 0;
}

.ThemePalette__ThemePalette___Kt9_w ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ThemePalette__ThemePalette___Kt9_w ol > li {
	padding: 0;
	margin: 8px 0 0;
	display: flex;
	align-items: center;
}

.ThemePalette__arrow___hn2TD {
	padding: 0 0 0 4px;
}

.ThemePalette__checkbox___HmnO7 {
	margin: 8px 0 0;
}

.ThemePalette__selector___ZZL_J {
	flex: 1;
}

.ThemePalette__ThemePalette___Kt9_w ol > li label {
	flex: 1;
	padding-left: 0;
}

.ThemePalette__buttonwrapper___VYZxO {
	display: flex;
	flex-direction: column;
}

.ThemePalette__fontFamily___zw1We {
	padding: 0;
	position: relative;
	margin: 10px 0 0;
	align-items: center;
	max-width: 100%;
	width: 100%;
}

.ThemePalette__fontFamily___zw1We > button,
.ThemePalette__fontFamily___zw1We > button label {
	display: flex;
	flex: 1;
	cursor: pointer;
}

.ThemePalette__fontFamily___zw1We > input {
	width: 6ex;
	border-radius: 0;
	text-align: center;
	color: #222;
}

button.ThemePalette__font___AGIac {
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	color: #444;
	cursor: pointer;
	display: block;
	padding: 8px;
	margin: 0;
	text-align: left;
	text-transform: uppercase;
	vertical-align: middle;
	width: 100%;
}

button.ThemePalette__font___AGIac:hover {
	background: #eee;
}

button.ThemePalette__font___AGIac label {
	cursor: pointer;
}

/**
 * TA-8587 Issues with Font size text box in Edge and Firefox
 * fontList fontSize
 *
 * Change width and display modes at your own peril. Suprising number of rendering inconsistincies between browsers
 * were noticed here. inline-flex broken in IE11. flex exceeding  bounds on some browers ,etc.
 * Ended up with dodgey pos: abs solution that at least is consistent amongst browsers.
 */
.ThemePalette__fontList___Ud7eK {
	display: inline-flex;
	margin-right: 120px;
	width: 160px;
}

.ThemePalette__fontList___Ud7eK input {
	max-width: 120px;
}

.ThemePalette__fontSize___pRQOX {
	box-sizing: border-box;
	position: absolute;
	right: 0;
	top: 0;
	max-width: 80px;
	width: 80px;
}

.ThemePalette__link___BQHfK {
	margin: 4px;
	text-transform: uppercase;
	font-size: var(--small-text);
	font-weight: bold;
	color: rgba(var(--theme-fg-parts), 0.5);
}

.ThemePalette__ThemePalette___Kt9_w a {
	background: none;
	border: none;
	padding: 4px;
	box-shadow: none;
	color: rgb(var(--theme-fg-parts));
}

button.ThemePalette__deleteButton___yp9Rk {
	cursor: pointer;
	color: #c00;
	position: static;
	margin: 4px 0 0;
	padding: 8px;
}

.ThemePalette__error___wGkxP {
	border-color: #c00;
	box-shadow: 0 0 4px #c00;
}

.ThemePalette__fileName___Bs65Y {
	color: rgba(var(--theme-fg-parts), 0.5);
	margin: 4px 0 0;
	align-self: center;
	width: 120px;
	height: 14px;
	text-overflow: ellipsis;
	overflow: hidden;
	text-align: center;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by simon on 2017-01-24
 */

.ColourPalette__ColourPalette___PNNNu {
	padding: 8px;
	border-radius: 3px;
	display: inline-block;
}

.ColourPalette__spectrum___aTjrO {
	cursor: crosshair;
	position: relative;
	width: 150px;
	height: 179px;
	display: inline-block;
	overflow: hidden;
	margin: 0 8px 0 0;
	vertical-align: top;
	transition: background 0.2s;
}

.ColourPalette__spectrum___aTjrO::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: '';
	z-index: 1;
}

.ColourPalette__hue___VM5yw {
	cursor: crosshair;
	width: 15px;
	height: 179px;
	display: inline-block;
	position: relative;
	overflow: hidden;
	vertical-align: top;
}

.ColourPalette__colourSelector___pv597,
.ColourPalette__hueSelector___c_lB2 {
	pointer-events: none;
	position: absolute;
	z-index: 2;
}

.ColourPalette__colourSelector___pv597 {
	height: 8px;
	width: 8px;
	border: solid 3px #fff;
	border-radius: 100%;
	margin-left: -7px;
	margin-top: -7px;
}

.ColourPalette__hueSelector___c_lB2 {
	left: 0;
	right: 0;
	height: 3px;
	background: #fff;
	top: -1px;
}

.ColourPalette__preview___Y17Ib {
	border: none;
	padding: 4px;
	margin: 8px 0 0;
	display: block;
	width: 177px;
	box-sizing: border-box;
	text-align: center;
	transition: background 0.1s;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by simon on 2017-01-25
 */

.ColourPresets__ColourPresets___upiqf {
	display: flex;
	flex-wrap: wrap;
	width: 260px;
	margin: 0 0 0 8px;
	padding: 8px;
}

.ColourPresets__colour___uc1Fs {
	height: 32px;
	width: 32px;
	margin: 0 4px 0 0;
	border-radius: 100%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

.ColourPresets__actions___lpHKO {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	width: 100%;
}

.ColourPresets__random___f7TXV,
.ColourPresets__reset___Hto84 {
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by simon on 2017-01-25
 */

.ColourChooser__ColourChooser___LN1xo {
	display: flex;
	padding: 8px 0 0 8px;
}

.ColourChooser__ColourChooser___LN1xo > *:first-child {
	margin-right: 8px;
}

.ColourButton__colourbutton___ueBX6 {
}

.ColourButton__previewColour___NtviE {
	width: 24px;
	height: 16px;
	border-radius: 2px;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.ColourButton__colourChooser___EeT2r {
	position: absolute;
	padding: 8px;
	display: block;
	background: #fff;
	border: 2px solid #3465a4;
	z-index: 50;
}

.ColourButton__arrow___G3dk_ {
	padding: 0 0 0 4px;
}

.ColourButton__colourbutton___ueBX6 > button:active {
	background: #eee;
	box-shadow: inset 0 -1px 1px #fff, inset 0 1px 1px #e8e8e8;
}

.ColourButton__colourbutton___ueBX6 > button:hover {
	background: #fff;
}

.SingleSelect__singleSelect___A7XKz {
	flex: 1;
	display: flex;
	position: relative;
}

.SingleSelect__list___AYnCc {
	position: absolute;
	border: solid 4px #3465a4;
	background: #eee;
	padding: 0;
	overflow: auto;
	max-height: 300px;
	min-width: 180px;
	left: 0;
	display: block;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
	text-align: center;
	width: 200px;
	z-index: 100;
	overflow-x: hidden;
	margin-top: 28px;
}

.SingleSelect__singleSelect___A7XKz li.SingleSelect__item___MwYzR {
	margin: 0;
	padding: 8px;
	border-bottom: solid 1px #ccc;
	cursor: pointer;
	background: none;
	border-radius: 0;
	box-shadow: none;
	color: #000;
	display: block;
	text-align: left;
	text-transform: uppercase;
	vertical-align: middle;
	width: 100%;
}

.SingleSelect__singleSelect___A7XKz li.SingleSelect__item___MwYzR.SingleSelect__highlighted___NDLPx {
	background-color: #3465a4;
	color: #fff;
}

.SingleSelect__singleSelect___A7XKz li.SingleSelect__item___MwYzR label {
	cursor: pointer;
}

.SingleSelect__singleSelect___A7XKz > input {
	cursor: pointer;
	height: 18px;
	width: 150px;
}

.SingleSelect__emptyList___UWGI_ {
	font-style: italic;
}

.SingleSelect__img___yNsji {
	cursor: pointer;
	position: relative;
	right: 22px;
	top: 6px;
}

.NumberInput__NumberInput___CbQ9L {
	align-items: stretch;
	display: inline-flex;
	flex-direction: row;
	padding: 0;
}

.NumberInput__NumberInput___CbQ9L > input {
	text-align: center;
	width: 2em;
	flex: 1;
	border-left: none;
	border-right: none;
}

.NumberInput__NumberInput___CbQ9L > button {
	padding: 0;
	width: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.NumberInput__NumberInput___CbQ9L > button:first-child {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.NumberInput__NumberInput___CbQ9L > button:last-child {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.ThemePreview__ThemePreview___N35_7 {
	flex: 1;
	align-items: center;
	justify-content: center;
	color: #ddd;
	overflow: auto;
	padding: 42px 10%;
	background-size: cover;
	-webkit-overflow-scrolling: touch;
}

.ThemePreview__moduleBackground___Ymmpt {
	flex: 1;
	background-color: #f8f8f8;
	margin: 0;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch; /* for Safari */
	margin-bottom: 1px;
}

.ThemePreview__titleModule___mBq5X {
	font-size: var(--huge-text);
	text-align: center;
	font-variant: small-caps;
	color: #fff;
	font-weight: 700;
	padding: 2ex;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	height: 20%;
	overflow: hidden;
}

@supports (background-blend-mode: soft-light) {
	.ThemePreview__titleModule___mBq5X {
		background-blend-mode: soft-light;
		background-image: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0),
			rgba(0, 0, 0, 1)
		);
	}
}

.ThemePreview__layoutModule___Vu65W {
	display: flex;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	flex-direction: row;
	flex-wrap: wrap;
	overflow: hidden;
}

.ThemePreview__section___bIhMa {
	overflow: hidden;
	-ms-overflow-style: none;
	min-height: 64px;
	max-width: 100%;
	width: 100%;
}

.ThemePreview__section___bIhMa.ThemePreview__one___JqG6M {
	flex: 2;
	flex-basis: 256px; /* needed for safari */
	line-height: 1.5;
	margin: 20px 30px;
}

.ThemePreview__section___bIhMa.ThemePreview__one___JqG6M span {
	overflow-wrap: normal;
	text-align: left;
	display: block;
}

.ThemePreview__section___bIhMa.ThemePreview__two___chSVb {
	flex: 1;
	flex-basis: 128px; /* needed for safari */
	margin: 20px 30px;
	padding: 8px 16px;
	position: relative;
	align-items: center;
	width: 300px;
	height: 250px;
	min-width: 300px;
	min-height: 250px;
	background-position: center;
	background-size: cover;
	text-align: center;
	border-radius: 2px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	transition: opacity 0.25s;
	display: list-item;
	-ms-scoll-limit: 0 0 0 0;
}

.ThemePreview__syllabusModule___gW737 {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 2px;
	margin: 0 auto;
	max-width: 480px;
	width: 100%;
	box-sizing: border-box;
	position: relative;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.ThemePreview__syllabusModule___gW737 > .ThemePreview__title___yFPHL {
	font-weight: 700;
	padding: 8px 0 4px;
	margin: 8px 16px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.ThemePreview__syllabusModule___gW737 > .ThemePreview__strand___XIiNe {
	text-transform: uppercase;
	margin: 8px 16px 0;
	font-size: var(--small-text);
}

.ThemePreview__syllabusModule___gW737 > .ThemePreview__area___C8j0_ {
	margin: 8px 16px 0;
	font-weight: 700;
}

.ThemePreview__syllabusModule___gW737 > .ThemePreview__details___HklxZ {
	margin: 8px 16px;
	opacity: 0.5;
	font-style: italic;
	font-size: var(--small-text);
}

.ThemePreview__syllabusModule___gW737 > .ThemePreview__setCode___ZO4Bb {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin: 0 0 8px;
}

.ThemePreview__syllabusModule___gW737 > .ThemePreview__setCode___ZO4Bb > .ThemePreview__set___AJJtR {
	position: relative;
	right: 0;
	padding: 2px 8px;
	margin-top: 8px;
	margin-left: 8px;
	max-width: 95%;
	background: rgba(0, 0, 0, 0.1);
	text-transform: uppercase;
}

.ThemePreview__syllabusModule___gW737 > .ThemePreview__setCode___ZO4Bb > .ThemePreview__code___CMa2j {
	position: relative;
	right: 0;
	margin-top: 8px;
	max-width: 70%;
	padding: 2px 8px;
	background: rgba(0, 0, 0, 0.1);
	text-transform: uppercase;
}

.ThemePreview__wrapper___p8YVZ {
	padding: 30px;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Rami Ruhayel on 2016-12-06
 */

.DropZone__before___Sbc9h.DropZone__hover___dTgXF,
.DropZone__after___DLzOx.DropZone__hover___dTgXF,
.DropZone__on___PH5dN.DropZone__hover___dTgXF {
	background: #f36f21;
	color: #fff;
	transform: scale(1.05);
	opacity: 0.8;
}

.DropZone__before___Sbc9h.DropZone__dragging___my8c7,
.DropZone__after___DLzOx.DropZone__dragging___my8c7,
.DropZone__on___PH5dN.DropZone__dragging___my8c7 {
	pointer-events: auto;
}

.DropZone__before___Sbc9h,
.DropZone__after___DLzOx,
.DropZone__on___PH5dN {
	overflow: hidden;
	flex-basis: 100%;
	color: #f36f21;
	text-align: center;
	text-transform: uppercase;
	background: #eee;
	padding: 24px;
	border: 2px dashed #f36f21;
	margin: 8px 0;
	transition: background 0.5s, color 0.5s, transform 0.5s, opacity 0.5s;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Abhishek Chouhan on 2017-03-07
 */

.EmptyCanvasHint__no-module___J2tA2 {
	text-align: center;
	padding: 32px 0 16px 0;
	color: #bcbcbc;
}

.EmptyCanvasHint__no-module___J2tA2 > .EmptyCanvasHint__heading___zPvNn {
	font-size: 200%;
	padding: 0 0 16px 0;
}

.EmptyCanvasHint__no-module___J2tA2 > .EmptyCanvasHint__message___Q8b51 {
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by Rami Ruhayel on 2017-01-04
 */

.Module__wrapper___mC00E {
	display: flex;
	flex-wrap: wrap;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	margin-bottom: 1em;
}

.Module__editingPanel___FHbMG {
	flex-basis: 100%;
	overflow: hidden;
}

.Module__module___qPx4d {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	box-shadow: none;
	transition: opacity 0.5s, max-height 0.5s, padding 0.5s, border-width 0.5s;
	transform: none;
	width: 100%;
}

.Module__module___qPx4d.Module__configuring___tb7wI {
}

/**
 * Modules within modules (e.g. a layout module) should not have a bottom border (EN-928).
 */
.Module__module___qPx4d .Module__module___qPx4d {
	border-bottom: none;
}

.document-width-nano .Module__module___qPx4d,
.document-width-micro .Module__module___qPx4d,
.document-width-tiny .Module__module___qPx4d,
.document-width-narrow .Module__module___qPx4d {
	transition: transform 0.5s, box-shadow 0.5s;
}

.Module__module___qPx4d.Module__no-edit___sNsQv {
	pointer-events: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	-ms-user-select: none;
}

.Module__module___qPx4d.Module__being-dragged___jGFnS {
	opacity: 0.25;
}

.Module__content___sbur8 {
	display: flex;
	flex-direction: column;
}

.document-width-nano .Module__content___sbur8,
.document-width-micro .Module__content___sbur8,
.document-width-tiny .Module__content___sbur8,
.document-width-narrow .Module__content___sbur8 {
	transition: transform 0.5s, box-shadow 0.5s;
	position: relative;
}

/**
 * These styles are used to animate the componentDidEnter/componentWillEnter & componentWillLeave/componenentDidLeave lifecycle phases
 * of the EditOptions panel.
 */
.Module__panel-enter___QFI25 {
	transform: scale(0);
}

.Module__panel-enter-active___ZPRVR {
	transform: scale(1);
	transition: scale 500ms ease-out;
}

.Module__panel-leave___HdFif {
	transform: scale(1);
}

.Module__panel-leave-active___AXDQk {
	transform: scale(0);
	transition: scale 500ms;
}
/**
 * These styles are used to animate the componentDidEnter/componentWillEnter lifecycle phases
 * of the Cog.
 */
.Module__cog-enter___F44K8 {
	opacity: 0;
}

.Module__cog-enter-active___lYlzu {
	opacity: 1;
	transition: opacity 500ms;
}

/**
 * Add height to the cog's wrapping div so that it flexes to the next row
 */
.Module__cog-row___PIin9 {
	height: 1px;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Rami Ruhayel on 2016-12-12
 */

.EditOptions__editOptions___ciiGk {
	display: flex;
	flex-direction: column;
	flex: 1;
	pointer-events: auto;
	overflow: hidden;
	font-family: 'Roboto', sans-serif;
	background-color: rgb(var(--theme-bg-parts));
	color: rgb(var(--theme-fg-parts));
}

.EditOptions__editingPanel___EJihh {
	color: #000;
	background: #f8f8f8;
	height: auto;
}

.document-width-nano .EditOptions__editingPanel___EJihh,
.document-width-micro .EditOptions__editingPanel___EJihh,
.document-width-tiny .EditOptions__editingPanel___EJihh,
.document-width-narrow .EditOptions__editingPanel___EJihh {
	height: auto;
}

.EditOptions__editOptions___ciiGk.EditOptions__editing___DLmUh {
}

.EditOptions__editing___DLmUh {
}

.EditOptions__delete___YSXKT {
	color: #c00;
}

.EditOptions__apply___raMfS {
	font-weight: bold;
}

.EditOptions__cancel___ZxHf0 {
}

.EditOptions__actions___E6UUS {
	display: flex;
	margin: 8px 0 0;
	padding: 8px;
	justify-content: space-between;
	flex-shrink: 0;
}

.document-width-micro .EditOptions__actions___E6UUS,
.document-width-tiny .EditOptions__actions___E6UUS,
.document-width-narrow .EditOptions__actions___E6UUS {
	border-radius: 0;
}

.EditOptions__title___K6NGa {
	margin: 0;
	padding: 8px;
	font-weight: normal;
	color: #666;
	text-transform: uppercase;
}

.EditOptions__editor-wrapper___XjEUt {
	flex: 1;
	overflow: auto;
}

icon.EditOptions__portal___gUG6r {
}

icon.EditOptions__portal___gUG6r.EditOptions__bin___otDyO:before {
}

.EditOptions__unconfigurable___ZdelY {
	font-style: italic;
	margin: 8px;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by bryn on 2017-04-18
 */

.ModuleTitle__ModuleTitle___bZIue {
	display: inline-flex;
	align-items: center;
	cursor: move;
	padding: 4px;
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	background-color: rgb(var(--theme-bg-parts));
	color: rgb(var(--theme-fg-parts));
}

.ModuleTitle__ModuleTitle___bZIue > .ModuleTitle__title___W7l4S {
	font-weight: bold;
	text-transform: uppercase;
	flex: 1;
	margin: 0 16px;
}

.ModuleTitle__ModuleTitle___bZIue > .ModuleTitle__buttons___qTLIh {
	cursor: default;
	display: flex;
}

.ModuleTitle__ModuleTitle___bZIue > .ModuleTitle__buttons___qTLIh > button {
	pointer-events: auto;
	margin: 4px;
	padding: 0;
	width: 32px;
	height: 32px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--theme-button-bg);
}

.ModuleTitle__ModuleTitle___bZIue > .ModuleTitle__buttons___qTLIh > button.ModuleTitle__delete___thPvS,
.ModuleTitle__ModuleTitle___bZIue > .ModuleTitle__buttons___qTLIh > button.ModuleTitle__down___HnAjz,
.ModuleTitle__ModuleTitle___bZIue > .ModuleTitle__buttons___qTLIh > button.ModuleTitle__up___79voL,
.ModuleTitle__ModuleTitle___bZIue > .ModuleTitle__buttons___qTLIh > button.ModuleTitle__config___zyGLH {
}

.ModuleTitle__ModuleTitle___bZIue > .ModuleTitle__buttons___qTLIh > button.ModuleTitle__hidden___O3RPk {
	display: none;
}

.ModuleTitle__ModuleTitle___bZIue > .ModuleTitle__buttons___qTLIh > button[disabled] {
	cursor: default;
	pointer-events: none;
}

.ModuleTitle__ModuleTitle___bZIue > .ModuleTitle__buttons___qTLIh > button[disabled]:hover {
	background: #eee;
	cursor: default;
}

.ModuleTitle__ModuleTitle___bZIue > .ModuleTitle__buttons___qTLIh > button[disabled] > img {
	margin: 1px 0;
	padding: 0;
	vertical-align: text-bottom;
	opacity: 0.3;
}

.ModuleTitle__ModuleTitle___bZIue > .ModuleTitle__buttons___qTLIh > button > svg {
	margin: 1px 0;
	padding: 0;
	vertical-align: text-bottom;
}

.ModuleTitle__ModuleTitle___bZIue.ModuleTitle__configuring___JspcZ > .ModuleTitle__buttons___qTLIh > button.ModuleTitle__config___zyGLH {
	background-color: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by david on 2016-12-16
 */
.TitleModuleConfiguration__config____9zpE {
	pointer-events: auto;
	transform: none;
	opacity: 1;
	filter: none;
}

.TitleModuleConfiguration__config____9zpE ol {
	padding: 0;
	margin: 0 8px;
	list-style: none;
	max-height: 400px;
	overflow: auto;
}

.document-width-nano .TitleModuleConfiguration__config____9zpE ol,
.document-width-micro .TitleModuleConfiguration__config____9zpE ol,
.document-width-tiny .TitleModuleConfiguration__config____9zpE ol,
.document-width-narrow .TitleModuleConfiguration__config____9zpE ol {
	max-height: none;
}

.TitleModuleConfiguration__config____9zpE li {
	padding: 0;
	margin: 8px 0;
}

.TitleModuleConfiguration__config____9zpE .TitleModuleConfiguration__label___jh2ly {
	display: block;
	padding: 0;
	margin: 0 0 8px;
}

.TitleModuleConfiguration__config____9zpE input {
	width: 100%;
	box-sizing: border-box;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Abhishek Chouhan on 2016-11-15
 */
.TitleModuleBody__moduleBody___X3nMr {
}

@supports (background-blend-mode: soft-light) {
	.TitleModuleBody__moduleBody___X3nMr {
		background-blend-mode: soft-light;
		background-image: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0),
			rgba(0, 0, 0, 1)
		);
	}
}

.TitleModuleBody__moduleBody___X3nMr > .TitleModuleBody__title___b9TCY {
	font-variant: small-caps;
	font-size: 3em;
	font-weight: bold;
	padding: 1ex;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by david on 2017-02-09
 */

.AssessmentModuleConfiguration__config___CGt70 {
	pointer-events: auto;
	transform: none;
	opacity: 1;
	filter: none;
}

.AssessmentModuleConfiguration__config___CGt70 ol {
	padding: 0;
	margin: 0 8px;
	list-style: none;
	max-height: 400px;
	overflow: auto;
}

.document-width-nano .AssessmentModuleConfiguration__config___CGt70 ol,
.document-width-micro .AssessmentModuleConfiguration__config___CGt70 ol,
.document-width-tiny .AssessmentModuleConfiguration__config___CGt70 ol,
.document-width-narrow .AssessmentModuleConfiguration__config___CGt70 ol {
	max-height: none;
}

.AssessmentModuleConfiguration__config___CGt70 li {
	padding: 0;
	margin: 8px 0;
	width: 100%;
}

.AssessmentModuleConfiguration__assessment___BiIip {
	width: 100%;
}

ol.AssessmentModuleConfiguration__outer___fW0Zy {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.AssessmentModuleConfiguration__assessments___omON7 {
	list-style: none;
	padding: 0;
	margin: 0;
	overflow-y: auto;
	max-height: 280px;
}

li.AssessmentModuleConfiguration__assessment___BiIip {
	display: flex;
	align-items: center;
	padding: 8px;
	margin: 0;
	box-sizing: border-box;
	cursor: pointer;
}

.AssessmentModuleConfiguration__assessment___BiIip .AssessmentModuleConfiguration__title___BSdY6 {
	margin: 0;
	padding: 0;
	font-weight: normal;
	flex: 4;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: currentColor;
}

li.AssessmentModuleConfiguration__selected___EsZe7 {
	background: #204a87;
	color: #fff;
}

.AssessmentModuleConfiguration__unselected___ckO2v {
}

.AssessmentModuleConfiguration__assessment___BiIip .AssessmentModuleConfiguration__title___BSdY6 {
	width: 69%;
	display: inline-block;
}

.AssessmentModuleConfiguration__assessment___BiIip .AssessmentModuleConfiguration__due___j3QhN {
	width: 20%;
	display: inline-block;
}

.AssessmentModuleConfiguration__assessment___BiIip .AssessmentModuleConfiguration__weighting___Nbn8B {
	width: 10%;
	display: inline-block;
}

.AssessmentModuleConfiguration__preview___OdFqT {
	padding: 8px;
	margin: 8px 0 0;
	text-align: center;
}

.AssessmentModuleConfiguration__preview___OdFqT h2 {
	padding: 0;
	margin: 0 0 8px;
	font-size: var(--small-text);
	text-transform: uppercase;
}

.AssessmentModuleConfiguration__loading___yIBiE {
	padding-top: 32px;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by david on 2017-02-09
 */

.AssessmentModuleBody__AssessmentModuleBody___bZNWr {
}

.AssessmentModuleBody__moduleBody___kCJal {
	display: flex;
	flex-basis: 100%;
	background: #fff;
	justify-content: center;
}

.document-width-nano .AssessmentModuleBody__moduleBody___kCJal > .AssessmentModuleBody__icon___AcQHM {
	display: none;
}

.AssessmentModuleBody__module-assessment___ZKES6 {
	background: transparent;
}

.AssessmentModuleBody__stats___SAwi6 {
	list-style: none;
	display: flex;
	margin: 16px 0;
	padding: 0;
}

.AssessmentModuleBody__stats___SAwi6 li {
	padding: 8px 0;
	margin: 0;
	flex: 1;
	border-right: 1px solid rgba(0, 0, 0, 0.2);
	text-align: center;
}

.AssessmentModuleBody__stats___SAwi6 li:last-child {
	border-right: none;
}

.AssessmentModuleBody__label___g2gE0 {
	display: block;
	font-size: var(--small-text);
	text-transform: uppercase;
	opacity: 0.5;
}

.AssessmentModuleBody__value___lEHcB {
}

.AssessmentModuleBody__mean___HLToK {
	background: inherit;
}

.AssessmentModuleBody__minimum___SBFJX {
	background: inherit;
}

.AssessmentModuleBody__maximum___WPzdH {
	background: inherit;
}

.AssessmentModuleBody__standardDeviation___Mfo3q {
	background: inherit;
}

.AssessmentModuleBody__custom___TcfKn {
	background: inherit;
}

.AssessmentModuleBody__achievement___QzrDl {
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	background: #fff;
	position: relative;
	height: 20px;
}

div.AssessmentModuleBody__card___EXR2R {
	border-radius: 2px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	margin: 32px auto;
	padding: 16px;
	position: relative;
	box-sizing: border-box;
	max-width: 320px;
	background: inherit;
}

.AssessmentModuleBody__card___EXR2R .AssessmentModuleBody__title___VlgF_ {
	font-size: var(--huge-text);
	font-weight: bold;
	margin: 0 20px 0 0;
	padding: 0;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.AssessmentModuleBody__card___EXR2R .AssessmentModuleBody__due___bpXee {
	text-transform: uppercase;
	font-size: var(--small-text);
	opacity: 0.5;
	display: block;
	margin: 8px 0;
}

.AssessmentModuleBody__pending___zGil_ {
}

.AssessmentModuleBody__marked___KviTB {
}

.AssessmentModuleBody__upcoming___K7rl8 {
}

.AssessmentModuleBody__unavailable___l4MDP {
}

.AssessmentModuleBody__loading___lD9xx {
}

.AssessmentModuleBody__card___EXR2R.AssessmentModuleBody__loading___lD9xx .AssessmentModuleBody__title___VlgF_ {
	color: #ccc;
	font-style: italic;
}

.AssessmentModuleBody__noneSelected___Ge5nH {
	opacity: 0.3;
	padding: 32px 0px;
	text-align: center;
	width: 100%;
	display: inline-block;
}

.AssessmentModuleBody__error___XRIyo {
	background: inherit;
}

.AssessmentModuleBody__error___XRIyo .AssessmentModuleBody__title___VlgF_ {
	color: #c00;
	text-align: center;
	font-size: var(--huge-text);
}

.AssessmentModuleBody__error___XRIyo .AssessmentModuleBody__explanation___XNLLc {
	opacity: 0.5;
	margin: 8px 0;
	display: block;
	text-align: center;
}

.AssessmentModuleBody__card___EXR2R > .AssessmentModuleBody__assessmentButton___wdbF8 {
	position: absolute;
	right: 4px;
	top: 4px;
	padding: 4px 6px 2px;
	border-radius: 4px;
	pointer-events: all;
}

.AssessmentModuleBody__result___HMnwO > ol > li {
	align-items: initial !important;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by huili on 2019-07-09
 */

.AssessableCriterion__AssessableCriterion___xKast {
}

.AssessableCriterion__header___yNbBq {
	display: flex;
	align-items: center;
	padding: 8px 16px;
	position: relative;
}

.AssessableCriterion__header___yNbBq > h3 {
	padding: 0;
	font-weight: bold;
	font-size: 100%;
	flex: 1;
}

.AssessableCriterion__header___yNbBq > .AssessableCriterion__score___PSStt {
	display: flex;
	align-items: center;
	margin: 0 32px 0 0;
}

.AssessableCriterion__header___yNbBq > .AssessableCriterion__score___PSStt.AssessableCriterion__graphable___8V5_L {
	width: 180px;
}

.AssessableCriterion__header___yNbBq > .AssessableCriterion__score___PSStt > label > input {
	text-align: right;
	border-radius: 4px 0 0 4px !important;
	padding: 4px;
	width: 4em;
}

.AssessableCriterion__header___yNbBq > .AssessableCriterion__score___PSStt > label.AssessableCriterion__invalid___tfSeK > input {
	background-color: #fcc;
	color: #900;
}

.AssessableCriterion__header___yNbBq > .AssessableCriterion__score___PSStt > label.AssessableCriterion__calculated___QyLVH > input {
	background-color: #f2e6a6;
	color: #000;
}

.AssessableCriterion__header___yNbBq > .AssessableCriterion__score___PSStt > label.AssessableCriterion__external___J_DaS > input {
	background-color: rgba(255, 194, 14, 0.4) !important;
}

.AssessableCriterion__header___yNbBq > .AssessableCriterion__score___PSStt > .AssessableCriterion__calculator___A5oFu {
	border: 1px solid var(--theme-offset-bg);
	border-left: none;
	border-radius: 0 4px 4px 0 !important;
	align-self: stretch;
	background-color: var(--theme-offset-bg);
}

.AssessableCriterion__header___yNbBq > .AssessableCriterion__score___PSStt > .AssessableCriterion__calculator___A5oFu > button {
	align-self: stretch;
	border: none;
	padding: 12px;
}

.AssessableCriterion__header___yNbBq > .AssessableCriterion__score___PSStt > .AssessableCriterion__max___tUjII {
	margin: 0 0 0 1ex;
	color: rgb(var(--theme-fg-parts));
}

.AssessableCriterion__description___KzlsO {
	padding: 0 16px 8px;
}

.AssessableCriterion__syllabus___Gq1l4 {
	padding: 8px 16px;
	color: rgba(var(--theme-fg-parts), 0.75);
	font-size: 80%;
}

.AssessableCriterion__syllabus___Gq1l4 > .AssessableCriterion__code___y8Dbi {
	opacity: 0.8;
	display: inline;
	padding: 0 4px 0 0;
}

.AssessableCriterion__syllabus___Gq1l4 > .AssessableCriterion__area___oRfms {
	display: inline;
}

.AssessableCriterion__syllabus___Gq1l4 > .AssessableCriterion__set___Bb4gO {
	font-weight: bold;
	margin: 4px 0;
}

.AssessableCriterion__syllabus___Gq1l4 > .AssessableCriterion__name___7HjtU {
	margin: 4px 0;
}

.AssessableCriterion__syllabus___Gq1l4 > .AssessableCriterion__details___s3Yvj {
	font-style: italic;
}

.AssessableCriterion__rubric___WVufe {
	margin: 8px 16px;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by bryn on 2019-05-28
 */

.Backfiles__Backfiles___xaSBI {
	padding: 0 0 32px;
	border-bottom: 2px solid var(--theme-offset-bg);
}

.Backfiles__Backfiles___xaSBI h3 {
	margin: 0;
	padding: 8px 16px;
	font-weight: bold;
	font-size: 100%;
	flex: 1;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by huili on 2019-07-09
 */

.OverallResult__OverallResult___sDuh_ > .OverallResult__overall___p08me {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	background-color: rgba(var(--theme-fg-parts), 0.05);
	color: rgb(var(--theme-fg-parts));
}

.OverallResult__OverallResult___sDuh_ > .OverallResult__overall___p08me > li {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-right: 1px solid var(--theme-offset-bg);
	padding: 16px 8px;
}

.OverallResult__OverallResult___sDuh_ > .OverallResult__overall___p08me > li > .OverallResult__label___sTBrk {
	text-transform: uppercase;
	font-size: 80%;
	opacity: 0.5;
	margin: 0 0 4px;
}

.OverallResult__OverallResult___sDuh_ > .OverallResult__overall___p08me > li.OverallResult__cohort___uFD69 > .OverallResult__label___sTBrk {
	opacity: 0.3;
}

.OverallResult__OverallResult___sDuh_ > .OverallResult__overall___p08me > li > .OverallResult__value____iOqu {
	padding: 4px;
	font-size: 125%;
	height: 1.15em;
}

.OverallResult__OverallResult___sDuh_ > .OverallResult__overall___p08me > li > div {
	font-size: 125%;
}

.OverallResult__OverallResult___sDuh_ > .OverallResult__overall___p08me > li label {
	width: 4em;
	padding-left: 0;
}

.OverallResult__OverallResult___sDuh_ > .OverallResult__overall___p08me > li input {
	text-align: center;
	border-radius: 4px;
	font-size: 125%;
	width: 4em;
	border: 1px solid var(--theme-offset-bg);
	padding: 2px 4px;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by bryn on 2019-05-10
 */

.StudentEngagements__StudentEngagements____RgRm {
	padding: 0 0 32px;
	border-bottom: 2px solid var(--theme-offset-bg);
}

.StudentEngagements__StudentEngagements____RgRm h2 {
	margin: 0;
	padding: 8px 16px;
	font-weight: normal;
	font-size: var(--large-text);
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
}

.StudentEngagements__StudentEngagements____RgRm h3 {
	margin: 0;
	padding: 8px 16px;
	font-weight: bold;
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
}

.StudentEngagements__StudentEngagements____RgRm > ol {
	list-style: none;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	padding: 0;
}

.StudentEngagements__StudentEngagements____RgRm > ol > .StudentEngagements__header___fUIUB {
	width: 100%;
}

.StudentEngagements__Engagement___NRmrY {
	width: 100%;
}

.StudentEngagements__Engagement___NRmrY > .StudentEngagements__question___dHOOs {
	padding-left: 16px;
	margin-left: 6px;
	opacity: 0.5;
}

.StudentEngagements__Engagement___NRmrY > .StudentEngagements__ratings___tMNS4 {
	display: flex;
	flex-wrap: wrap;
	margin-left: 1ex;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by huili on 2019-07-30
 */

.StudentEngagementFields__StudentEngagementField___h_CPS {
	display: flex;
	align-items: center;
	padding: 8px 16px;
	box-sizing: border-box;
}

.StudentEngagementFields__Comment___LoU6S {
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
	margin-left: 6px;
}

.StudentEngagementFields__Rating___qAnSV {
}

.StudentEngagementFields__Feeling___LQOO4 {
}

.StudentEngagementFields__Score___OPpTe {
}

.StudentEngagementFields__Score___OPpTe .StudentEngagementFields__invalid___b8N7Y {
	box-shadow: inset 0 0 2px 1px var(--orange);
}

.StudentEngagementFields__max___KBjKY {
	padding-left: 8px;
	opacity: 0.5;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by bryn on 2019-05-22
 */

.TeacherFeedback__TeacherFeedback___nKAX5 {
	border-bottom: none;
	padding: 0;
}

.TeacherFeedback__TeacherFeedback___nKAX5 > .TeacherFeedback__header___qI231 {
	display: flex;
}

.TeacherFeedback__TeacherFeedback___nKAX5 > .TeacherFeedback__header___qI231 > h3 {
	margin: 0;
	padding: 8px 16px;
	font-weight: bold;
	font-size: 100%;
	flex: 1;
}

.TeacherFeedback__TeacherFeedback___nKAX5 > .TeacherFeedback__header___qI231 > span {
	padding-right: 16px;
}

.TeacherFeedback__TeacherFeedback___nKAX5 > ol {
	display: block;
	list-style: none;
	margin: 0;
	flex-wrap: wrap;
	padding: 0;
}

.TeacherFeedback__TeacherFeedback___nKAX5 > ol > li {
	display: flex;
	margin: 8px 16px;
	flex-direction: column;
	align-items: stretch;
}

.TeacherFeedback__TeacherFeedback___nKAX5 > ol > li > .TeacherFeedback__title___qf5Jf {
	display: flex;
	position: relative;
}

.TeacherFeedback__TeacherFeedback___nKAX5 > ol > li > .TeacherFeedback__title___qf5Jf > label {
	flex: 1;
}

.TeacherFeedback__TeacherFeedback___nKAX5 > ol > li > .TeacherFeedback__value___Omy6W {
	width: 100%;
}

.TeacherFeedback__TeacherFeedback___nKAX5 > ol > li > .TeacherFeedback__value___Omy6W > .TeacherFeedback__Public___mRf0Y {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	min-height: 128px;
	width: 100%;
	border: 1px solid var(--theme-offset-bg-more);
}

.TeacherFeedback__TeacherFeedback___nKAX5 > ol > li > .TeacherFeedback__value___Omy6W > .TeacherFeedback__PublicFrame___FytxT {
	min-height: 128px;
	width: 100%;
}

.TeacherFeedback__TeacherFeedback___nKAX5 > ol > li > .TeacherFeedback__value___Omy6W > .TeacherFeedback__CommentBank___GVVY_ {
}

.TeacherFeedback__TeacherFeedback___nKAX5 > ol > li > .TeacherFeedback__value___Omy6W .commentbank {
	min-height: 128px;
	border-top: none;
}

.TeacherFeedback__TeacherFeedback___nKAX5 > ol > li.TeacherFeedback__private___eHSnY > label {
	padding-left: 0;
}

.TeacherFeedback__TeacherFeedback___nKAX5 > ol > li > .TeacherFeedback__value___Omy6W > .TeacherFeedback__FeedbackComments___finIV {
	max-width: 700px;
	width: 100%;
	height: 100%;
	overflow: auto;
}



/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Abhishek Chouhan on 2017-01-05
 */

.LearningFieldModuleConfiguration__learningField-config___VT4Kc {
	display: flex;
	flex-direction: column;
	margin: 4px 4px 0px 4px;
}

.LearningFieldModuleConfiguration__learningField-config___VT4Kc > .LearningFieldModuleConfiguration__error-message___zBcIW {
	display: block;
	font-style: italic;
	background: #f44242;
	padding: 8px;
	font-size: var(--small-text);
	text-align: center;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Abhishek Chouhan on 2017-01-05
 */

.LearningFieldModuleBody__moduleBody___y9NJS {
	height: 300px;
	flex-direction: row;
	background: #444;
	border-style: solid;
	border-width: 1px;
	pointer-events: auto;
}

.LearningFieldModuleBody__moduleBody___y9NJS > .LearningFieldModuleBody__book___wXnaj {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 4px 4px 4px 4px;
}

@media (max-width: 640px) {
	.LearningFieldModuleBody__moduleBody___y9NJS > .LearningFieldModuleBody__icon___vl99p {
		display: none;
	}
}

.SyllabusModuleConfiguration__checkboxContainer___ysqVs {
	display: flex;
}

.SyllabusModuleConfiguration__config___etR6A ol {
	flex: 1;
	padding: 0;
	margin: 0 8px;
	list-style: none;
	max-height: 400px;
	overflow: auto;
}

.SyllabusModuleConfiguration__config___etR6A li {
	padding: 0;
	margin: 8px 0;
}

.SyllabusModuleConfiguration__config___etR6A li.SyllabusModuleConfiguration__header___KeXci {
	font-weight: bold;
}

.SyllabusModuleConfiguration__checkbox___uIuSY {
	padding-left: 1ex;
	cursor: pointer;
}

.SyllabusModuleConfiguration__checkbox___uIuSY input {
	margin: 0 8px 0 0;
}

.SyllabusModuleConfiguration__actions___aLtMU {
	display: flex;
	padding: 4px;
}

.SyllabusModuleConfiguration__actions___aLtMU button {
	vertical-align: middle;
	margin: 4px;
}

.SyllabusModuleConfiguration__browse-syllabus___A3Mzv {
	flex: 2;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin: 0 8px 0 0;
}

.SyllabusModuleConfiguration__pick-colour___hioF6 {
	flex: 1;
}

.SyllabusModuleConfiguration__pick-colour-container___Yxzxo {
	display: inline-flex;
	width: 100%;
	align-items: center;
	margin: 0;
	flex: 1;
}

.SyllabusModuleConfiguration__pick-colour___hioF6 .SyllabusModuleConfiguration__swatch___kuFkC {
	width: 1.5em;
	height: 1em;
	background: transparent;
	border: 1px solid rgba(0, 0, 0, 0.1);
	margin: 0 8px 0 0;
}

.SyllabusModuleConfiguration__pick-colour___hioF6 .SyllabusModuleConfiguration__label___qzFnh {
	flex: 1;
	text-align: left;
}

.SyllabusModuleConfiguration__pick-colour___hioF6 .SyllabusModuleConfiguration__arrow___P7aUz {
}

.SyllabusModuleConfiguration__option___z35WV {
}

/*
 *
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by Steven Laidlaw on 2018-02-15
 */

.SyllabusModuleBody__content___IdCse {
	padding: 16px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	pointer-events: auto;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-02-15
 */

/*
 *
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by Steven Laidlaw on 2018-02-15
 */

.SyllabusModuleBodyItem__moduleContainer___gokdp {
	width: 298px; /* Specific width so that we can fit 3 side-by-side when at max-width */
	margin: 16px;
}

.SyllabusModuleBodyItem__moduleBody___pfZKH {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 2px;
	box-sizing: border-box;
	position: relative;
}

.SyllabusModuleBodyItem__moduleBody___pfZKH:empty {
	display: none;
}

.SyllabusModuleBodyItem__delete____aJ27 {
	position: absolute;
	top: 2px;
	right: 2px;
	padding: 2px 8px 5px;
	z-index: 2;
}

.SyllabusModuleBodyItem__delete____aJ27 > img {
	margin: 0;
}

.SyllabusModuleBodyItem__title___t1ErO {
	font-weight: bold;
	padding: 8px 0 4px;
	margin: 8px 16px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.SyllabusModuleBodyItem__strand___tByuI {
	text-transform: uppercase;
	margin: 8px 16px 0;
}

.SyllabusModuleBodyItem__strand___tByuI:empty {
	display: none;
}

.SyllabusModuleBodyItem__area___jBqx1 {
	margin: 8px 16px 0;
	font-weight: bold;
}

.SyllabusModuleBodyItem__area___jBqx1:empty {
	display: none;
}

.SyllabusModuleBodyItem__details___X9TXB {
	margin: 8px 16px;
	opacity: 0.5;
}

.SyllabusModuleBodyItem__details___X9TXB:empty {
	display: none;
}

.SyllabusModuleBodyItem__set-and-code___E5GH1 {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin: 0 0 8px;
}

.SyllabusModuleBodyItem__set-and-code___E5GH1:empty {
	display: none;
}

.SyllabusModuleBodyItem__set___tvm91 {
	position: relative;
	right: 0;
	padding: 2px 8px;
	margin-top: 8px;
	margin-left: 8px;
	max-width: calc(100% - 16px);
	background: rgba(0, 0, 0, 0.1);
	text-transform: uppercase;
}

.SyllabusModuleBodyItem__set___tvm91:empty {
	display: none;
}

.SyllabusModuleBodyItem__code___DCo8C {
	position: relative;
	right: 0;
	margin-top: 8px;
	max-width: calc(100% - 16px);
	padding: 2px 8px;
	background: rgba(0, 0, 0, 0.1);
	text-transform: uppercase;
}

.SyllabusModuleBodyItem__code___DCo8C:empty {
	display: none;
}

.SyllabusModuleBodyItem__contentContainer___r7St6 {
	width: 80%;
	margin: 0 auto;
}

.SyllabusModuleBodyItem__contentToggle___GUmKQ {
	padding: 8px 0 6px;
	text-align: center;
	cursor: pointer;
	text-transform: uppercase;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-02-16
 */

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-02-15
 */

.SyllabusModuleBodySubcontentItem__contentItem___K4SH_ {
	box-sizing: border-box;
	position: relative;
	padding: 8px 16px;
}

.SyllabusModuleBodySubcontentItem__contentItem___K4SH_:empty {
	display: none;
}

.SyllabusModuleBodySubcontentItem__delete___srm9R {
	position: absolute;
	top: 2px;
	right: 2px;
	padding: 2px 8px 5px;
	z-index: 2;
}

.SyllabusModuleBodySubcontentItem__delete___srm9R > img {
	margin: 0;
}

.SyllabusModuleBodySubcontentItem__name___oP4za {
	margin: 8px 0;
}

.SyllabusModuleBodySubcontentItem__code___GGriw {
	opacity: 0.5;
	margin: 8px 0;
	text-transform: uppercase;
}

.SyllabusModuleBodySubcontentItem__code___GGriw:empty {
	display: none;
}

.SyllabusModuleBodySubcontentItem__year___k6gb4 {
	margin: 8px 0;
	text-transform: uppercase;
}

.SyllabusModuleBodySubcontentItem__year___k6gb4:empty {
	display: none;
}

.SyllabusModuleBodySubcontentItem__details___VQTn2 {
	margin: 8px 0;
	opacity: 0.5;
}

.SyllabusModuleBodySubcontentItem__details___VQTn2:empty {
	display: none;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by david on 2017-01-06
 */
.MusicModuleConfiguration__config___OhhfJ {
	pointer-events: auto;
	transform: none;
	opacity: 1;
	filter: none;
}

.MusicModuleConfiguration__config___OhhfJ ol {
	padding: 0;
	margin: 0 8px;
	list-style: none;
	max-height: 400px;
	overflow: auto;
}

.document-width-nano .MusicModuleConfiguration__config___OhhfJ ol,
.document-width-micro .MusicModuleConfiguration__config___OhhfJ ol,
.document-width-tiny .MusicModuleConfiguration__config___OhhfJ ol,
.document-width-narrow .MusicModuleConfiguration__config___OhhfJ ol {
	max-height: none;
}

.MusicModuleConfiguration__config___OhhfJ li {
	padding: 0;
	margin: 8px 0;
}

.MusicModuleConfiguration__config___OhhfJ button {
	vertical-align: middle;
}

.MusicModuleConfiguration__config___OhhfJ .MusicModuleConfiguration__pillbox___L0Pyo {
	margin: 0;
	vertical-align: middle;
	display: inline-flex;
}

.MusicModuleConfiguration__config___OhhfJ .MusicModuleConfiguration__pillbox___L0Pyo button:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.MusicModuleConfiguration__config___OhhfJ .MusicModuleConfiguration__pillbox___L0Pyo button:not(:last-child) {
	border-right: none;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.MusicModuleConfiguration__config___OhhfJ .MusicModuleConfiguration__pillbox___L0Pyo button.MusicModuleConfiguration__active___Wg3Mb {
	background-color: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.MusicModuleConfiguration__config___OhhfJ .MusicModuleConfiguration__score___vHWXH textarea {
	height: 8em;
	font-size: var(--large-text);
	padding: 8px;
	box-sizing: border-box;
	width: 100%;
	resize: none;
	margin: 0;
}

.MusicModuleConfiguration__config___OhhfJ .MusicModuleConfiguration__help___EW5R6 {
	margin-left: 3px;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by david on 2017-01-06
 */
.MusicModuleBody__moduleBody___b9SD_:empty {
	display: none;
}

.MusicModuleBody__moduleBody___b9SD_ {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	padding: 32px;
	overflow: hidden;
	max-width: 100%;
}

.MusicModuleBody__moduleBody___b9SD_.MusicModuleBody__empty___ZuM5M {
	opacity: 0.3;
}

.MusicModuleBody__scoreWrapper___HCOmv {
	max-width: 100%;
}

.MusicModuleBody__score___a6NSl {
	width: 100%;
}

.MusicModuleBody__score___a6NSl.MusicModuleBody__show___Gkbzu {
}

.MusicModuleBody__score___a6NSl.MusicModuleBody__hide___kDLQN {
	display: none;
}

.MusicModuleBody__error___RsVEH.MusicModuleBody__show___Gkbzu {
	display: inline-block;
}

.MusicModuleBody__error___RsVEH.MusicModuleBody__hide___kDLQN {
	display: none;
}

.MusicModuleBody__error___RsVEH .MusicModuleBody__title___zYEg1 {
	color: #c00;
	font-weight: bold;
}

.MusicModuleBody__error___RsVEH .MusicModuleBody__explanation___vEn05 {
	line-height: 1;
	margin: 8px;
}

.MusicModuleBody__error___RsVEH .MusicModuleBody__score___a6NSl {
	background: #eee;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	margin: 8px 0 0;
	padding: 8px;
	white-space: pre-wrap;
}

.MathModuleConfiguration__config___lObRf {
	pointer-events: auto;
	transform: none;
	opacity: 1;
	filter: none;
}

.MathModuleConfiguration__config___lObRf ol {
	padding: 0;
	margin: 0 8px;
	list-style: none;
	max-height: 400px;
	overflow: auto;
}

.document-width-nano .MathModuleConfiguration__config___lObRf ol,
.document-width-micro .MathModuleConfiguration__config___lObRf ol,
.document-width-tiny .MathModuleConfiguration__config___lObRf ol,
.document-width-narrow .MathModuleConfiguration__config___lObRf ol {
	max-height: none;
}

.MathModuleConfiguration__config___lObRf li {
	padding: 0;
	margin: 8px 0;
}

.MathModuleConfiguration__config___lObRf button {
	vertical-align: middle;
}

.MathModuleConfiguration__config___lObRf .MathModuleConfiguration__pillbox___R4EMP {
	margin: 0;
	vertical-align: middle;
	display: inline-flex;
}

.MathModuleConfiguration__config___lObRf .MathModuleConfiguration__pillbox___R4EMP button:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.MathModuleConfiguration__config___lObRf .MathModuleConfiguration__pillbox___R4EMP button:not(:last-child) {
	border-right: none;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.MathModuleConfiguration__config___lObRf .MathModuleConfiguration__pillbox___R4EMP button.MathModuleConfiguration__active___p7het {
	background-color: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.MathModuleConfiguration__config___lObRf .MathModuleConfiguration__formula___Oa686 textarea {
	height: 8em;
	font-size: var(--large-text);
	padding: 8px;
	box-sizing: border-box;
	width: 100%;
	resize: none;
	margin: 0;
}

.MathModuleConfiguration__config___lObRf .MathModuleConfiguration__help___J78XP {
	margin-left: 3px;
}

.MathModuleBody__moduleBody___wleis:empty {
	display: none;
}

.MathModuleBody__moduleBody___wleis {
	display: flex;
	justify-content: center;
	margin: 10px;
	padding: 32px;
	overflow: hidden;
	max-width: 100%;
}

.MathModuleBody__moduleBody___wleis.MathModuleBody__empty___YWgoX {
	opacity: 0.3;
}

.MathModuleBody__formulaWrapper___Ew0zF {
	max-width: 100%;
}

.MathModuleBody__formula___cW9aN {
	width: 100%;
}

.MathModuleBody__formula___cW9aN.MathModuleBody__show___oeBSB {
}

.MathModuleBody__formula___cW9aN.MathModuleBody__hide___Tbl3P {
	display: none;
}

.MathModuleBody__error___rdTlq.MathModuleBody__show___oeBSB {
	display: inline-block;
}

.MathModuleBody__error___rdTlq.MathModuleBody__hide___Tbl3P {
	display: none;
}

.MathModuleBody__error___rdTlq .MathModuleBody__title___ojJIh {
	color: #c00;
	font-weight: bold;
}

.MathModuleBody__error___rdTlq .MathModuleBody__explanation___WWRTn {
	line-height: 1;
	margin: 8px;
}

.MathModuleBody__error___rdTlq .MathModuleBody__formula___cW9aN {
	background: #eee;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	margin: 8px 0 0;
	padding: 8px;
	white-space: pre-wrap;
}

.MathModuleBody__pending___neQwm {
	color: #444;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by bryn on 2017-01-17
 */

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP {
	margin: 8px;
	text-align: center;
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP > div > label {
	display: inline-block;
	margin: 8px 0px;
	padding: 0;
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP > div > label > input {
	margin: 0 6px 0 0;
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP > div > label > input[disabled] {
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP .ResourceModuleConfiguration__fileList___DGUSW {
	padding: 0;
	margin: 0;
	list-style: none;
	overflow-y: auto;
	max-height: 280px;
	text-align: left;
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP .ResourceModuleConfiguration__fileList___DGUSW > li {
	display: flex;
	align-items: center;
	padding: 0 4px 0 0;
	margin: 0;
	box-sizing: border-box;
	cursor: pointer;
	border-bottom: 1px solid var(--theme-offset-bg);
	height: 40px;
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP .ResourceModuleConfiguration__fileList___DGUSW > li.ResourceModuleConfiguration__placeholder___nLfU5 {
	min-height: 20px;
	background-color: #555;
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP .ResourceModuleConfiguration__fileList___DGUSW > li.ResourceModuleConfiguration__selected___VrTqs {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

/* Styling to be worked out later */
.ResourceModuleConfiguration__resourceConfiguration___Bb8uP .ResourceModuleConfiguration__fileList___DGUSW > li.ResourceModuleConfiguration__hover___bZL7O {
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP .ResourceModuleConfiguration__fileList___DGUSW > li > .ResourceModuleConfiguration__handle___xlt0m {
	padding: 8px 12px;
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP .ResourceModuleConfiguration__fileList___DGUSW > li > svg {
	height: 32px;
	width: 32px;
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP .ResourceModuleConfiguration__fileList___DGUSW > li > img,
.ResourceModuleConfiguration__resourceConfiguration___Bb8uP .ResourceModuleConfiguration__fileList___DGUSW > li > div.ResourceModuleConfiguration__image___dokLf {
	max-height: 100%;
	margin: auto 0;
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP .ResourceModuleConfiguration__fileList___DGUSW > li > h2 {
	margin: 0;
	padding: 8px;
	font-weight: normal;
	color: currentColor;
	flex: 1;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP .ResourceModuleConfiguration__fileList___DGUSW > li > button {
	padding: 0;
	margin: 0;
	font-size: var(--small-text);
	align-self: center;
	width: 32px;
	height: 32px;
	border-radius: 100%;
	align-items: center;
	justify-content: center;
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP .ResourceModuleConfiguration__fileList___DGUSW > li > button > svg {
	margin: 0;
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP .ResourceModuleConfiguration__fileList___DGUSW > li > button.ResourceModuleConfiguration__remove___jdvgf {
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP .ResourceModuleConfiguration__fileUpload___z0A1a {
	display: block;
	text-align: center;
	padding: 0;
	margin: 8px 0;
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP .ResourceModuleConfiguration__fileUpload___z0A1a > button {
	color: #f36f21;
	padding: 8px 32px;
	vertical-align: middle;
}

.ResourceModuleConfiguration__resourceConfiguration___Bb8uP .ResourceModuleConfiguration__fileUpload___z0A1a > span {
	display: block;
	font-size: var(--small-text);
	font-style: italic;
	color: #999;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Abhishek Chouhan on 2016-11-15
 */
.ResourceModuleBody__moduleBody___xzEup {
	display: flex;
	width: 100%;
	text-shadow: none;
	pointer-events: auto; /* Resource module body should always allow pointer events, even in read-only mode (EN-1040). */
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__list___ZrR6l {
	flex: 1;
	padding: 8px 8px 8px 0;
	align-items: center;
	text-align: center;
	border-style: none;
	max-width: 100%;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__list___ZrR6l > ol {
	margin: 0;
	padding: 4px;
	list-style: none;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
}

.ResourceModuleBody__moduleBody___xzEup ol > li {
	margin: 4px;
	padding: 8px 16px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-left-width: 8px;
	border-radius: 2px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: opacity 0.25s;
	position: relative;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__list___ZrR6l > ol > li.ResourceModuleBody__link___xTEhP {
	padding: 0;
	max-width: 90%;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__list___ZrR6l > ol > li > a {
	text-shadow: none;
	cursor: pointer;
	color: #000;
	width: 100%;
	display: inline-block;
	text-decoration: none;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__list___ZrR6l > ol > li.ResourceModuleBody__link___xTEhP > a {
	padding: 8px 16px;
	text-decoration: none;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__list___ZrR6l > ol > li.ResourceModuleBody__card___KFJuR {
	position: relative;
	width: 128px;
	height: 128px;
	text-align: center;
	background-size: cover;
	background-position: center;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__list___ZrR6l > ol > li.ResourceModuleBody__card___KFJuR.ResourceModuleBody__image___qK34m {
	border: none;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__list___ZrR6l > ol > li.ResourceModuleBody__card___KFJuR div.ResourceModuleBody__name___EOBo3 {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	padding: 4px;
	overflow: hidden;
	text-overflow: hidden;
	white-space: nowrap;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__list___ZrR6l > ol > li.ResourceModuleBody__card___KFJuR div.ResourceModuleBody__name___EOBo3 > span {
	display: block;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__list___ZrR6l > ol > li.ResourceModuleBody__card___KFJuR div.ResourceModuleBody__name___EOBo3.ResourceModuleBody__inverted___vqVD7 {
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	text-shadow: none;
}

.ResourceModuleBody__moduleBody___xzEup ol > li svg {
	width: 64px;
	height: 64px;
	margin: 16px 28px 24px;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e {
	flex: 1;
	overflow: hidden;
	padding: 0;
	position: relative;
	min-height: 240px;
}

.document-width-standard .ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e {
	max-height: 640px;
}

.document-width-narrow .ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e {
	max-height: 480px;
}

.document-width-tiny .ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e {
	max-height: 320px;
}

.document-width-micro .ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e,
.document-width-nano .ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e {
	max-height: 240px;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > button,
.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > .ResourceModuleBody__pills___ubAC8 {
	position: absolute;
	z-index: 1;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > button {
	height: 64px;
	width: 64px;
	border: none;
	border-radius: 0;
	box-shadow: none;
	background: #000;
	color: #fff;
	opacity: 0.4;
	top: calc(50% - 32px);
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > button > svg {
	width: 32px;
	height: 32px;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > button.ResourceModuleBody__previous___bHma8 {
	left: 0;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > button.ResourceModuleBody__next___KJRzG {
	right: 0;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > div.ResourceModuleBody__pills___ubAC8 {
	display: flex;
	align-items: center;
	position: absolute;
	z-index: 5;
	bottom: 8px;
	right: 8px;
	padding: 4px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border-radius: 4px;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > div.ResourceModuleBody__pills___ubAC8 > .ResourceModuleBody__pill___jRPw9 {
	cursor: pointer;
	padding: 4px;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > div.ResourceModuleBody__pills___ubAC8 > .ResourceModuleBody__pill___jRPw9 > svg {
	width: 16px;

	height: 16px;

	display: block;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > ol {
	list-style: none;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > ol > li {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: 0;
	padding: 0;
	border-radius: 0;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	transition: opacity 0.5s, transform 0.5s, visibility 0.5s;
	background-image: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.1) 50%,
		rgba(0, 0, 0, 0) 50%
	);
	box-shadow: none;
	border: none;

	opacity: 0;
	visibility: hidden;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > ol > li.ResourceModuleBody__active___G7Kt7 {
	opacity: 1;
	visibility: visible;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > ol > li > a {
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
	cursor: pointer;
	color: #000;
	width: 100%;
	height: 100%;
	display: flex;
	text-decoration: none;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > ol > li div.ResourceModuleBody__image___qK34m {
	flex: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > ol > li div.ResourceModuleBody__image___qK34m > img.ResourceModuleBody__icon___dU40V {
	margin: 0;
	height: 128px;
	width: 128px;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > ol > li div.ResourceModuleBody__name___EOBo3.ResourceModuleBody__full___gss8h {
	flex: 3;
	font-size: var(--huge-text);
	text-align: left;
	font-weight: bold;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > ol > li div.ResourceModuleBody__name___EOBo3.ResourceModuleBody__full___gss8h span {
	display: block;
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > ol > li div.ResourceModuleBody__name___EOBo3.ResourceModuleBody__full___gss8h span.ResourceModuleBody__pending___RdUDB {
	font-size: var(--small-text);
}

.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__slideshow___H6_0e > ol > li div.ResourceModuleBody__name___EOBo3.ResourceModuleBody__hidden___E4x4T {
	display: none;
}

@media (max-width: 640px) {
	.ResourceModuleBody__moduleBody___xzEup > .ResourceModuleBody__icon___dU40V {
		display: none;
	}
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by huili on 2017-07-20
 */

.EmptyModule__EmptyModule___OS1xM {
	opacity: 0.3;
	text-align: center;
	margin: 32px 0;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by simon on 2016-12-14
 */

.SEQTAEditor__SEQTAEditor___w897b {
	cursor: text;
	margin: 0;
	pointer-events: all;
	-webkit-user-select: text;
	   -moz-user-select: text;
	        user-select: text;
	min-height: 128px;
	width: 100%;
}

.SEQTAEditor__SEQTAEditor___w897b:not(.SEQTAEditor__viewMode___gwmAw) {
	padding-bottom: 36px;
}

.SEQTAEditor__SEQTAEditor___w897b > .DraftEditor-root {
	padding: 0 32px;
	position: relative;
	-webkit-user-select: text; /** see https://github.com/facebook/draft-js/issues/310 **/
}

.SEQTAEditor__SEQTAEditor___w897b > .DraftEditor-root .public-DraftEditorPlaceholder-inner {
	position: absolute;
	left: 34px;
	top: 34px;
	opacity: 0.5;
	pointer-events: none;
}

.seqta-editor-header-one,
.seqta-editor-header-two,
.seqta-editor-header-three,
.seqta-editor-paragraph,
.seqta-editor-table,
.seqta-editor-image,
.seqta-editor-code-block,
.seqta-editor-blockquote,
.seqta-editor-unordered-list-item,
.seqta-editor-ordered-list-item {
	background: none;
	border: none;
	box-shadow: none;
	color: inherit;
	text-shadow: none;
	line-height: 1.5;
	margin: 8px 0;
	padding: 0;
}

.seqta-editor-unordered-list-item,
.seqta-editor-ordered-list-item {
	margin: 4px 0;
	padding: 0;
	list-style-position: outside;
}

.seqta-editor-unordered-list-item > div,
.seqta-editor-ordered-list-item > div {
	display: inline;
}

h1.seqta-editor-header-one {
	border: none;
	text-shadow: none;
	outline: none;
	font-size: var(--huge-text);
	font-weight: bold;
}

h2.seqta-editor-header-two {
	border: none;
	text-shadow: none;
	outline: none;
	font-size: var(--huge-text);
}

h3.seqta-editor-header-three {
	border: none;
	text-shadow: none;
	outline: none;
	font-size: var(--large-text);
}

.seqta-editor-align-left {
	text-align: left;
}

.seqta-editor-align-justify {
	text-align: justify;
}

.seqta-editor-align-center {
	text-align: center;
}

.seqta-editor-align-right {
	text-align: right;
}

.SEQTAEditor__SEQTAEditor___w897b .depth-0 {
	margin-left: 0;
}

.SEQTAEditor__SEQTAEditor___w897b .depth-1 {
	list-style-type: circle;
	margin-left: 16px;
}

.SEQTAEditor__SEQTAEditor___w897b .depth-2 {
	list-style-type: square;
	margin-left: 32px;
}

.SEQTAEditor__SEQTAEditor___w897b .depth-3 {
	list-style-type: disc;
	margin-left: 48px;
}

.SEQTAEditor__SEQTAEditor___w897b .depth-4 {
	list-style-type: circle;
	margin-left: 64px;
}

.SEQTAEditor__SEQTAEditor___w897b .depth-5 {
	list-style-type: square;
	margin-left: 80px;
}

.seqta-editor-code-block {
	background: var(--theme-offset-bg);
	font-family: monospace;
	padding: 16px;
	white-space: pre-wrap;
	border-radius: 2px;
}

.seqta-editor-blockquote {
	border-left: 4px solid var(--theme-offset-bg-more);
	opacity: 0.5;
	font-style: italic;
	padding: 16px;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by simon on 2016-12-14
 */

.Table__Table___sOyoM {
	border-collapse: collapse;
}

.Table__Table___sOyoM > thead > tr > th,
.Table__Table___sOyoM > tbody > tr > td {
	border: 1px solid #000;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by simon on 2017-01-23
 */

.BlockStyleDropdown__BlockStyleDropdown___DVqrD {
	width: 140px;
	height: 35px;
}

.BlockStyleDropdown__blockStyleButton___LwvXT {
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	color: inherit;
	cursor: pointer;
	display: block;
	padding: 8px;
	margin: 0;
	text-align: left;
	text-transform: uppercase;
	vertical-align: middle;
	width: 100%;
}

.BlockStyleDropdown__blockStyleButton___LwvXT > * {
	display: block;
	padding: 0;
	margin: 0;
}

.BlockStyleDropdown__activeStyle___O5xLY {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.BlockStyleDropdown__activeStyle___O5xLY > .code-block {
	background: none;
}

.BlockStyleDropdown__blockStyleButton___LwvXT:hover {
	background: var(--theme-offset-bg);
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by simon on 2017-02-09
 */

.ToolbarDropdownButton__ToolbarDropdownButton___Uy2zG {
	cursor: pointer;
	display: inline-block;
	padding: 0;
	position: relative;
	vertical-align: middle;
	white-space: nowrap;
}

.ToolbarDropdownButton__ToolbarDropdownButton___Uy2zG.ToolbarDropdownButton__shown___gkU0J {
	color: rgb(var(--theme-sel-fg-parts));
	background: rgb(var(--theme-sel-bg-parts));
}

.ToolbarDropdownButton__ToolbarDropdownButton___Uy2zG.ToolbarDropdownButton__disabled___WeFI9 {
	cursor: default;
	opacity: 0.4;
}

.ToolbarDropdownButton__indicatorButton___BY6Go {
	display: inline-block;
	flex: 1;
	overflow: hidden;
	text-transform: uppercase;
	text-overflow: ellipsis;
	margin: 8px;
	vertical-align: middle;
	white-space: nowrap;
	font-weight: bold;
	font-size: var(--small-text);
}

.ToolbarDropdownButton__echelon___gcYbc {
	position: absolute;
	right: 0;
	margin: 8px;
	vertical-align: middle;
}

.ToolbarDropdownButton__echelon___gcYbc::before {
	content: '';
	border: 4px solid transparent;
	border-top-color: currentColor;
	display: inline-block;
	height: 0;
	margin-top: 2px;
	vertical-align: middle;
	width: 0;
}

.ToolbarDropdownButton__dropdown___YbIdH {
	background: rgb(var(--theme-bg-parts));
	color: rgb(var(--theme-fg-parts));
	border-radius: 4px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	box-sizing: border-box;
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0;
	text-align: center;
	width: 240px;
	z-index: 100;
}

.ToolbarDropdownButton__dropdown___YbIdH.ToolbarDropdownButton__shown___gkU0J {
	display: block;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by simon on 2017-02-09
 */

.LinkDropdown__LinkDropdown___m0uAy {
	z-index: 100;
}

.LinkDropdown__wrapper____niZk {
	display: flex;
	margin: 8px;
	flex-direction: column;
	align-items: stretch;
}

.LinkDropdown__wrapper____niZk label {
	color: #888;
	text-align: left;
	padding: 0;
}

.LinkDropdown__wrapper____niZk > * {
	margin: 0 0 4px;
}

.LinkDropdown__wrapper____niZk > *:last-child {
	margin: 0;
}

.LinkDropdown__actions___CQicr {
	display: flex;
	flex-direction: row;
	justify-items: flex-start;
}

.LinkDropdown__actions___CQicr > button:last-child {
	margin-left: auto;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by simon on 2017-01-18
 */

.StyleButton__StyleButton___gf4EM {
	cursor: pointer;
	display: inline-block;
	padding: 8px;
	vertical-align: middle;
}

.StyleButton__StyleButton___gf4EM > span {
}

.StyleButton__StyleButton___gf4EM.StyleButton__active___unoPS {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.StyleButton__StyleButton___gf4EM:hover {
	background: var(--theme-offset-bg);
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by simon on 2017-01-18
 */

.ColourButton__ColourButton___tscEw {
}

.ColourButton__indicatorButton___QoYFE {
	margin: 0;
}

.ColourButton__indicator___BLyfI {
	width: 32px;
	height: 32px;
}

.ColourButton__indicatorText___q8KSh {
	font-weight: bold;
	stroke: #000000;
	stroke-width: 0.3;
	text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
	font-size: var(--large-text);
}

.ColourButton__indicatorColour___FZSly {
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
	opacity: 1;
	stroke: #000000;
	stroke-width: 0.3;
}

.ColourButton__dropdown___a7VNy {
	width: 400px;
	padding: 8px;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by simon on 2017-01-18
 */

.Toolbar__Toolbar___xps1j {
	overflow: hidden; /* For some reason autoprefixer doesnt pick this up */
	position: sticky;
	white-space: nowrap;
	top: -32px;
	z-index: 1;
	background-color: rgb(var(--theme-bg-alt-parts));
	color: rgb(var(--theme-fg-parts));
}

.seqtaeditor-toolbar-mid .Toolbar__mid___iF4TZ {
	display: none;
}

.seqtaeditor-toolbar-small .Toolbar__mid___iF4TZ,
.seqtaeditor-toolbar-small .Toolbar__small___eQ2Oy {
	display: none;
}

.Toolbar__Toolbar___xps1j:not(.Toolbar__focused___zVk8m):hover,
.Toolbar__Toolbar___xps1j.Toolbar__focused___zVk8m {
	opacity: 1;
}

.Toolbar__Toolbar___xps1j .Toolbar__ColourButton___VJTG3,
.Toolbar__Toolbar___xps1j .Toolbar__StyleButton___ggyWl {
	color: #999;
	cursor: pointer;
	display: inline-block;
	padding: 8px;
	vertical-align: middle;
}

.Toolbar__Toolbar___xps1j .Toolbar__ColourButton___VJTG3.Toolbar__active___a2LpJ,
.Toolbar__Toolbar___xps1j .Toolbar__StyleButton___ggyWl.Toolbar__active___a2LpJ {
	color: #444;
}

.Toolbar__Toolbar___xps1j .Toolbar__ColourButton___VJTG3:hover,
.Toolbar__Toolbar___xps1j .Toolbar__StyleButton___ggyWl:hover {
	background: #f4f4f4;
	color: #444;
}

.Toolbar__extra___UOZGU {
	width: 32px;
	height: 35px;
	text-align: center;
	position: absolute;
	right: 0;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by simon on 2017-02-21
 */

.Debugger__Debugger___zwJBv {
	background: #222;
	color: #ddd;
	height: 500px;
	overflow-y: auto;
	padding: 8px;
}

.Debugger__Debugger___zwJBv label {
	color: #999;
	padding: 0;
}

.Debugger__Debugger___zwJBv pre {
	white-space: pre-wrap;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by simon on 2017-02-09
 */

.Link__Link___yzIgs {
	background: none;
	border: none;
	border-radius: 0;
	color: #3465a4;
	padding: 0;
	position: relative;
	box-shadow: none;
	text-shadow: none;
	text-decoration: underline;
}

.Link__Link___yzIgs:hover {
	color: #999;
}

.Link__Link___yzIgs:visited {
	color: #3465a4;
}

.Link__Link___yzIgs:hover::after {
	background: #fff;
	border: 1px solid #aaa;
	border-radius: 4px;
	color: #888;
	content: attr(href);
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	padding: 8px;
	opacity: 1;
	z-index: 10;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by david on 2017-01-11
 */
.WebModuleConfiguration__config___JE2Gk ol {
	padding: 0;
	margin: 0 8px;
	list-style: none;
	max-height: 400px;
	overflow: auto;
}

.document-width-nano .WebModuleConfiguration__config___JE2Gk ol,
.document-width-micro .WebModuleConfiguration__config___JE2Gk ol,
.document-width-tiny .WebModuleConfiguration__config___JE2Gk ol,
.document-width-narrow .WebModuleConfiguration__config___JE2Gk ol {
	max-height: none;
}

.WebModuleConfiguration__config___JE2Gk li {
	padding: 0;
	margin: 8px 0;
}

.WebModuleConfiguration__config___JE2Gk .WebModuleConfiguration__label___MTeTz {
	display: block;
	padding: 0;
	margin: 0 0 8px;
}

.WebModuleConfiguration__config___JE2Gk .WebModuleConfiguration__web-address___tRBIj {
	box-sizing: border-box;
	width: 100%;
	resize: none;
	margin: 0;
	padding: 4px;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by david on 2017-01-12
 */
.WebModuleBody__moduleBody___pIa2K {
	display: block;
	justify-content: center;
	width: 100%;
	pointer-events: initial;
}

.document-width-nano .WebModuleBody__moduleBody___pIa2K > .WebModuleBody__icon___ECDrZ {
	display: none;
}

.WebModuleBody__full___JfOVz {
	display: block;
	width: 100%;
	height: 600px;
}

.WebModuleBody__url___UR_su {
	max-width: 100%;
	margin-bottom: auto;
	margin-top: auto;
}

.WebModuleBody__url___UR_su.WebModuleBody__hide___S7x3F {
	display: none;
}

.WebModuleBody__url___UR_su.WebModuleBody__show___QPAsQ {
	display: flex;
}

.WebModuleBody__waiting____GYqC {
	background: transparent;
}

.WebModuleBody__error___S5k02 {
	background: transparent;
}

.WebModuleBody__video___zQHV6,
.WebModuleBody__rich___Qq268 {
	display: block;
	background: transparent;
	width: 100%;
}

.WebModuleBody__link____AsCy {
	display: block;
	max-width: 320px;
	margin: 32px auto;
	padding: 16px;
	box-sizing: border-box;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	border-radius: 2px;
	color: #fff;
}

.WebModuleBody__link____AsCy:hover {
	opacity: 0.8;
}

.WebModuleBody__link____AsCy img {
	display: block;
	max-width: 100%;
	padding: 0;
}

.WebModuleBody__link____AsCy img + span {
	margin-top: 16px;
}

.WebModuleBody__link____AsCy span {
	display: block;
}

.WebModuleBody__photo___D4jLZ {
	display: block;
	max-width: 100%;
	max-height: 400px;
	margin: 0 auto;
}

.WebModuleBody__rich___Qq268 > iframe,
.WebModuleBody__video___zQHV6 > iframe {
	display: block;
	width: 100%;
	max-height: 400px;
}

.WebModuleBody__spreadsheetsGoogleCom___ZgGIi,
.WebModuleBody__mapsGoogleCom___FBtsh,
.WebModuleBody__docsGoogleCom___h_Ij7 {
	display: block;
	background: transparent;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by simon on 2017-01-13
 */

.LegacyModuleBody__LegacyModule___Bs9jF {
	align-items: stretch;
	background: #fff; /** Legacy module should not inherit themes. **/
	display: flex;
	flex-direction: column;
	min-height: 400px;
	pointer-events: all;
	width: 100%;
	font-family: 'Roboto', sans-serif;
}

.no-edit :not(.LegacyModuleBody__LegacyModuleFrame___ruxaB) > .LegacyModuleBody__LegacyModule___Bs9jF {
	pointer-events: none;
}

.LegacyModuleBody__LegacyModule___Bs9jF.LegacyModuleBody__dragging___dy_o7 {
}

.LegacyModuleBody__LegacyModule___Bs9jF > .formattedText {
	flex: 1;
}

.LegacyModuleBody__LegacyModule___Bs9jF > .formattedText iframe {
	width: 100% !important; /* Enforce 100% width so that this overrides inline width. */
}

.LegacyModuleBody__LegacyModuleFrame___ruxaB {
	pointer-events: all;
	width: 100%;
}

.LegacyModuleBody__LegacyModule___Bs9jF.LegacyModuleBody__dragging___dy_o7 > .formattedText iframe,
.LegacyModuleBody__LegacyModuleFrame___ruxaB.LegacyModuleBody__dragging___dy_o7 iframe {
	pointer-events: none;
}

.LegacyModuleBody__LegacyModuleFrame___ruxaB.LegacyModuleBody__dragging___dy_o7 iframe {
	position: relative;
}

LegacyModule > .formattedText .pillbox {
	color: #000;
	display: block;
	float: right;
}

/* TA-11145: Only for Edge browser*/
@supports (-ms-ime-align: auto) {
	.LegacyModuleBody__LegacyModule___Bs9jF > .userHTML {
		height: 400px !important; /* Enforce 400px height to override autosize height that causes problem in Edge. */
	}
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Abhishek Chouhan on 2017-01-05
 */

.MoodleModuleConfiguration__moodle-config___V4ZQL {
	display: flex;
	flex-direction: column;
	margin-top: 4px;
}

.MoodleModuleConfiguration__input-field___BLJHR {
	margin-left: 5px;
	width: 90%;
}

.MoodleModuleConfiguration__error-message___abMyI {
	display: block;
	font-style: italic;
	background: #f44242;
	padding: 8px;
	font-size: var(--small-text);
	text-align: center;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Abhishek Chouhan on 2017-01-05
 */

.MoodleModuleBody__moduleBody___bpEx0 {
	padding: 4px 4px 8px 4px;
}

.MoodleModuleBody__moodleWrapper___qK2_N {
	height: 300px;
	pointer-events: auto;
}

.MoodleModuleBody__moodleWrapper___qK2_N > iframe {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.MoodleModuleBody__messageWrapper___vI3bK {
	display: flex;
	align-content: center;
	align-items: center;
}

.MoodleModuleBody__messageWrapper___vI3bK > .MoodleModuleBody__message___azl_p {
	opacity: 0.3;
	text-align: center;
	flex: 1;
	margin: 32px;
}

@media (max-width: 640px) {
	.MoodleModuleBody__moduleBody___bpEx0 > .MoodleModuleBody__icon___QBHvx {
		display: none;
	}
}

.LayoutModuleConfiguration__rghtBtn___ICpN7 {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.LayoutModuleConfiguration__leftBtn___Je3P3 {
	border-right: none;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.LayoutModuleConfiguration__midlBtn___cdsxZ {
	border-right: none;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-right: none;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.LayoutModuleConfiguration__layouts___m9GjA button {
	white-space: nowrap;
	vertical-align: middle;
	margin: 0 8px;
}

.LayoutModuleConfiguration__layouts___m9GjA button img {
	vertical-align: sub;
	width: 1.5em;
}

.LayoutModuleConfiguration__layouts___m9GjA button span {
	margin-left: 1ex;
}

button.LayoutModuleConfiguration__active___uLKLX {
	background-color: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.LayoutModuleConfiguration__warning___VGTwP {
	display: block;
	padding: 8px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: var(--small-text);
}

.LayoutModuleConfiguration__layouts___m9GjA {
	display: inline-flex;
	margin: 8px;
	vertical-align: middle;
}

.MultiColumnLayout__multiColumnBody___VVYPB {
	width: 100%;
	padding: 10px;
	min-height: 200px;
	box-sizing: border-box;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Abhishek Chouhan on 2016-11-15
 */

.module.canEdit .LayoutModuleBody__moduleBody___dXq3f {
	padding-right: 48px;
}

.module.configuring .LayoutModuleBody__moduleBody___dXq3f {
	padding-right: 0;
}

.document-width-nano .LayoutModuleBody__moduleBody___dXq3f {
	flex-direction: column;
	padding-right: inherit;
}

.document-width-nano .LayoutModuleBody__col___siJb_ {
	margin: auto;
	flex-basis: auto;
}

.document-width-nano .LayoutModuleBody__layout___uPkXp {
	flex-direction: column;
	padding-right: inherit;
}

.LayoutModuleBody__moduleBody___dXq3f {
	display: flex;
	width: 100%;
	box-sizing: border-box;
}

.LayoutModuleBody__moduleBody___dXq3f.LayoutModuleBody__child-module-edit___n1Cov {
	padding-right: 0;
	padding-bottom: 0;
}

.LayoutModuleBody__moduleBody___dXq3f.LayoutModuleBody__view-mode___QZ7KE {
	padding-right: 0;
}

.LayoutModuleBody__footer___qVMQX {
	align-self: flex-end;
	height: 60px;
}

/*
- - - - - - - - - - - - - - - - -
- Classes for layout container  -
- - - - - - - - - - - - - - - - -
*/
.LayoutModuleBody__layout___uPkXp {
	box-sizing: border-box;
}

.LayoutModuleBody__layout___uPkXp.LayoutModuleBody__twoCols___y74Tq {
	display: flex;
	flex-direction: row;
	width: 100%;
}

.LayoutModuleBody__layout___uPkXp.LayoutModuleBody__threeCols___m5MM3 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto 1fr;
}

/*
- - - - - - - - - - - - - - -
- Classes for layout cells  -
- - - - - - - - - - - - - - -
*/
/**
 * COLUMN CLASSES FOR 'NORMAL' LAYOUT
 */
.LayoutModuleBody__layout___uPkXp.LayoutModuleBody__twoCols___y74Tq > .LayoutModuleBody__main___YzTiJ {
	flex-grow: 2;
	flex-basis: 0;
}
.LayoutModuleBody__layout___uPkXp.LayoutModuleBody__twoCols___y74Tq > .LayoutModuleBody__eq___ibY7d {
	flex-grow: 1;
	flex-basis: 0;
}
.LayoutModuleBody__layout___uPkXp.LayoutModuleBody__twoCols___y74Tq > .LayoutModuleBody__hidden___NtmVS {
	flex: 0;
	visibility: hidden;
}

/*
Right halved grid layout
- - - - - - - - - - - - -
*/
/*left main bar*/
.LayoutModuleBody__layout___uPkXp.LayoutModuleBody__threeCols___m5MM3 > .LayoutModuleBody__col-1___yBFb_.LayoutModuleBody__rh___mchJn {
	grid-column: 1;
	grid-row: span 2;
}

/*right top cell*/
.LayoutModuleBody__layout___uPkXp.LayoutModuleBody__threeCols___m5MM3 > .LayoutModuleBody__col-2___Q_U6G.LayoutModuleBody__rh___mchJn {
	grid-column: 2;
	grid-row: 1;
}

/*right bottom cell*/
.LayoutModuleBody__layout___uPkXp.LayoutModuleBody__threeCols___m5MM3 > .LayoutModuleBody__col-3___X8Fxa.LayoutModuleBody__rh___mchJn {
	grid-column: 2;
	grid-row: 2;
}

/*
Left halved grid layout
- - - - - - - - - - - -
*/
/*left top cell*/
.LayoutModuleBody__layout___uPkXp.LayoutModuleBody__threeCols___m5MM3 > .LayoutModuleBody__col-1___yBFb_.LayoutModuleBody__lh____a70i {
	grid-column: 1;
	grid-row: 1;
}

/*right main bar*/
.LayoutModuleBody__layout___uPkXp.LayoutModuleBody__threeCols___m5MM3 > .LayoutModuleBody__col-2___Q_U6G.LayoutModuleBody__lh____a70i {
	grid-column: 2;
	grid-row: span 2;
}

/*left bottom cell*/
.LayoutModuleBody__layout___uPkXp.LayoutModuleBody__threeCols___m5MM3 > .LayoutModuleBody__col-3___X8Fxa.LayoutModuleBody__lh____a70i {
	grid-column: 1;
	grid-row: 2;
}

/*
- - - - - - - - - - - - - - -
- Classes for layout cells  -
- - - - - - - - - - - - - - -
*/
.LayoutModuleBody__col___siJb_ {
	overflow: hidden;
	transition: 0.5s;
	min-height: 128px;
	margin: 0;
	display: block;
	flex-wrap: wrap;
	flex-shrink: 0;
	position: relative;
}

.LayoutModuleBody__col___siJb_.empty {
	background-image: repeating-linear-gradient(
		135deg,
		transparent,
		transparent 4px,
		rgba(255, 255, 255, 0.05) 4px,
		rgba(0, 0, 0, 0.05) 8px,
		transparent 8px
	);
}

.LayoutModuleBody__col-2___Q_U6G.empty {
	background-color: rgba(206, 206, 206, 0.15);
}

.LayoutModuleBody__col-1___yBFb_.empty {
	background-color: rgba(248, 248, 248, 0.2);
}

.LayoutModuleBody__col-3___X8Fxa.empty {
	background-color: rgba(248, 206, 206, 0.15);
}

/**
 * Fixes an issue where text inside a hidden column can stretch out its height (EN-927).
 * Placed here in order to maintain the flex transition animation.
 */
.LayoutModuleBody__col___siJb_.LayoutModuleBody__hidden___NtmVS > div {
	height: 0;
}

.LayoutModuleBody__col___siJb_.LayoutModuleBody__full___t9P9R {
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by david on 2017-01-20
 */

.ClickViewModuleConfiguration__config___mW6yq {
	pointer-events: auto;
	transform: none;
	opacity: 1;
	filter: none;
}

.ClickViewModuleConfiguration__config___mW6yq ol {
	padding: 0;
	margin: 0 8px;
	list-style: none;
	max-height: 400px;
	overflow: auto;
}

.document-width-nano .ClickViewModuleConfiguration__config___mW6yq ol,
.document-width-micro .ClickViewModuleConfiguration__config___mW6yq ol,
.document-width-tiny .ClickViewModuleConfiguration__config___mW6yq ol,
.document-width-narrow .ClickViewModuleConfiguration__config___mW6yq ol {
	max-height: none;
}

.ClickViewModuleConfiguration__config___mW6yq li {
	padding: 0;
	margin: 8px 0;
}

.ClickViewModuleConfiguration__config___mW6yq button {
	vertical-align: middle;
}

.ClickViewModuleConfiguration__config___mW6yq input {
	margin: 0;
}

.ClickViewModuleConfiguration__preview___V0fRK {
	text-transform: uppercase;
	background: transparent;
	height: 30%;
}

.ClickViewModuleConfiguration__selected___MDyDs {
	background: blue;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: nowrap;
}

.ClickViewModuleConfiguration__label___vqOez,
.ClickViewModuleConfiguration__spacer___WMBiA {
	background: transparent;
	flex-grow: 1;
}

.ClickViewModuleConfiguration__clickViewPlayer___idVPb {
	flex-grow: 4;
}

.ClickViewModuleConfiguration__noneSelected___vbrxj {
	flex-flow: row;
	color: #888;
}

iframe.ClickViewModuleConfiguration__clickViewChooser___I8gBP {
	height: 70%;
	width: 100%;
}

.ClickViewModuleConfiguration__message___A7BU1 {
	background: transparent;
}

.ClickViewModuleConfiguration__thumbNailWrapper___QWHDH {
	align-items: center;
}

.ClickViewModuleConfiguration__thumbNailWrapper___QWHDH img {
	max-width: 128px;
	max-height: 64px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	border-radius: 2px;
}

.ClickViewModuleConfiguration__thumbNailDescription___mvdbe {
	margin: 8px 0 0;
	color: #999;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by david on 2017-01-31
 */
.ClickViewModuleSelector__ClickViewModuleSelector___QvDKO {
	background: transparent;
}

.ClickViewModuleSelector__preview___qQVky {
	height: 30%;
}

.ClickViewModuleSelector__selected___tkQm2 {
	height: 100%;
}

.ClickViewModuleSelector__clickViewPlayer___tUbKG {
	display: block;
	border: none;
	width: 100%;
	height: 100%;
}

.ClickViewModuleSelector__noneSelected___tjFLG {
	padding: 32px;
	text-align: center;
	font-style: italic;
	color: #999;
	text-align: center;
}

.ClickViewModuleSelector__clickViewChooser___EbdzS {
	height: 70%;
	width: 100%;
	display: block;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by david on 2017-01-20
 */
.ClickViewModuleBody__moduleBody___EHsRW {
	display: flex;
	flex-basis: 100%;
	background: #fff;
	justify-content: center;
}

.document-width-nano .ClickViewModuleBody__moduleBody___EHsRW > .ClickViewModuleBody__icon___ByeX7 {
	display: none;
}

.ClickViewModuleBody__module-clickView___YpU1n {
	background: transparent;
}

.ClickViewModuleBody__message___MDHxu {
	margin: 32px;
	text-align: center;
}

.ClickViewModuleBody__noneSelected___aVQky {
	flex: 1;
}

.ClickViewModuleBody__noneSelected___aVQky .ClickViewModuleBody__message___MDHxu {
	opacity: 0.3;
}

/* The clickview player should take up 100% of the available width, with the height of the player being 1/sqrt(2) x the width */
.ClickViewModuleBody__clickViewPlayer___n67a0 {
	background: transparent;
	width: 100%;
	display: block;
	border: none;
	/* Default height: assume 1024px wide. */
	min-height: 608px; /* 16:9 ratio at 1024px + 32px */
	pointer-events: initial;
	flex: 1;
}

/* assume width of >~ 640 px for nano */
.document-width-nano .ClickViewModuleBody__clickViewPlayer___n67a0 {
	min-height: 392px; /* 16:9 ratio at 640px + 32px */
}

/* assume width of >~ 768 px for micro */
.document-width-micro .ClickViewModuleBody__clickViewPlayer___n67a0 {
	min-height: 464px; /* 16:9 ratio at 768px + 32px */
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by huili on 2017-05-05
 */

.OneDriveModuleConfiguration__OneDriveModuleConfiguration___KgU5I {
	padding: 8px 8px 0;
}

.OneDriveModuleConfiguration__options___k0Eu4 {
	list-style-type: none;
	display: inline-block;
	padding: 0;
	margin: 8px 0 0;
	text-align: left;
}

.OneDriveModuleConfiguration__options___k0Eu4 > .OneDriveModuleConfiguration__option___CetDO {
	padding: 0;
	margin: 6px 0 0;
	display: flex;
	align-items: center;
}

.OneDriveModuleConfiguration__header___Iur_l {
	font-weight: bold;
}

.OneDriveModuleConfiguration__option___CetDO > label {
	display: inline-block;
	padding: 0;
	margin: 0 8px 0 0;
}

.OneDriveModuleConfiguration__option___CetDO input[type='checkbox'] {
	margin: 0 4px 0 0;
}

.OneDriveModuleConfiguration__option___CetDO > .wxNumberInput {
	display: inline-block;
}

.OneDriveModuleConfiguration__option___CetDO > .OneDriveModuleConfiguration__sheetName___KMdOF {
	width: 64px;
}

.OneDriveModuleConfiguration__option___CetDO > .OneDriveModuleConfiguration__cellNumber____frK_ {
	width: 64px;
}

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

.OneDriveModuleConfiguration__samples___w44eE > button {
	flex: 1;
	margin: 0 4px;
}

.OneDriveModuleConfiguration__Selection___V34pI {
	margin-top: 12px;
	text-align: center;
}

.OneDriveModuleConfiguration__Selection___V34pI > .OneDriveModuleConfiguration__name___W5NWO {
	color: #999;
}

.OneDriveModuleConfiguration__browser___aDpqQ {
}

.OneDriveModuleConfiguration__linkType___TxEVi {
	display: flex;
	align-items: center;
	margin: 0 0 8px;
}

.OneDriveModuleConfiguration__linkType___TxEVi > label {
	margin-right: 4px;
}

.OneDriveModuleConfiguration__linkTypeSelect___kqJLa {
	margin-left: 4px;
}

.OneDriveModuleConfiguration__warning___Yc32G {
	color: #c00;
}

.OneDriveModuleConfiguration__picker___XeTv8 {
	margin-top: 8px;
}

.OneDriveModuleConfiguration__pickerError___GrXty .content {
	color: #c00;
	font-style: italic;
	text-align: center;
	height: 150px;
	padding: 0 0 8px;
}

.OneDriveModuleConfiguration__pickerError___GrXty .content .OneDriveModuleConfiguration__icon___abtEs {
	position: absolute;
	top: 50%;
	left: 16px;
	margin-top: -32px;
}

.OneDriveModuleConfiguration__pickerError___GrXty .content .OneDriveModuleConfiguration__error___GBLy1 {
	position: absolute;
	top: 32px;
	right: 8px;
	bottom: 8px;
	left: 96px;
	font-style: italic;
	text-align: center;
}

.OneDriveModuleConfiguration__spinner___tsV0k::after {
	margin: 16px auto;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by huili on 2017-05-05
 */

.OneDriveModuleBody__OneDriveModuleBody___v80it {
	pointer-events: all;
}

.OneDriveModuleBody__renderedContent___WJk6U {
	width: 100%;
	text-align: center;
}

.OneDriveModuleBody__renderedContent___WJk6U > .OneDriveModuleBody__content___duLR1:not(.OneDriveModuleBody__image___sFYVt):not(.OneDriveModuleBody__link___VdCBy) {
	width: 100%;
}

.OneDriveModuleBody__image___sFYVt {
	max-width: 100%;
	max-height: 400px;
}

.OneDriveModuleBody__link___VdCBy {
	display: block;
	max-width: 320px;
	margin: 32px auto;
	padding: 16px;
	box-sizing: border-box;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	border-radius: 2px;
	background: #25b3fd;
	color: #fff;
}

.OneDriveModuleBody__link___VdCBy:hover {
	opacity: 0.8;
}

.OneDriveModuleBody__document___F55xV,
.OneDriveModuleBody__powerpoint___DVTm3,
.OneDriveModuleBody__spreadsheet___pfLE1 {
	height: 500px;
}

.OneDriveModuleBody__message___fTO4M {
	opacity: 0.3;
	text-align: center;
	margin: 32px 0;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Abhishek Chouhan on 2016-11-15
 */
.SharedContextExampleModuleBody__moduleBody___osmmJ {
	display: flex;
	flex-basis: 100%;
	background: #204a87;
	background-image: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}

.SharedContextExampleModuleBody__moduleBody___osmmJ > .SharedContextExampleModuleBody__title___nzN2L {
	flex: 1;
	padding: 8px 8px 8px 0;
	font-style: italic;
	font-size: var(--huge-text);
	align-items: center;
	text-align: center;
	background: transparent;
	border-style: none;
	font-family: 'Sitka Heading', Georgia, 'Times New Roman', Times, serif;
	text-shadow: 1px 1px #204a87, 2px 2px rgba(255, 255, 255, 0.3);
}

.SharedContextExampleModuleBody__moduleBody___osmmJ > div {
	padding: 1ex;
	font-size: var(--huge-text);
	align-self: center;
	background-color: transparent;
}

.SharedContextExampleModuleBody__moduleBody___osmmJ > div.SharedContextExampleModuleBody__icon___J1Xe7 {
	height: 48px;
	width: 48px;
}

.document-width-narrow .SharedContextExampleModuleBody__icon___J1Xe7 {
	display: none;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by simon on 2017-11-20
 */

.Avatar__Avatar___wr8yh {
	border: 2px solid #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	border-radius: 100%;
	margin: 4px;
	overflow: hidden;
	box-sizing: border-box;
	display: inline-block;
}

.Avatar__Avatar___wr8yh .Avatar__img___YSUXt {
	background-size: cover;
	background-position: 33% center;
}

.Avatar__hidden___kNxWO {
	display: none;
}

.Avatar__Avatar___wr8yh .Avatar__name___OFmE3 {
	display: flex;
	height: 100%;
	width: 100%;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	color: #fff;
	cursor: default;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by steven on 2017-08-11
 */

.DayNavigator__DayNavigator___G4kt7 {
	padding: 4px;
	position: relative;
	width: calc(100% - 8px);
}

.DayNavigator__DayNavigator___G4kt7 > .DayNavigator__row___faS_z {
	display: flex;
	justify-content: center;
	align-items: stretch;
	width: 100%;
}

.DayNavigator__DayNavigator___G4kt7 > .DayNavigator__row___faS_z > .DayNavigator__dayButton___Hdq8G {
	flex: 1;
	margin: 2px 0;
	justify-content: center;
}

.DayNavigator__DayNavigator___G4kt7 > .DayNavigator__row___faS_z > button:not(:last-child) {
	border-right: none;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.DayNavigator__DayNavigator___G4kt7 > .DayNavigator__row___faS_z > button:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.DayNavigator__DayNavigator___G4kt7 > .DayNavigator__row___faS_z > button > svg {
	width: 24px;
	height: 24px;
	display: block;
}

.DayNavigator__DayNavigator___G4kt7 > .DayNavigator__row___faS_z > .DayNavigator__dayButton___Hdq8G.DayNavigator__selected___Iatdm {
	color: rgb(var(--theme-sel-fg-parts));
	box-shadow: none;
	background-color: rgb(var(--theme-sel-bg-parts));
	font-weight: bold;
}

.DayNavigator__DayNavigator___G4kt7 > .DayNavigator__row___faS_z > input {
	flex: 1;
	cursor: text;
	border-radius: 0;
	font-weight: bold;
	margin: 0;
	text-align: center;
	padding: 8px;
	border-left: none;
	border-right: none;
}

.DayNavigator__DayNavigator___G4kt7 > .DayNavigator__row___faS_z > input + button {
	border-left: none;
}

.DayNavigator__DayNavigator___G4kt7 > .DayNavigator__row___faS_z > input.DayNavigator__error___bG7u2 {
	box-shadow: inset 0 0 5px red;
}

@keyframes DayNavigator__panel-appear___dNqZD {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
}

.DayNavigator__DayNavigator___G4kt7 > .DayNavigator__popup___NGh3q {
	box-sizing: border-box;
	left: 8px;
	position: absolute;
	background: rgb(var(--theme-bg-parts));
	z-index: 2;
	filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
	padding: 8px;

	animation-name: DayNavigator__panel-appear___dNqZD;
	animation-duration: 0.2s;
	animation-iteration-count: 1;
	transform-origin: top;
}

.DayNavigator__DayNavigator___G4kt7 > .DayNavigator__popup___NGh3q::before {
	--size: 8px;
	content: '';
	position: absolute;
	border: var(--size) solid transparent;
	border-bottom-color: rgb(var(--theme-bg-parts));
	top: calc(var(--size) * -2);
	left: calc(50% - var(--size));
	pointer-events: none;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by huili on 2017-01-27
 */

.EditableList__EditableList___ymQew {
}

.EditableList__EditableList___ymQew > label {
	padding: 0;
}

.EditableList__EditableList___ymQew > .EditableList__items___zHKIO {
	padding: 0;
	margin: 0;
}

.EditableList__Item___FKNwV {
	display: flex;
	margin: 4px 0;
}

.EditableList__Item___FKNwV > input {
	flex: 1;
}

.EditableList__Item___FKNwV > input[disabled] {
	background-color: #eee;
	color: #888;
	font-style: italic;
}

.EditableList__Item___FKNwV > .EditableList__actions___pXzjb {
	display: inline-block;
}

.EditableList__Item___FKNwV > .EditableList__actions___pXzjb button {
	width: 32px;
	height: 32px;
	padding: 0;
	border-radius: 100%;
	margin: 0 0 0 8px;
}

.EditableList__action___Om8c6 {
	margin-left: 4px;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by huili on 2017-01-25
 */

.ImgButton__toggled___YLple,
.ImgButton__toggled___YLple:hover {
	background-color: #204a87;
	background-image: linear-gradient(to top, #3465a4, #204a87);
	color: #fff;
	text-shadow: 0 1px 1px #000;
	border-color: #204a87;
	box-shadow: none;
}

.ImgButton__ImgButton___eBB26[disabled] {
	opacity: 0.5;
	cursor: default;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by huili on 2017-03-21
 */

.InlineHelp__InlineHelp___kF1DT {
	display: inline-block;
}

.InlineHelp__help___TVyJr {
	border-radius: 32px !important;
	padding: 0 !important;
	width: 24px;
	height: 24px;
	font-weight: bold;
	transition: background 0.25s !important;
	vertical-align: baseline !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.InlineHelp__explanation___wnP7g {
	width: 200px;
	background: #eee;
	padding: 8px;
	color: #444;
	font-style: italic;
	line-height: 1.5;
	max-height: 100px;
	overflow: auto;
	border: 4px solid #fff;
	border-radius: 2px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), inset 0 0 4px rgba(0, 0, 0, 0.3);
	position: absolute;
}

.InlineHelp__explanation___wnP7g a:visited {
	color: #3465a4;
}

.InlineHelp__explanation___wnP7g a {
	border: 0;
	color: #3465a4;
	margin: 0;
	padding: 0;
	box-shadow: none;
	text-decoration: underline;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by david on 2016-12-14
 */
.Pillbox__Pillbox___bxRCZ {
	display: inline-block;
	white-space: nowrap;
}

.Pillbox__enabled___xSbK_ {
	display: inline-block;
}

.Pillbox__disabled___uKVw3 {
	display: inline-block;
}

button.Pillbox__PillboxButton___zLD1g {
}

button.Pillbox__depressed___BfBIs {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

button.Pillbox__PillboxButton___zLD1g:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

button.Pillbox__PillboxButton___zLD1g:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-right: none;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by huili on 2017-07-19
 */

.PollResults__Poll___QSqWV {
	text-align: center;
}

.PollResults__proposition___uHJmh {
	font-size: var(--large-text);
}

.PollResults__options___lbWRP {
	list-style-type: none;
	padding: 0;
	margin: 0 auto;
	width: 100%;
}

.PollResults__OptionWrapper___tUX9h {
	margin: 24px 0;
}

.PollResults__Option___oQ2XC {
	text-align: left;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.PollResults__Option___oQ2XC > .PollResults__content___HgvTj {
	margin-right: 10px;
	text-align: right;
	display: inline-block;
	opacity: 0.75;
	min-width: 32px;
}

.PollResults__Option___oQ2XC > .PollResults__gutter___w1gE3 {
	display: flex;
	flex: 1;
	min-width: 124px;
	justify-content: space-between;
	align-items: center;
}

.PollResults__gutter___w1gE3 > .PollResults__graph___kg5m_ {
	vertical-align: middle;
	border-radius: 4px;
	width: 0;
	transition: width 1s ease-in;
	box-sizing: border-box;
}

.PollResults__responseRate___i_Reu {
	display: inline-block;
	opacity: 0.8;
	margin: 0 8px;
	text-align: right;
}

.PollResults__isSelected___FLFts {
	margin: 4px 0;
}

.PollResults__isSelected___FLFts > .PollResults__checked___H9REI {
	display: inline-block;
	margin-right: 4px;
	border-radius: 4px;
	text-align: center;
	padding: 4px;
}

.PollResults__responseCounter___CNQ1C {
	opacity: 0.5;
}

.PollResults__voters___aB5Z3 {
	display: block;
	margin: 0 8px;
}

.PollResults__voters___aB5Z3 > .PollResults__person___Mj8U4 {
	margin-right: -12px;
	vertical-align: middle;
}

.PollResults__voters___aB5Z3 > .PollResults__person___Mj8U4 {
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by huili on 2017-07-19
 */

.PollOpen__Poll___klICq {
	text-align: center;
}

.PollOpen__proposition___Aq8jK {
	font-size: var(--large-text);
}

.PollOpen__content___PovrU {
	z-index: 1;
	position: relative;
}

.PollOpen__transparent___Hhje5 {
	opacity: 0;
	transition: opacity 0.5s;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
}

.PollOpen__Options___q0NJ4 {
	list-style-type: none;
	padding: 0;
	margin: 12px 0;
	text-align: left;
}

.PollOpen__Option___AEyj8 {
	position: relative;
	display: block;
	padding: 6px;
	margin: 6px 0;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.5s, color 0.5s;
}

/* by changing the opacity of an option when we hover over it, we allow its background colour to appear */
.PollOpen__Option___AEyj8:hover:not(.PollOpen__selected___FoBoP) > .PollOpen__transparent___Hhje5 {
	opacity: 1;
}

.PollOpen__submit___vzLPe {
	position: relative;
}

.PollOpen__submit___vzLPe:hover {
	cursor: pointer;
}

.PollOpen__submit___vzLPe > .PollOpen__transparent___Hhje5 {
	background: #fff;
}

.PollOpen__submit___vzLPe:not([disabled]):hover > .PollOpen__transparent___Hhje5 {
	opacity: 0.3;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by huili on 2017-07-19
 */

.PollConfigurator__PollConfigurator___V_607 {
}

.PollConfigurator__field___mbKVe {
	margin: 0 8px;
}

.PollConfigurator__warning____aV3m {
	background: #ffc20e;
	font-style: italic;
	padding: 4px;
	position: relative;
	display: flex;
	align-items: center;
}

.PollConfigurator__warning____aV3m > .PollConfigurator__text___uF3sw {
	flex: 1;
	font-size: var(--small-text);
	text-align: center;
}

.PollConfigurator__locked___tEyGx {
	margin-left: 4px;
}

.PollConfigurator__status___lwubd {
}

.PollConfigurator__title___zCfCw {
	font-weight: bold;
	padding: 0;
	margin: 8px 0 !important; /* Important to override legacy-root rules */
	display: inline-block;
}

.PollConfigurator__pollConfigs___j4IwK {
	margin-top: 8px;
}

.PollConfigurator__pollConfigs___j4IwK > .PollConfigurator__field___mbKVe {
	display: inline-block;
}

.PollConfigurator__pollConfigs___j4IwK > .PollConfigurator__field___mbKVe > div {
	vertical-align: middle;
}

.PollConfigurator__pollConfigs___j4IwK > .PollConfigurator__field___mbKVe.PollConfigurator__status___lwubd {
	margin-right: 24px;
}

.PollConfigurator__openHelp___Z5RXw {
	margin: 0 6px;
}

.PollConfigurator__proposition___go3ri input {
	width: 100%;
	box-sizing: border-box;
}

.PollConfigurator__pillboxWrapper___ym5nj > .PollConfigurator__pillbox___I_ENb {
	vertical-align: middle;
}

.PollConfigurator__pillboxWrapper___ym5nj > label {
	width: 64px;
	display: inline-block;
	vertical-align: middle;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by huili on 2017-07-20
 */

.PollModule__PollModuleBody___D8pgF {
	margin: 32px 8px;
	pointer-events: all;
}

.PollModule__pollOpen___ixy8A {
	width: 80%;
	margin: auto;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by cameron on 2017-10-09
 */

.HtmlModule__htmlModuleContainer___Tn6vi {
	pointer-events: all;
}

.HtmlModule__htmlModuleContainer___Tn6vi > .HtmlModule__htmlWrapper___TUFr2 {
	max-height: 50vh;
	min-height: 0;
	height: 0;
	display: flex;
	flex-direction: row;
}

.HtmlModule__htmlModuleContainer___Tn6vi > .HtmlModule__htmlWrapper___TUFr2.HtmlModule__editing___Y8ekV:not(.HtmlModule__preview___O_heN) {
	min-height: 256px;
}

.HtmlModule__ace_editor___APC9T {
	position: relative !important;
}

.HtmlModule__htmlEditor___vBdr4 {
	width: 100%;
}

.HtmlModule__htmlWrapper___TUFr2.HtmlModule__editing___Y8ekV.HtmlModule__html___BnHb7 {
	max-height: 256px;
}

.HtmlModule__viewWrapper___seRhH {
	width: 100%;
	position: relative;
}

.HtmlModule__htmlEditor___vBdr4 + .HtmlModule__viewWrapper___seRhH {
	width: 40%;
	border-left: 1px solid #eee;
}

.HtmlModule__htmlWrapper___TUFr2.HtmlModule__editing___Y8ekV.HtmlModule__split___khOEd > .HtmlModule__htmlEditor___vBdr4 {
	flex: 1;
	width: 60%;
}

.HtmlModule__htmlModuleContainer___Tn6vi > .HtmlModule__htmlWrapper___TUFr2 > .HtmlModule__viewWrapper___seRhH > .HtmlModule__iframeContainer___Zb0CW {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	min-height: 0;
	display: flex;
	flex-direction: column;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.HtmlModule__htmlModuleContainer___Tn6vi > .HtmlModule__htmlWrapper___TUFr2 > .HtmlModule__viewWrapper___seRhH > .HtmlModule__iframeContainer___Zb0CW > iframe {
	border: none;
	background: #fff;
	width: 100%;
	height: 100%;
	flex: 1;
	min-height: 0;
}

.HtmlModule__htmlModuleContainer___Tn6vi > .HtmlModule__htmlWrapper___TUFr2.HtmlModule__iOS___QYdyO:not(.HtmlModule__editing___Y8ekV) {
	max-height: unset;
}

.HtmlModule__htmlModuleContainer___Tn6vi > .HtmlModule__pillboxContainer___FoIW2 {
	text-align: center;
	background: rgb(var(--theme-bg-alt-parts));
}

.HtmlModule__htmlModuleContainer___Tn6vi > .HtmlModule__pillboxContainer___FoIW2 > .HtmlModule__pillbox___UWavp {
	color: #000;
}

.HtmlModule__htmlModuleContainer___Tn6vi > .HtmlModule__htmlWrapper___TUFr2.HtmlModule__iOS___QYdyO iframe {
	-webkit-overflow-scrolling: touch;
	overflow: scroll;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Arie Prasetyo on 2018-07-23
 */

.CampionMyConnectModuleConfiguration__campionMyConnect-config___j_2N4 {
	display: flex;
	flex-direction: column;
	margin: 4px 4px 0px 4px;
}

.CampionMyConnectModuleConfiguration__campionMyConnect-config___j_2N4 > .CampionMyConnectModuleConfiguration__error-message___LnFpw {
	display: block;
	font-style: italic;
	background: #f44242;
	padding: 8px;
	font-size: var(--small-text);
	text-align: center;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Arie Prasetyo on 2018-07-23
 */

.CampionMyConnectModuleBody__moduleBody___GoQEW {
	flex-direction: row;
	background: #e8e8e8;
	pointer-events: auto;
}

.CampionMyConnectModuleBody__moduleBody___GoQEW > .CampionMyConnectModuleBody__book___KirLL {
	width: 100%;
	height: 600px;
	display: flex;
	justify-content: center;
	padding: 0;
}

.CampionMyConnectModuleBody__moduleBody___GoQEW > .CampionMyConnectModuleBody__book___KirLL > iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 640px) {
	.CampionMyConnectModuleBody__moduleBody___GoQEW > .CampionMyConnectModuleBody__icon___Wsvw2 {
		display: none;
	}
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Rami Ruhayel on 2016-11-10
 */

.Canvas__canvas___dqrem {
	flex: 1;
	background-size: cover;
	background-color: #f8f8f8;
	overflow: auto;
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 32px;
	height: 100%;
	box-sizing: border-box;
}

.use-intrinsic-height .Canvas__canvas___dqrem {
	height: auto;
}

.Canvas__canvas___dqrem.Canvas__editPreview___WTEqO {
	margin-top: 32px;
}

.document-width-micro .Canvas__canvas___dqrem,
.document-width-nano .Canvas__canvas___dqrem {
	padding: 0;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Rami Ruhayel on 2016-11-10
 */

div.Body__body___LzxsL {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.use-intrinsic-height.Body__body___LzxsL {
	display: block;
	height: auto;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Rami Ruhayel on 2016-11-10
 */

.Document__document___ipJah {
	display: flex;
	flex: 1;
	overflow: hidden;
	/**
	(TA-8074 Unable to Scroll Composer Content in Safari)
	This must be pos abs to avoid the issue of the immediate children ignoring height 100% in Safari.
	Safari has issues with nested height 100% containers.
	 */
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
}

.use-intrinsic-height .Document__document___ipJah {
	position: static;
	height: auto;
}

.Document__document___ipJah > button.Document__fab___GNpzr {
	display: none;
}

pre > code {
	white-space: pre-wrap !important;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Rami Ruhayel on 2016-11-10
 */

.Container__container___Ob9l6 {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.use-intrinsic-height .Container__container___Ob9l6 {
	display: block;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by Rami Ruhayel on 2017-01-06
 */

.MenuItem__menu-item___U1cU6 {
	display: flex;
	padding: 0;
	margin: 4px;
	align-items: center;
	overflow: hidden;
	border: 1px solid var(--theme-offset-bg);
	border-radius: 48px;
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
}

.MenuItem__menu-item___U1cU6.MenuItem__dragging___P3d9b {
	pointer-events: none;
}

.MenuItem__menu-item-icon___gw0av {
	cursor: grab;
	margin: 0 8px 0 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.MenuItem__menu-item-icon___gw0av:hover {
	background: var(--theme-offset-bg);
}

.MenuItem__menu-item-description___EIKYC {
	flex: 1;
	overflow: hidden;
}

.MenuItem__menu-item-heading___wBLYU {
	margin: 0 0 2px;
	padding: 0;
	font-weight: 700;
}

.MenuItem__menu-item-text___e_8hx {
	font-size: var(--small-text);
	font-weight: 700;
	opacity: 0.5;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Rami Ruhayel on 2016-11-10
 */

.MenuGroup__menu-group___OPucS {
	margin: 0 0 32px;
}

.MenuGroup__menu-group___OPucS > .MenuGroup__group-name___DOpmk {
	background: var(--theme-table-headers);
	padding: 8px 8px 0;
	margin: 0;
	font-size: var(--small-text);
	text-transform: uppercase;
	font-weight: bold;
	width: 100%;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Rami Ruhayel on 2016-11-10
 */

ol.Menu__menu___hXJmO {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	height: 100%;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Rami Ruhayel on 2016-11-10
 */
.Palette__palette___mixtX {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	transform: translateX(100%);
	width: 320px;
	max-width: 100%;
	box-sizing: border-box;
	background: rgb(var(--theme-bg-parts));
	opacity: 1;
	z-index: 9; /* increased from two so that we can have a couple of indexes free within creator component modules */
	transition: opacity 0.5s, transform 0.5s;
}

.Palette__palette___mixtX.Palette__open___xlWHY {
	position: relative;
	transform: none;
	opacity: 1;
}

.Palette__palette___mixtX.Palette__hidden___f43A6 {
	display: none;
}

.Palette__palette__menu___plWW7 {
	display: flex;
	flex-direction: column;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.Palette__palette___mixtX .Palette__palette__toggle___xdHCT {
	position: absolute;
	top: 32px;
	left: -32px;
	width: 32px;
	height: 32px;
	background: var(--theme-button-bg);
	border-radius: 32px 0 0 32px;
	color: var(--theme-button-fg);
	padding: 0;
}

.document-width-micro .Palette__palette___mixtX:not(.Palette__hidden___f43A6),
.document-width-tiny .Palette__palette___mixtX:not(.Palette__hidden___f43A6) {
	transition: opacity 0.5s, transform 0.5s;
	box-shadow: -2px 0 4px rgba(0, 0, 0, 0.2);
}

.document-width-micro .Palette__palette___mixtX.Palette__open___xlWHY,
.document-width-tiny .Palette__palette___mixtX.Palette__open___xlWHY {
	transform: none;
	opacity: 1;
	position: absolute;
}

.document-width-micro .Palette__palette___mixtX.Palette__open___xlWHY.Palette__dragging___wznBq,
.document-width-tiny .Palette__palette___mixtX.Palette__open___xlWHY.Palette__dragging___wznBq {
	transform: translateX(95%);
}

.Palette__hint___mRmtw {
	padding: 8px;
	font-size: var(--small-text);
	font-weight: 700;
	text-align: center;
	opacity: 0.5;
}

.Palette__hint___mRmtw a {
	border: none;
	padding: 0;
	box-shadow: none;
	text-decoration: underline;
	background: none;
	margin: 0 0 0 1ex;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Rami Ruhayel on 2016-11-10
 */

.AdvancedOptions__AdvancedOptions___vePhG {
	display: flex;
	flex-direction: column;
	background: var(--theme-offset-bg);
	padding: 0;
	overflow: auto;
}

.AdvancedOptions__title___r91sB {
	cursor: pointer;
	padding: 8px;
	outline: none;
	font-size: var(--small-text);
	font-weight: bold;
	text-transform: uppercase;
}

.AdvancedOptions__arrow___o4kON {
	box-sizing: border-box;
	display: inline-block;
	margin: 0 8px 0 0;
	width: 8px;
}

.AdvancedOptions__body___DYrdW {
	display: none;
	flex-direction: column;
	height: 50vh;
	overflow: hidden;
	overflow-y: auto;
}

.AdvancedOptions__expanded___PnYt5 .AdvancedOptions__body___DYrdW {
	display: flex;
}

.AdvancedOptions__preview___Eyc7H {
}

.AdvancedOptions__preview___Eyc7H.AdvancedOptions__active___QtoK1 {
}

.AdvancedOptions__themeEditorPopup___Ah2J5 .content > div {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: auto;
}

.AdvancedOptions__themeEditorPopup___Ah2J5 .pane.tall .content {
	margin: 0;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by simon on 2017-02-07
 */

.SearchBar__SearchBar___xLyRx {
	display: flex;
	flex-direction: column;
	padding: 4px;
	align-items: center;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by Rami Ruhayel on 2017-01-06
 */

.CustomDragLayer__custom-drag-layer___lttHC {
	cursor: grabbing;
	position: absolute; /* Must be position:abs to avoid issue with fixed flickering in IE11 */
	pointer-events: none;
	z-index: 1000;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
}

li.CustomDragLayer__menu-item___aOw17.CustomDragLayer__dragged___WbMNh {
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	display: flex;
	margin: 0;
	align-items: center;
	cursor: pointer;
	overflow: hidden;
	background: #25b3fd;
}

li.CustomDragLayer__dragged___WbMNh {
	animation: CustomDragLayer__composer-drag-layer-shake___ikp0k 0.25s infinite,
		CustomDragLayer__composer-drag-layer-pick-up___z3QCY 0.5s;
	animation-timing-function: ease-in-out;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin: -8px 0 0 -8px;
	opacity: 0.8;
	position: absolute;
}

li.CustomDragLayer__menu-item___aOw17.CustomDragLayer__dragged___WbMNh > .CustomDragLayer__menu-item-icon___VaSkV {
	margin: 0;
}

li.CustomDragLayer__menu-item___aOw17.CustomDragLayer__dragged___WbMNh > .CustomDragLayer__menu-item-icon___VaSkV > img {
	margin: 0;
	padding: 12px;
	pointer-events: none;
	filter: invert(1);
}

li.CustomDragLayer__menu-item___aOw17.CustomDragLayer__dragged___WbMNh > .CustomDragLayer__menu-item-description___bR9lV {
	flex: 1;
	overflow: hidden;
	color: #999;
}

li.CustomDragLayer__menu-item___aOw17.CustomDragLayer__dragged___WbMNh > .CustomDragLayer__menu-item-description___bR9lV > .CustomDragLayer__menu-item-heading___FCo9G {
	color: #444;
	margin: 0;
	padding: 0;
}

li.CustomDragLayer__menu-item___aOw17.CustomDragLayer__dragged___WbMNh > .CustomDragLayer__menu-item-description___bR9lV > .CustomDragLayer__menu-item-text___nxB2A {
	margin: 0;
	font-size: var(--small-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

li.CustomDragLayer__resource-file___BaF8O.CustomDragLayer__dragged___WbMNh {
	display: flex;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	cursor: pointer;
	border-bottom: 1px solid #eee;
	width: 300px;
	height: 48px;
}

li.CustomDragLayer__resource-file___BaF8O.CustomDragLayer__dragged___WbMNh.CustomDragLayer__selected___A1WGL {
	background: #204a87;
	color: #fff;
}

li.CustomDragLayer__resource-file___BaF8O.CustomDragLayer__dragged___WbMNh > .CustomDragLayer__handle___xKDM2 {
	background: #eee;
	color: #555;
	padding: 8px 4px;
	font-weight: bold;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #fff;
}

li.CustomDragLayer__resource-file___BaF8O.CustomDragLayer__dragged___WbMNh > img,
li.CustomDragLayer__resource-file___BaF8O.CustomDragLayer__dragged___WbMNh > div.CustomDragLayer__image___EaH0z {
	width: 32px;
	height: auto;
}

li.CustomDragLayer__resource-file___BaF8O.CustomDragLayer__dragged___WbMNh > h2 {
	margin: 0;
	padding: 8px;
	font-weight: normal;
	color: currentColor;
	flex: 1;
	text-overflow: ellipsis;
	max-width: 200px;
}

li.CustomDragLayer__resource-file___BaF8O.CustomDragLayer__dragged___WbMNh > button {
	padding: 4px;
	margin: 0 4px 0 0;
	font-size: var(--small-text);
	color: #666;
	align-self: center;
	vertical-align: middle;
}

li.CustomDragLayer__resource-file___BaF8O.CustomDragLayer__dragged___WbMNh > button > svg {
	margin: 0;
}

li.CustomDragLayer__resource-file___BaF8O.CustomDragLayer__dragged___WbMNh > button.CustomDragLayer__remove___zzPjC {
}

@keyframes CustomDragLayer__composer-drag-layer-shake___ikp0k {
	0% {
		transform: scale(1.1) rotate(5deg);
	}
	50% {
		transform: scale(1.1) rotate(-5deg);
	}
	100% {
		transform: scale(1.1) rotate(5deg);
	}
}

@keyframes CustomDragLayer__composer-drag-layer-pick-up___z3QCY {
	0% {
		transform: scale(0.7);
	}

	40% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1.1);
	}
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by simon on 2017-02-07
 */

.PreviewWarning__PreviewWarning___bPZma {
	display: flex;
	align-items: center;
	background: #ffc20e;
	padding: 4px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 11;
}

.PreviewWarning__label___k0Pfg {
	flex: 1;
	font-style: italic;
	text-align: center;
	color: rgba(0, 0, 0, 0.5);
}

.PreviewWarning__close___ckAXM {
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Rami Ruhayel on 2016-11-16
 */

.BasicInfo__basic___wCxEI {
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by Rami Ruhayel on 2016-11-17
 */

.Fields__fields___ugJ_v {
	position: relative;
}

.Fields__name___N_SaJ {
	margin: 0 0 4px;
}

.Fields__name___N_SaJ > label {
	display: inline-block;
	vertical-align: baseline;
	padding: 0;
	box-sizing: border-box;
	width: 10%;
}

.Fields__name___N_SaJ > input {
	display: inline-block;
	vertical-align: baseline;
	box-sizing: border-box;
	width: 84%;
}

.Fields__icon-menu___v1elI {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Rami Ruhayel on 2016-11-17
 */

.Comments__comments___LIkx6 {
}

.Comments__comments___LIkx6 > label {
	display: inline-block;
	vertical-align: baseline;
	padding: 0;
	box-sizing: border-box;
	width: 10%;
	vertical-align: middle;
}

.Comments__comments___LIkx6 > label.Comments__priority___VyjTy {
	width: auto;
	margin: 0 16px 0 32px;
	vertical-align: middle;
}

.Comments__comments___LIkx6 > input {
	vertical-align: middle;
}

/*
 *
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Rami Ruhayel on 2016-11-29
 */

.Permissions__permissions___exRuW {
	display: flex;
	height: 100%;
}

.Permissions__permissions___exRuW .uiAnyoneSelectWrapper {
	flex: 1;
	display: flex;
	min-height: 0;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by simon on 2016-10-19
 */

.unitPlanner__unitplanner___a4O8_ {
	align-items: stretch;
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.unitPlanner__sidePane___Gyo6k {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	padding: 0;
	width: 200px;
	background: rgb(var(--theme-bg-parts));
	box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.3);
	z-index: 2;
}

.unitPlanner__sidePane___Gyo6k > .unitPlanner__minimap___Geou3 {
	display: flex;
	flex-direction: column;
	padding: 0 0 0 4px;
	overflow: hidden;
	position: relative;
}

.unitPlanner__sidePane___Gyo6k > .unitPlanner__minimap___Geou3 > .unitPlanner__row___kF3N7 {
	display: flex;
	flex: 1;
	height: 32px;
}

.unitPlanner__sidePane___Gyo6k > .unitPlanner__minimap___Geou3 > .unitPlanner__row___kF3N7 > .unitPlanner__item___CKP1e {
	align-items: center;
	border-radius: 32px;
	cursor: pointer;
	display: flex;
	margin: 0 4px 4px 0;
	padding: 4px 8px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.unitPlanner__sidePane___Gyo6k > .unitPlanner__minimap___Geou3 > .unitPlanner__row___kF3N7 > .unitPlanner__item___CKP1e:hover {
	transform: scale(1.1);
}

.unitPlanner__sidePane___Gyo6k > .unitPlanner__minimap___Geou3 > .unitPlanner__row___kF3N7 > .unitPlanner__item___CKP1e > .unitPlanner__title___lgBP1 {
	color: rgba(0, 0, 0, 0.6);
	flex: 1;
	font-size: var(--small-text);
	font-weight: bold;
	text-overflow: clip;
	overflow: hidden;
	text-transform: uppercase;
	white-space: nowrap;
}

.unitPlanner__sidePane___Gyo6k > .unitPlanner__minimap___Geou3.unitPlanner__hasExpanded___Fsdpf > .unitPlanner__row___kF3N7 > .unitPlanner__item___CKP1e:not(.unitPlanner__expanded___K62Kp) {
	opacity: 0.4;
}

.unitPlanner__sidePane___Gyo6k > .unitPlanner__minimap___Geou3.unitPlanner__hasExpanded___Fsdpf > .unitPlanner__row___kF3N7 > .unitPlanner__item___CKP1e:not(.unitPlanner__expanded___K62Kp):hover {
	opacity: 1;
}

.unitPlanner__sidePane___Gyo6k > .unitPlanner__minimap___Geou3 > .unitPlanner__row___kF3N7 > .unitPlanner__item___CKP1e.unitPlanner__expanded___K62Kp {
}

.unitPlanner__sidePane___Gyo6k > .unitPlanner__minimap___Geou3 > .unitPlanner__row___kF3N7 > .unitPlanner__item___CKP1e.unitPlanner__dark___jEcib > .unitPlanner__title___lgBP1 {
	color: rgba(255, 255, 255, 0.6);
}

.unitPlanner__unitplanner___a4O8_ > .unitPlanner__content___PLcHE {
	display: flex;
	flex: 1;
	flex-direction: column;
	overflow: hidden;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 {
	margin: 0;
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
	background: rgba(var(--theme-bg-parts), 0.8);
	padding: 8px 16px;
	z-index: 1;
}

@media (max-width: 1200px) {
	.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 {
		padding: 8px 20px;
	}
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 label {
	min-width: 64px;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__alpha___uNcX_ > .unitPlanner__title___lgBP1 {
	align-items: center;
	display: flex;
	flex: 1;
	min-width: 300px;
	padding: 0;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__alpha___uNcX_ > .unitPlanner__title___lgBP1 > .unitPlanner__label___IRyst {
	width: 4em;
	box-sizing: border-box;
	text-align: right;
	padding: 0 8px 0 0;
	text-transform: uppercase;
	font-size: var(--small-text);
	font-weight: bold;
	opacity: 0.5;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__alpha___uNcX_ > .unitPlanner__title___lgBP1 > .unitPlanner__uiShortText___Ebb3k,
.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__alpha___uNcX_ > .unitPlanner__title___lgBP1 > .unitPlanner__readonly___sQ6o9 {
	box-sizing: border-box;

	flex: 1;
	padding: 4px;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__settings___MO470 {
	align-items: stretch;
	justify-content: space-between;
	display: flex;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__settings___MO470 > .unitPlanner__template___TVz7E {
	align-items: stretch;
	display: flex;
	position: relative;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__settings___MO470 > .unitPlanner__template___TVz7E > label {
	box-sizing: border-box;
	padding: 0 8px 0 0;
	text-align: right;
	align-self: center;
	text-transform: uppercase;
	font-size: var(--small-text);
	font-weight: bold;
	opacity: 0.5;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__settings___MO470 > .unitPlanner__template___TVz7E > .unitPlanner__blurb___L88b8 {
	align-self: center;
	padding: 0 8px;
	font-size: var(--small-text);
	font-weight: bold;
	opacity: 0.5;
	max-width: 24em;
}

.unitPlanner__content___PLcHE
	> .unitPlanner__meta___Lni21
	> .unitPlanner__settings___MO470
	> .unitPlanner__template___TVz7E
	> .uiButtonMenuWrapper > button,
.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__settings___MO470 > .unitPlanner__template___TVz7E > .unitPlanner__uiShortText___Ebb3k {
	box-sizing: border-box;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	height: 100%;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__settings___MO470 > .unitPlanner__template___TVz7E > .unitPlanner__uiShortText___Ebb3k {
	padding: 2px 4px;
}

.unitPlanner__content___PLcHE
	> .unitPlanner__meta___Lni21
	> .unitPlanner__settings___MO470
	> .unitPlanner__template___TVz7E
	> .uiButtonMenuWrapper > button {
	min-width: 220px;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__settings___MO470 > .unitPlanner__colour___UbMsm {
	align-items: center;
	display: flex;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__settings___MO470 > .unitPlanner__colour___UbMsm > label {
	padding: 0 8px;
	text-transform: uppercase;
	font-size: var(--small-text);
	font-weight: bold;
	opacity: 0.5;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__settings___MO470 > .unitPlanner__colour___UbMsm > .uiColourButtonWrapper {
	align-self: stretch;
	display: inline-flex;
}

.unitPlanner__content___PLcHE
	> .unitPlanner__meta___Lni21
	> .unitPlanner__settings___MO470
	> .unitPlanner__colour___UbMsm
	> .uiColourButtonWrapper > button {
	align-self: stretch;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__settings___MO470 > .unitPlanner__colour___UbMsm > .unitPlanner__uiShortText___Ebb3k {
	align-self: stretch;
	border-radius: 2px;
	box-sizing: border-box;
	border: 1px solid rgba(0, 0, 0, 0.25);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
	width: 32px;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__alpha___uNcX_ > .unitPlanner__sequence___hmxwH {
	align-items: center;
	display: flex;
	flex-basis: 100%;
	flex-wrap: wrap;
	margin: 8px 0;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__alpha___uNcX_ > .unitPlanner__sequence___hmxwH > .unitPlanner__numberInputWrapper___CL8kX {
	display: flex;
	align-items: center;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__alpha___uNcX_ > .unitPlanner__sequence___hmxwH > .unitPlanner__numberInputWrapper___CL8kX label {
	min-width: auto;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__alpha___uNcX_ > .unitPlanner__sequence___hmxwH label {
	padding: 0 8px;
	white-space: nowrap;
	text-transform: uppercase;
	font-size: var(--small-text);
	font-weight: bold;
	opacity: 0.5;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__alpha___uNcX_ > .unitPlanner__sequence___hmxwH > label:first-child {
	box-sizing: border-box;
	padding: 0 8px 0 0;
	text-align: right;
	width: 4em;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__alpha___uNcX_ > .unitPlanner__sequence___hmxwH .uiButtonMenuWrapper {
	align-self: stretch;
	margin-right: 8px;
	overflow: hidden;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__alpha___uNcX_ > .unitPlanner__sequence___hmxwH .uiButtonMenuWrapper > button {
	width: 16em;
}

.unitPlanner__content___PLcHE
	> .unitPlanner__meta___Lni21
	> .unitPlanner__alpha___uNcX_
	> .unitPlanner__sequence___hmxwH
	.wxNumberInput > input[type='text'] {
	width: 2em;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__alpha___uNcX_ > .unitPlanner__sequence___hmxwH .unitPlanner__uiShortText___Ebb3k {
	padding: 2px 4px;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__concepts___Hu5ap > label {
	cursor: inherit;
	text-transform: uppercase;
	font-size: var(--small-text);
	font-weight: bold;
	opacity: 0.5;
	padding: 0;
}

.unitPlanner__content___PLcHE > .unitPlanner__meta___Lni21 > .unitPlanner__concepts___Hu5ap > .uiUnitplanConceptListWrapper {
	flex: 1;
}

.unitPlanner__content___PLcHE > .unitPlanner__body___LPZcP {
	flex: 1;
	padding: 16px 16px 0 20px;
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
}

@media (max-width: 1200px) {
	.unitPlanner__content___PLcHE > .unitPlanner__body___LPZcP {
		padding: 8px 16px 0 16px;
	}
}

.unitPlanner__content___PLcHE > .unitPlanner__body___LPZcP:not(.unitPlanner__expanded___K62Kp) {
	display: block;
}

.unitPlanner__unitplanner___a4O8_ .unitPlanner__message___WHrvI {
	flex: 1;
	margin: 64px 0 0;
	text-align: center;
}

@keyframes unitPlanner__unitplanner-spinner___xiePu {
	to {
		transform: rotate(360deg);
	}
}

.unitPlanner__unitplanner___a4O8_ .unitPlanner__message___WHrvI.unitPlanner__busy___VceXH::after {
	margin: 32px auto;
	width: 0;
	display: block;
	content: '';
	border-radius: 24px;
	border: 6px solid transparent;
	border-top-color: #000;
	border-bottom-color: #000;
	opacity: 0.4;
	animation-name: unitPlanner__unitplanner-spinner___xiePu;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

.unitPlanner__body___LPZcP h2 {
	color: #999;
	font-weight: normal;
	text-transform: uppercase;
}

.unitPlanner__components_____mQA {
	margin: 0 0 8px 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	background: rgba(var(--theme-bg-parts), 0.8);
}

.unitPlanner__components_____mQA > .unitPlanner__items___PwMOZ {
	overflow-y: hidden;
	overflow-x: auto;
	margin: 0;
	position: relative;
	padding: 8px;
	white-space: nowrap;
}

.unitPlanner__components_____mQA > .unitPlanner__items___PwMOZ > .unitPlanner__item___CKP1e {
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 8px 0 0;
	overflow: hidden;
	width: 200px;
}

.unitPlanner__components_____mQA > .unitPlanner__items___PwMOZ > .unitPlanner__item___CKP1e.unitPlanner__deleted___C12QS {
	opacity: 0;
	width: 0;
	margin: 0;
	display: none;
}

.unitPlanner__components_____mQA > .unitPlanner__items___PwMOZ > .unitPlanner__item___CKP1e > .unitPlanner__title___lgBP1 {
	padding: 8px;
	font-weight: bold;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.unitPlanner__components_____mQA > .unitPlanner__items___PwMOZ > .unitPlanner__item___CKP1e > .unitPlanner__concepts___Hu5ap {
	list-style: none;
	padding: 0 8px 8px;
	white-space: normal;
}

.unitPlanner__components_____mQA > .unitPlanner__items___PwMOZ > .unitPlanner__item___CKP1e > .unitPlanner__concepts___Hu5ap > li {
	display: inline-block;
	margin: 0 2ex 0 0;
	white-space: nowrap;
	overflow: hidden;
	font-size: var(--small-text);
	padding: 0;
}

.unitPlanner__components_____mQA > .unitPlanner__items___PwMOZ > .unitPlanner__item___CKP1e > .unitPlanner__actions____10VM {
	text-align: right;
}

.unitPlanner__components_____mQA > .unitPlanner__items___PwMOZ > .unitPlanner__item___CKP1e > .unitPlanner__actions____10VM > button {
	width: 32px;
	height: 32px;
	border-radius: 100%;
	padding: 0;
	margin: 4px;
}

.unitPlanner__components_____mQA > .unitPlanner__items___PwMOZ > .unitPlanner__item___CKP1e > .unitPlanner__edit___iJdSt {
	right: 4px;
}

.unitPlanner__components_____mQA > .unitPlanner__items___PwMOZ > .unitPlanner__item___CKP1e > .unitPlanner__delete___O3enT {
	right: 36px;
}

.unitPlanner__components_____mQA > .unitPlanner__items___PwMOZ > button {
	background: none;
	box-shadow: none;
	height: 100%;
	border: none;
	width: 200px;
	margin: 0;
	vertical-align: middle;
}

.unitPlanner__unitplannerComponent___YUdci > .unitPlanner__content___PLcHE,
.unitPlanner__body___LPZcP > .unitPlanner__static___yK5pp,
.unitPlanner__body___LPZcP > .unitPlanner__row___kF3N7 {
	display: flex;
}

.unitPlanner__body___LPZcP > .unitPlanner__row___kF3N7 {
	flex-wrap: wrap;
}

.unitPlanner__body___LPZcP.unitPlanner__expanded___K62Kp {
	display: flex;
}

.unitPlanner__body___LPZcP.unitPlanner__expanded___K62Kp > .unitPlanner__row___kF3N7 > .unitPlanner__item___CKP1e {
	flex: 1;
}

.unitPlanner__editor___yCy68,
.unitPlanner__section___FI31S {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	margin: 0 0 8px 0;
	min-height: 300px;
	width: 0;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	background: rgba(var(--theme-bg-parts), 0.8);
}

.unitPlanner__editor___yCy68:nth-child(-n + 2) {
	margin: 0 8px 8px 0;
}

.unitPlanner__body___LPZcP > .unitPlanner__static___yK5pp > .unitPlanner__syllabus___xCNxH {
	height: 300px;
}

.unitPlanner__body___LPZcP > .unitPlanner__static___yK5pp > .unitPlanner__syllabus___xCNxH > .unitPlanner__body___LPZcP {
	overflow-y: auto;
}

.unitPlanner__body___LPZcP > .unitPlanner__row___kF3N7 > .unitPlanner__section___FI31S {
	min-width: 200px;
}

.unitPlanner__body___LPZcP.unitPlanner__expanded___K62Kp > .unitPlanner__row___kF3N7.unitPlanner__hasExpanded___Fsdpf {
	flex: 1;
}

.unitPlanner__body___LPZcP.unitPlanner__expanded___K62Kp > .unitPlanner__row___kF3N7:not(.unitPlanner__hasExpanded___Fsdpf) {
	display: none;
}

.unitPlanner__body___LPZcP.unitPlanner__expanded___K62Kp > .unitPlanner__row___kF3N7 > .unitPlanner__section___FI31S:not(.unitPlanner__expanded___K62Kp),
.unitPlanner__body___LPZcP.unitPlanner__expanded___K62Kp > .unitPlanner__static___yK5pp,
.unitPlanner__body___LPZcP.unitPlanner__expanded___K62Kp > .unitPlanner__components_____mQA {
	display: none;
}

.unitPlanner__editor___yCy68 {
	flex: 1;
}

.unitPlanner__components_____mQA > .unitPlanner__head___QU5h6,
.unitPlanner__editor___yCy68 > .unitPlanner__head___QU5h6,
.unitPlanner__section___FI31S > .unitPlanner__head___QU5h6,
.unitPlanner__editor___yCy68 > .unitPlanner__head___QU5h6 {
	align-items: center;
	display: flex;
	background: var(--theme-offset-bg);
	padding: 0 2px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.unitPlanner__components_____mQA > .unitPlanner__head___QU5h6 > .unitPlanner__title___lgBP1,
.unitPlanner__editor___yCy68 > .unitPlanner__head___QU5h6 > .unitPlanner__title___lgBP1,
.unitPlanner__section___FI31S > .unitPlanner__head___QU5h6 > .unitPlanner__title___lgBP1 {
	flex: 1;
	padding: 8px;
	text-overflow: ellipsis;
	overflow: hidden;
	text-transform: uppercase;
	white-space: nowrap;
	font-size: var(--small-text);
	font-weight: bold;
}

.unitPlanner__components_____mQA > .unitPlanner__head___QU5h6 > button,
.unitPlanner__editor___yCy68 > .unitPlanner__head___QU5h6 > button,
.unitPlanner__section___FI31S > .unitPlanner__head___QU5h6 > button {
	width: 32px;
	height: 32px;
	padding: 0;
	border-radius: 100%;
	margin: 4px 2px;
}

.unitPlanner__editor___yCy68.unitPlanner__syllabus___xCNxH > .unitPlanner__body___LPZcP > .unitPlanner__item___CKP1e,
.unitPlanner__editor___yCy68.unitPlanner__syllabus___xCNxH > .unitPlanner__body___LPZcP > .unitPlanner__item___CKP1e .unitPlanner__content___PLcHE {
	padding: 4px 8px;
	font-size: var(--small-text);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.unitPlanner__editor___yCy68.unitPlanner__syllabus___xCNxH > .unitPlanner__body___LPZcP > .unitPlanner__item___CKP1e > .unitPlanner__content___PLcHE {
	padding: 4px 0 4px 16px;
}

.unitPlanner__editor___yCy68.unitPlanner__syllabus___xCNxH > .unitPlanner__body___LPZcP > .unitPlanner__item___CKP1e > .unitPlanner__code___UwuFm,
.unitPlanner__editor___yCy68.unitPlanner__syllabus___xCNxH > .unitPlanner__body___LPZcP > .unitPlanner__item___CKP1e .unitPlanner__content___PLcHE > span {
	cursor: pointer;
	flex: 1;
	max-height: 3em;
	overflow: hidden;
}

.unitPlanner__editor___yCy68.unitPlanner__syllabus___xCNxH > .unitPlanner__body___LPZcP > .unitPlanner__item___CKP1e button {
	width: 32px;
	height: 32px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.unitPlanner__editor___yCy68.unitPlanner__syllabus___xCNxH > .unitPlanner__body___LPZcP > .unitPlanner__item___CKP1e button svg {
	margin: 0;
}

.unitPlanner__editor___yCy68.unitPlanner__syllabus___xCNxH > .unitPlanner__body___LPZcP > .unitPlanner__item___CKP1e > .unitPlanner__contentWrapper___fJZmh {
	width: 100%;
}

.unitPlanner__dropdownPlaceholder___CRQX2 {
	display: none;
}

.unitPlanner__unitplannerSyllabusDropdown___z0rf_,
.unitPlanner__unitplannerSyllabusContentDropdown___lJfdV {
	background: rgb(var(--theme-fg-parts));
	color: rgb(var(--theme-bg-parts));
	box-shadow: 0 2px 2px rgba(var(--theme-fg-parts), 0.5);
	cursor: default;
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	margin-left: -120px;
	padding: 8px;
	z-index: 10;
	width: 240px;
}

.unitPlanner__unitplannerSyllabusDropdown___z0rf_:before,
.unitPlanner__unitplannerSyllabusContentDropdown___lJfdV:before {
	border: 12px solid transparent;
	border-bottom-color: rgb(var(--theme-fg-parts));
	margin: -24px 0 0 -12px;
	width: 0;
	height: 0;
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
}

.unitPlanner__unitplannerSyllabusDropdown___z0rf_ > h2,
.unitPlanner__unitplannerSyllabusContentDropdown___lJfdV > h2 {
	padding: 0;
	margin: 8px 0;
	text-transform: none;
}

.unitPlanner__unitplannerSyllabusDropdown___z0rf_ > div,
.unitPlanner__unitplannerSyllabusContentDropdown___lJfdV > div {
	margin: 4px 0;
}

.unitPlanner__editor___yCy68.unitPlanner__syllabus___xCNxH > .unitPlanner__body___LPZcP > .unitPlanner__item___CKP1e > .unitPlanner__content___PLcHE > button,
.unitPlanner__editor___yCy68.unitPlanner__syllabus___xCNxH > .unitPlanner__body___LPZcP > .unitPlanner__item___CKP1e > button {
	margin: 0 6px 0 0;
}

.unitPlanner__editor___yCy68.unitPlanner__syllabus___xCNxH > .unitPlanner__body___LPZcP > .unitPlanner__item___CKP1e > .unitPlanner__content___PLcHE > button {
	float: right;
}

.unitPlanner__editor___yCy68.unitPlanner__syllabus___xCNxH > .unitPlanner__body___LPZcP > .unitPlanner__item___CKP1e > .unitPlanner__content___PLcHE > button > svg,
.unitPlanner__editor___yCy68.unitPlanner__syllabus___xCNxH > .unitPlanner__body___LPZcP > .unitPlanner__item___CKP1e > button > svg {
	margin: 0;
}

.unitPlanner__editor___yCy68.unitPlanner__syllabus___xCNxH > .unitPlanner__body___LPZcP > .unitPlanner__item___CKP1e > .unitPlanner__code___UwuFm {
	flex: 1;
	margin: 0 4px 0 0;
}

.unitPlanner__unitplanner___a4O8_ > .unitPlanner__content___PLcHE > .unitPlanner__body___LPZcP > .unitPlanner__row___kF3N7 > .unitPlanner__section___FI31S > .unitPlanner__head___QU5h6 > .unitPlanner__title___lgBP1 {
	color: #000;
}

.unitPlanner__unitplanner___a4O8_ > .unitPlanner__content___PLcHE > .unitPlanner__body___LPZcP > .unitPlanner__row___kF3N7 > .unitPlanner__section___FI31S.unitPlanner__dark___jEcib > .unitPlanner__head___QU5h6 > .unitPlanner__title___lgBP1 {
	color: #fff;
}

.unitPlanner__editor___yCy68 > .unitPlanner__body___LPZcP,
.unitPlanner__editor___yCy68 > .unitPlanner__body___LPZcP,
.unitPlanner__section___FI31S > .unitPlanner__body___LPZcP {
	flex: 1;
	margin: 0;
	position: relative;
}

.unitPlanner__editor___yCy68 > .unitPlanner__body___LPZcP > .uiFormattedTextWrapper,
.unitPlanner__editor___yCy68 > .unitPlanner__body___LPZcP > .uiFormattedTextWrapper,
.unitPlanner__section___FI31S > .unitPlanner__body___LPZcP > .uiFormattedTextWrapper,
.unitPlanner__editor___yCy68 > .unitPlanner__body___LPZcP > .uiFrameWrapper,
.unitPlanner__editor___yCy68 > .unitPlanner__body___LPZcP > .uiFrameWrapper,
.unitPlanner__section___FI31S > .unitPlanner__body___LPZcP > .uiFrameWrapper {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.unitPlanner__editor___yCy68 > .unitPlanner__body___LPZcP > .uiFrameWrapper > .iframeWrapper,
.unitPlanner__editor___yCy68 > .unitPlanner__body___LPZcP > .uiFrameWrapper > .iframeWrapper,
.unitPlanner__section___FI31S > .unitPlanner__body___LPZcP > .uiFrameWrapper > .iframeWrapper,
.unitPlanner__editor___yCy68 > .unitPlanner__body___LPZcP > .uiFrameWrapper > .iframeWrapper > iframe,
.unitPlanner__editor___yCy68 > .unitPlanner__body___LPZcP > .uiFrameWrapper > .iframeWrapper > iframe,
.unitPlanner__section___FI31S > .unitPlanner__body___LPZcP > .uiFrameWrapper > .iframeWrapper > iframe {
	height: 100%;
	width: 100%;
}

.unitPlanner__section___FI31S:not(.unitPlanner__expanded___K62Kp)
	> .unitPlanner__body___LPZcP
	.formattedText > .wrapper > .cke .cke_toolbox > .cke_toolbar {
	display: none;
}

.unitPlanner__section___FI31S:not(.unitPlanner__expanded___K62Kp)
	> .unitPlanner__body___LPZcP
	.formattedText
		> .wrapper
		> .cke
		.cke_toolbox
		> .cke_toolbar:nth-child(1),
.unitPlanner__section___FI31S:not(.unitPlanner__expanded___K62Kp)
	> .unitPlanner__body___LPZcP
	.formattedText
		> .wrapper
		> .cke
		.cke_toolbox
		> .cke_toolbar:nth-child(2),
.unitPlanner__section___FI31S:not(.unitPlanner__expanded___K62Kp)
	> .unitPlanner__body___LPZcP
	.formattedText
		> .wrapper
		> .cke
		.cke_toolbox
		> .cke_toolbar:nth-child(4) {
	display: inline-block;
}

.unitPlanner__section___FI31S:not(.unitPlanner__expanded___K62Kp)
	> .unitPlanner__body___LPZcP
	.formattedText
		> .wrapper
		> .cke
		.cke_toolbox
		> .cke_toolbar:nth-child(4)
		> .cke_toolgroup
		> a:nth-child(1),
.unitPlanner__section___FI31S:not(.unitPlanner__expanded___K62Kp)
	> .unitPlanner__body___LPZcP
	.formattedText
		> .wrapper
		> .cke
		.cke_toolbox
		> .cke_toolbar:nth-child(4)
		> .cke_toolgroup
		> a:nth-child(2) {
	display: none;
}

.unitPlanner__unitplanner___a4O8_ > .unitPlanner__content___PLcHE > .unitPlanner__files___QWhey {
	overflow: hidden;
	z-index: 1;
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
}

.unitPlanner__unitplanner___a4O8_ > .unitPlanner__content___PLcHE > .unitPlanner__files___QWhey > .uiFileListWrapper {
	overflow: hidden;
}

.unitPlanner__unitplanner___a4O8_ > .unitPlanner__content___PLcHE > .unitPlanner__files___QWhey > .uiFileListWrapper > .uiFileList {
	white-space: nowrap;
	overflow: auto;
	background: rgba(var(--theme-bg-parts), 0.8);
}

.unitPlanner__unitplanner___a4O8_ > .unitPlanner__content___PLcHE > .unitPlanner__files___QWhey .uiFileHandler > .note {
	border: none;
	font-size: var(--small-text);
	margin: 4px 0 0;
	background: none;
	padding: 0;
}

.unitPlanner__unitplannerComponent___YUdci {
}

.unitPlanner__unitplannerComponent___YUdci > .unitPlanner__meta___Lni21 {
	padding: 0 0 8px;
	margin: 0 0 8px;
}

.unitPlanner__unitplannerComponent___YUdci > .unitPlanner__meta___Lni21 > .unitPlanner__title___lgBP1 {
	display: block;
	padding: 0;
}

.unitPlanner__unitplannerComponent___YUdci > .unitPlanner__meta___Lni21 > .unitPlanner__title___lgBP1 > .unitPlanner__label___IRyst {
	display: inline-block;
	width: 10%;
	vertical-align: baseline;
	box-sizing: border-box;
	text-align: right;
	padding: 0 8px 0 0;
}

.unitPlanner__unitplannerComponent___YUdci > .unitPlanner__meta___Lni21 > .unitPlanner__title___lgBP1 > .unitPlanner__uiShortText___Ebb3k,
.unitPlanner__unitplannerComponent___YUdci > .unitPlanner__meta___Lni21 > .unitPlanner__title___lgBP1 > .unitPlanner__readonly___sQ6o9 {
	display: inline-block;
	width: 90%;
	vertical-align: baseline;
	box-sizing: border-box;
}

.unitPlanner__unitplannerComponent___YUdci > .unitPlanner__meta___Lni21 > .unitPlanner__concepts___Hu5ap {
	margin: 8px 0 0;
}

.unitPlanner__unitplannerComponent___YUdci > .unitPlanner__meta___Lni21 > .unitPlanner__concepts___Hu5ap > label {
	display: inline-block;
	width: 10%;
	vertical-align: baseline;
	box-sizing: border-box;
	text-align: right;
	padding: 0 8px 0 0;
}

.unitPlanner__unitplannerComponent___YUdci
	> .unitPlanner__meta___Lni21
	> .unitPlanner__concepts___Hu5ap
	> .uiUnitplanConceptListWrapper {
	display: inline-block;
	width: 90%;
	vertical-align: middle;
	box-sizing: border-box;
}

.unitPlanner__unitplannerComponent___YUdci > .unitPlanner__content___PLcHE {
	display: flex;
}

.unitPlanner__pane___u0r0Z.unitPlanner__unitplannerHelp___nMoHS {
}

.unitPlanner__unitplannerHelp___nMoHS > .unitPlanner__pane___u0r0Z > .unitPlanner__content___PLcHE {
	overflow: hidden;
}

.unitPlanner__unitplannerHelp___nMoHS .uiFrameWrapper,
.unitPlanner__unitplannerHelp___nMoHS .iframeWrapper,
.unitPlanner__unitplannerHelp___nMoHS iframe {
	height: 100%;
	width: 100%;
}

.unitPlanner__unitplanner___a4O8_ .uiFileHandler {
	margin: 0;
	border-radius: 0;
}

.unitPlanner__flex___ehBoD {
	flex: 1;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by U. Holtel on 2016-11-02
 */

/* ButtonSingleSelectDropdown */
.calendaring__uiSplitButton___qUehm {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 2px;
	opacity: 0.7;
}

.calendaring__uiSplitButton__content___YKD30 {
	display: flex;
	flex-direction: row;
}

.calendaring__uiSplitButton__content__image___xkXEZ {
}

.calendaring__uiSplitButton__content__selected_value___uZsL4 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: left;
}

.calendaring__uiSplitButton__content__arrow_down___CcNCN {
	text-align: center;
}

/**
 * By default position the panel automatically.
 */
.calendaring__uiSplitButtonList___fdjAf {
	position: absolute;
	left: auto;
	right: auto;
	top: auto;
	bottom: auto;
	z-index: 11;
}

.calendaring__uiSplitButtonList___fdjAf .calendaring__item___vdTWY {
	display: flex;
	width: 100%;
	box-sizing: border-box;
	flex-direction: row;
}

.calendaring__uiSplitButtonList___fdjAf .calendaring__item_image___Gis3W {
	margin: 0 4px 0 0;
}

.calendaring__uiSplitButtonList___fdjAf .calendaring__item_label___oAdWk {
	width: 100%;
}

.calendaring__calendaring___OdB1n button.calendaring__undoHistory_panel__undo___Ng6ub {
	width: 30px;
}

/**
 * For thd undo history, the terms and non-teaching days open the panel to the left
 */
.calendaring__undoHistory___KQPGI .calendaring__uiSplitButtonList___fdjAf,
.calendaring__ntds___sI4li .calendaring__uiSplitButtonList___fdjAf,
.calendaring__terms___n5GEH .calendaring__uiSplitButtonList___fdjAf {
	position: absolute;
	left: auto;
	right: 15px;
	top: auto;
	bottom: auto;
	z-index: 11;
}

/* Adjustments for cycle day selection */
.calendaring__cycleday__selection___IINKW .calendaring__uiSplitButton___qUehm {
	width: 100%;
	padding: 2px 0 2px 4px;
}

.calendaring__cycleday__selection___IINKW .calendaring__uiSplitButton__content___YKD30 {
	display: flex;
	width: 100%;
}

.calendaring__cycleday__selection___IINKW .calendaring__uiSplitButton__content__selected_value___uZsL4 {
	flex: 1;
	width: 100%;
}

.calendaring__cycleday__selection___IINKW .calendaring__uiSplitButton__content__arrow_down___CcNCN {
	width: 20px;
}

.calendaring__calendaring___OdB1n {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	color: rgb(var(--theme-fg-parts));
}

.calendaring__calendaring___OdB1n main {
	flex: 1;
	display: flex;
	background: var(--nav-level-three);
	overflow: hidden;
}

.calendaring__calendaring___OdB1n main > section {
	overflow: hidden;
	display: flex;
}

.calendaring__calendaring___OdB1n .calendaring__ttps___IkHjq.filterBox {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.calendaring__calendaring___OdB1n .calendaring__ttps___IkHjq.filterBox > input {
	border-right: 0;
	border-left: 0;
}

.calendaring__calendaring___OdB1n .calendaring__ttps___IkHjq > ol {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
	overflow: auto;
	width: 100%;
}

.calendaring__calendaring___OdB1n .calendaring__ttps___IkHjq > ol > li {
	padding: 12px 8px;
	margin: 0;
	cursor: pointer;
	border-bottom: 1px solid var(--theme-offset-bg);
}

.calendaring__calendaring___OdB1n .calendaring__ttps___IkHjq > ol > li:hover {
	background: var(--theme-offset-bg);
}

.calendaring__calendaring___OdB1n .calendaring__ttps___IkHjq > ol > li > h2 {
	padding: 0;
	margin: 0;
	font-weight: normal;
	word-break: break-all;
}

.calendaring__calendaring___OdB1n .calendaring__ttps___IkHjq > ol > li > info {
	display: block;
	font-size: var(--small-text);
	opacity: 0.6;
}

.calendaring__calendaring___OdB1n .calendaring__ttps___IkHjq > ol > li.calendaring__selected___pGx9v > h2,
.calendaring__calendaring___OdB1n .calendaring__ttps___IkHjq > ol > li.calendaring__selected___pGx9v {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.calendaring__calendaring___OdB1n .calendaring__ttps___IkHjq > ol > li.calendaring__hidden___TEUsy {
	display: none;
}

.calendaring__calendaring___OdB1n aside.filterBox {
	width: 256px;
	position: relative;
	margin: 0;
	margin-left: 8px;
	min-width: 0;
}

.calendaring__calendaring___OdB1n aside > div {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH,
.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li {
	display: flex;
	flex-direction: column;
	position: absolute;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH {
	top: 32px;
	left: 0;
	right: 0;
	bottom: 50%;
}

.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li {
	top: 50%;
	left: 0;
	right: 0;
	bottom: 0%;
}

/*
		UNDO HISTORY START
*/
.calendaring__undoHistory___KQPGI {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0%;
	left: 0;
	right: 0;
	height: 32px;
}

.calendaring__undoHistory___KQPGI > div {
	overflow: hidden;
	display: flex;
	flex: 1;
	flex-direction: column;
}

.calendaring__undoHistory___KQPGI > div > .calendaring__header___JIXYQ > span {
	flex: 1;
}

.calendaring__undoHistory___KQPGI > div > .calendaring__header___JIXYQ > actions {
	display: flex;
	flex-direction: row;
}

.calendaring__undoHistory___KQPGI > div > .calendaring__header___JIXYQ > actions button {
	padding: 4px;
	justify-content: center;
	width: 32px;
}

.calendaring__undoHistory___KQPGI > div > .calendaring__header___JIXYQ > actions > :first-child,
.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li > .calendaring__header___JIXYQ > button,
.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > .calendaring__header___JIXYQ > button {
	border-radius: 100% 0 0 100%;
	padding-left: 8px;
}

.calendaring__undoHistory___KQPGI > div > .calendaring__header___JIXYQ > actions > :last-child,
.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li > .calendaring__header___JIXYQ > button + div > button,
.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > .calendaring__header___JIXYQ > button + div > button {
	border-radius: 0 100% 100% 0;
	padding-right: 8px;
}

/*
		END
*/

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH ol > li > details {
	width: 100%;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH ol > li > details > summary {
	font-weight: normal;
	color: var(--theme-button-fg);
	padding: 8px;
	cursor: pointer;
	outline: none;
	display: block;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH ol > li > details > summary::-webkit-details-marker {
	display: none;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH ol > li > details > summary::before {
	content: '\25B6';
	font-size: var(--small-text);
	vertical-align: middle;
	display: inline-block;
	width: 16px;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH ol > li > details[open] > summary::before {
	content: '\25BC';
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH ol > li > details > summary > .calendaring__label___nzlHo {
	padding: 0;
	margin: 0;
	font-weight: normal;
	display: inline-block;
	color: var(--theme-button-fg);
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH ol > li > details > summary > span {
	display: block;
	font-size: var(--small-text);
	opacity: 0.5;
	padding-left: 16px;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH .calendaring__cycleDayRolloutStrategy___pxOxK,
.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH ol > li > details > ol {
	border: none;
	margin: 0 16px;
	padding: 8px;
	list-style: none;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH .calendaring__cycleDayRolloutStrategy___pxOxK {
	padding: 8px;
	text-transform: uppercase;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH ol > li > details > ol > li {
	display: inline-block;
	width: 25%;
	margin: 0;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH ol > li > details label {
	display: block;
	margin: 0;
	padding: 2px;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH ol > li > details label input {
	margin: 0 4px 0 0;
	vertical-align: middle;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > ol,
.calendaring__calendaring___OdB1n .calendaring__ttps___IkHjq > ol {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
}

.calendaring__calendaring___OdB1n .calendaring__undoHistory___KQPGI > div > .calendaring__header___JIXYQ,
.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li > .calendaring__header___JIXYQ,
.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > .calendaring__header___JIXYQ {
	background: var(--theme-button-bg);
	text-transform: uppercase;
	display: flex;
	height: 32px;
	padding: 0 8px;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > .calendaring__header___JIXYQ > span,
.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li > .calendaring__header___JIXYQ > span {
	flex: 1;
}

.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li > .calendaring__header___JIXYQ > button,
.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li > .calendaring__header___JIXYQ > button + div > button,
.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > .calendaring__header___JIXYQ > button,
.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > .calendaring__header___JIXYQ > button + div > button {
	padding: 4px;
	width: 32px;
	display: flex;
	justify-content: center;
}

.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li > ol,
.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > ol {
	list-style: none;
	padding: 0;
	margin: 0;
	overflow-y: scroll;
	flex: 1;
}

.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li > ol > li,
.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > ol > li {
	border-bottom: 1px dotted var(--theme-offset-bg-more);
	display: flex;
	align-items: top;
	cursor: pointer;
}

.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li > ol > li:hover,
.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > ol > li:hover {
	background-color: var(--theme-offset-bg);
}

.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li > ol > li > info,
.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > ol > li > info {
	padding: 8px;
	flex: 1;
	box-sizing: border-box;
}

.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li > ol > li > actions,
.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > ol > li > actions {
	max-width: 100%;
	text-align: right;
	padding: 0 4px 4px 0;
	display: flex;
	flex-direction: row;
}

.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li > ol > li > info > .calendaring__label___nzlHo,
.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > ol > li > info > .calendaring__label___nzlHo {
	margin: 0;
	font-weight: normal;
	display: inline-block;
}

.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li > ol > li > info > span,
.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > ol > li > info > span {
	flex: 1;
	display: block;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > ol > li > info > range {
	padding: 0 8px;
	display: block;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > ol > li > info > range:first-of-type {
	margin-top: 8px;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > ol > li > info > range:last-of-type {
	margin-bottom: 8px;
}

.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li > ol > li > actions > button,
.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > ol > li > actions > button {
	margin: 8px 0;
	width: 32px;
	height: 32px;
	padding: 8px;
	z-index: 1;
	border: solid 1px var(--theme-offset-bg);
	border-radius: 100%;
}

.calendaring__calendaring___OdB1n .calendaring__ntds___sI4li > ol > li > actions > button > svg,
.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > ol > li > actions > button > svg {
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > ol > li.calendaring__warning___MwNkN {
	display: block;
	padding: 8px;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > ol > li.calendaring__warning___MwNkN > ul {
	margin: 0;
	list-style: disc;
	padding: 0;
	list-style-position: inside;
}

.calendaring__calendaring___OdB1n .calendaring__terms___n5GEH > ol > li.calendaring__warning___MwNkN > ul > li {
}

.calendaring__calendaring___OdB1n main > section.calendaring__manipulation___PPEN_ {
	height: 100%;
	display: flex;
	flex: 1;
	overflow: auto;
}

/*
 * the calendar
 */
.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 {
	height: 100%;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__header-table___tkz6W {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 32px;
	overflow: hidden;
	white-space: nowrap;
	font-size: var(--small-text);
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf {
	position: absolute;
	top: 32px;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: scroll;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__alert___homWx {
	background: #fdf190;
	color: #000;
	overflow: hidden;
	height: 48px;
	transition: top 0.5s ease-in-out;
	padding: 8px;
	box-sizing: border-box;
	white-space: nowrap;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__alert___homWx > .calendaring__content___Wttez {
	display: inline-block;
	vertical-align: middle;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__alert___homWx > .calendaring__content___Wttez > .calendaring__title___Xbyfh {
	display: block;
	font-weight: bold;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__alert___homWx > .calendaring__content___Wttez > .calendaring__text___b5J2S {
	display: block;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__alert___homWx + div .calendaring__header-table___tkz6W,
.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__alert___homWx + div .calendaring__body-table___otVHf {
	margin-top: 48px;
}

/*
 * the column headers of the calendar ()
 */
.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__header-table___tkz6W > table {
	border-spacing: 0;
	table-layout: fixed;
	height: 100%;
	overflow: hidden;
}

/*
 * the body of the calendar
 */
.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table {
	border-spacing: 0;
	table-layout: fixed;
	max-height: 100%;
	overflow: hidden;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__header-table___tkz6W > table tbody,
.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table tbody {
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__header-table___tkz6W > table tbody tr,
.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table tbody tr {
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__header-table___tkz6W > table tr td.calendaring__scrollSpacer___J5reh > div {
	width: 8px;
}

/*
 *
 */
.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__header-table___tkz6W > table tr td:not(.calendaring__scrollSpacer___J5reh),
.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table tr td {
	padding: 0;
	border-bottom: 1px solid rgba(var(--theme-fg-parts), 0.2);
	border-right: 1px solid transparent;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__header-table___tkz6W > table tr td:nth-last-child(2) {
	border-right: 1px solid rgba(var(--theme-fg-parts), 0.2);
}

/*
 * Set the size of the cells here
 */
.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__header-table___tkz6W tr td > div,
.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table tr td.calendaring__calendar-day___W6lEt > .calendaring__content___Wttez {
	display: inline-block;
	width: 243px;
	margin: 0;
	box-sizing: border-box;
	overflow: hidden;
	text-overflow: clip;
	padding: 4px 0;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__header-table___tkz6W tr td > div {
	padding: 6px;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table tr td.calendaring__calendar-day___W6lEt > .calendaring__content___Wttez > div {
	margin: 6px;
	box-sizing: border-box;
}

.calendaring__calendaring___OdB1n
	.calendaring__calendar___biJx2
	.calendaring__body-table___otVHf
	> table
	tr
	td.calendaring__calendar-day___W6lEt
	> .calendaring__content___Wttez
	> div.calendaring__roll___NJrnH {
	margin: 0;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__header-table___tkz6W > table tbody tr td:not(.calendaring__scrollSpacer___J5reh) {
	font-weight: normal;
	font-size: var(--small-text);
	text-transform: uppercase;
	background: var(--theme-button-bg);
	text-align: center;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table {
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table tr {
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table tr td {
	border-right: 1px solid rgba(var(--theme-fg-parts), 0.2);
}

/* TODO */
.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table tr td.calendaring__modified___refwX {
	box-shadow: inset 0 0 0 2px #c00;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table tr td.calendaring__calendar-day___W6lEt > .calendaring__content___Wttez {
	display: flex;
	opacity: 1;
	height: 100%;
	align-items: center;
}

.calendaring__calendaring___OdB1n
	.calendaring__calendar___biJx2
	.calendaring__body-table___otVHf
	> table
	tr
	td.calendaring__calendar-day___W6lEt.calendaring__editable___Btkv6
	> .calendaring__content___Wttez {
	opacity: 1;
}

.calendaring__calendaring___OdB1n
	.calendaring__calendar___biJx2
	.calendaring__body-table___otVHf
	> table
	tr
	td.calendaring__calendar-day___W6lEt.calendaring__uneditable___k_DlW
	> .calendaring__content___Wttez {
	opacity: 0.5;
	background-color: rgba(var(--theme-fg-parts), 0.05);
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf .calendaring__roll___NJrnH button {
	padding: 4px;
	border-radius: 100%;
	height: 24px;
	width: 24px;
	justify-content: center;
	box-sizing: border-box;
}

.calendaring__calendaring___OdB1n
	.calendaring__calendar___biJx2
	.calendaring__body-table___otVHf
	> table
	tr
	td.calendaring__calendar-day___W6lEt.calendaring__standard-teaching-day___acmr0
	> .calendaring__content___Wttez
	> div {
	opacity: 1;
}

.calendaring__calendaring___OdB1n
	.calendaring__calendar___biJx2
	.calendaring__body-table___otVHf
	> table
	tr
	td.calendaring__calendar-day___W6lEt.calendaring__non-standard-teaching-day___zpFvS
	> .calendaring__content___Wttez
	> div {
	opacity: 1;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table tr td.calendaring__calendar-day___W6lEt.calendaring__non-teaching-day___ypZn7 {
	background: rgba(37, 94, 177, 0.1);
}

.calendaring__calendaring___OdB1n
	.calendaring__calendar___biJx2
	.calendaring__body-table___otVHf
	> table
	tr
	td.calendaring__calendar-day___W6lEt.calendaring__non-teaching-day___ypZn7
	> .calendaring__content___Wttez
	.calendaring__roll___NJrnH,
.calendaring__calendaring___OdB1n
	.calendaring__calendar___biJx2
	.calendaring__body-table___otVHf
	> table
	tr
	td.calendaring__calendar-day___W6lEt.calendaring__non-teaching-day___ypZn7
	> .calendaring__content___Wttez
	.calendaring__term___bYwQX {
	width: 0;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table tr td.calendaring__calendar-day___W6lEt .calendaring__content___Wttez.calendaring__past___SWNst {
	font-style: italic;
	opacity: 0.5;
	background-color: rgba(var(--theme-fg-parts), 0.1);
}

.calendaring__calendaring___OdB1n
	.calendaring__calendar___biJx2
	.calendaring__body-table___otVHf
	> table
	tr
	td.calendaring__calendar-day___W6lEt
	.calendaring__content___Wttez.calendaring__past___SWNst.calendaring__unlocked___W4xLT {
	/* UH: This is supposed to be 0.6, but then the uiSplitButtonList is not displayed anymore
	 * After hours of trying to find a solution I gave up. This is only relevant if the calendar
	 * is unlocked and therefore is only visible to support.
	 */
	opacity: 1;
}

.calendaring__calendaring___OdB1n
	.calendaring__calendar___biJx2
	.calendaring__body-table___otVHf
	> table
	tr
	td.calendaring__calendar-day___W6lEt
	> .calendaring__content___Wttez
	> .calendaring__date___ZMsLJ {
	text-align: right;
	text-overflow: clip;
	width: 24px;
	padding: 0 3px;
	margin-left: 3px;
	margin-right: 0;
	border-right: 1px solid rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.calendaring__calendaring___OdB1n
	.calendaring__calendar___biJx2
	.calendaring__body-table___otVHf
	> table
	tr
	td.calendaring__calendar-day___W6lEt
	> .calendaring__content___Wttez
	> .calendaring__name___lSM4E {
	opacity: 0.5;
	text-overflow: clip;
	width: 15px;
	margin-left: 3px;
	margin-right: 0px;
	text-align: center;
	overflow: hidden;
}

.calendaring__calendaring___OdB1n
	.calendaring__calendar___biJx2
	.calendaring__body-table___otVHf
	> table
	tr
	td.calendaring__calendar-day___W6lEt
	> .calendaring__content___Wttez
	> .calendaring__cycleday___KcVkJ {
	flex: 1;
	width: 100%;
	overflow: hidden;
	margin: 0 4px;
}

.calendaring__calendaring___OdB1n
	.calendaring__calendar___biJx2
	.calendaring__body-table___otVHf
	> table
	tr
	td.calendaring__calendar-day___W6lEt
	> .calendaring__content___Wttez
	> .calendaring__term___bYwQX {
	width: 43px;
	text-align: center;
	overflow: hidden;
	margin-left: 6px;
	margin-right: 3px;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table tr td button.calendaring__more___OD1c5 {
	position: relative;
	text-align: left;
	margin: 0 0 0 4px;
	padding: 4px 8px 4px 4px;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table tr td button > span:nth-child(2) {
	position: absolute;
	right: 2px;
	display: none;
}

.calendaring__calendaring___OdB1n
	.calendaring__calendar___biJx2
	.calendaring__body-table___otVHf
	> table
	tr
	td:hover
	button
	> span:nth-child(2),
.calendaring__calendaring___OdB1n
	.calendaring__calendar___biJx2
	.calendaring__body-table___otVHf
	> table
	tr
	td
	button.calendaring__active___Mp4sy
	> span:nth-child(2) {
	display: inline;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table tr td.calendaring__blank___PGdmL {
	border: none;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table tr td.calendaring__outside___DBYz_ {
	opacity: 0.4;
}

.calendaring__calendaring___OdB1n .calendaring__calendar___biJx2 .calendaring__body-table___otVHf > table tr td.calendaring__ntd___q5qpJ {
	opacity: 0.4;
}

.calendaring__dialog___PpTYA main {
	padding: 8px;
}

.calendaring__dialog___PpTYA main > .calendaring__field___cHF9r {
	display: flex;
	align-items: center;
	margin-bottom: 6px;
}

.calendaring__dialog___PpTYA main > .calendaring__field___cHF9r > label {
	width: 33%;
}

.calendaring__dialog___PpTYA main > .calendaring__field___cHF9r > div,
.calendaring__dialog___PpTYA main > .calendaring__field___cHF9r > input {
	flex: 1;
}

.calendaring__dialog___PpTYA main > .calendaring__field___cHF9r > .uiDateRangeWrapper > .daterange {
	display: flex;
	align-items: center;
}

.calendaring__dialog___PpTYA main > .calendaring__field___cHF9r > .uiDateRangeWrapper > .daterange > input {
	flex: 1;
	min-width: 0;
}

.calendaring__dialog___PpTYA main > .calendaring__error___j2Isg {
	color: #ef2929;
	margin-top: 12px;
}

.calendaring__add-term-dialog___DmayU .pane {
}

.calendaring__field___cHF9r .wxNumberInput > input[disabled] {
	opacity: 0.5;
}

.calendaring__field___cHF9r .wxNumberInput > input[disabled]:hover {
	border: none;
	background: none;
	cursor: default;
}

.calendaring__field___cHF9r .wxNumberInput > button[disabled]:hover {
	background: none;
	cursor: default;
}

.calendaring__field___cHF9r label:hover {
	cursor: default;
}

.calendaring__uiSplitButtonList___fdjAf .calendaring__item___vdTWY.calendaring__selected___pGx9v {
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by simon on 2016-10-04
 */

.cloning__classCloning___tAzK5 {
}

.cloning__classCloning___tAzK5 .pane {
	display: flex;
	flex-direction: column;
}

.cloning__classCloning___tAzK5 .content {
	align-items: stretch;
	display: flex;
	overflow: hidden;
	flex: 1;
}

/** SelectionPane */

.cloning__selectionPane___b3J_B {
	display: flex;
	flex-direction: column;
	border-left: 1px solid var(--theme-offset-bg);
	padding: 0;
	width: 220px;
}

.cloning__selectionPane___b3J_B > h2 {
	font-size: var(--small-text);
	font-weight: bold;
	text-transform: uppercase;
	margin: 8px;
}

.cloning__selectionPane___b3J_B > .cloning__list___NNYJV {
	border-top: 1px solid var(--theme-offset-bg);
	flex: 1;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
}

.cloning__selectionPane___b3J_B > .cloning__list___NNYJV > .cloning__item___avLF_ {
	align-items: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 8px;
	position: relative;
	min-height: 42px;
	border-bottom: 1px solid var(--theme-offset-bg);
}

.cloning__selectionPane___b3J_B > .cloning__list___NNYJV > .cloning__item___avLF_.cloning__selected___RsRYt {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.cloning__selectionPane___b3J_B > .cloning__list___NNYJV > .cloning__item___avLF_ input {
	flex-basis: 20px;
	margin: 8px;
}

.cloning__selectionPane___b3J_B > .cloning__list___NNYJV > .cloning__item___avLF_ > .cloning__name___Vy5Ck {
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

.cloning__selectionPane___b3J_B > .cloning__list___NNYJV > .cloning__item___avLF_ > .cloning__name___Vy5Ck > .cloning__code___IlCjT {
	opacity: 0.5;
	margin: 2px 0 0;
	text-transform: uppercase;
}

.cloning__selectionPane___b3J_B > .cloning__list___NNYJV > .cloning__item___avLF_ > .cloning__includeOthers___yrONm {
	display: flex;
	flex-direction: row;
	flex-basis: 100%;
	margin: 8px 0 0 8px;
}

.cloning__selectionPane___b3J_B > .cloning__list___NNYJV > .cloning__item___avLF_ > .cloning__includeOthers___yrONm > .cloning__name___Vy5Ck {
	opacity: 0.5;
	cursor: pointer;
	font-size: var(--small-text);
}

.cloning__selectionPane___b3J_B > .cloning__actions___cEN7l {
	align-items: center;
	display: flex;
	justify-content: center;
}

.cloning__selectionPane___b3J_B > .cloning__actions___cEN7l > button {
	margin: 4px;
}

/** CloningBody */

.cloning__cloningBody___Y29I7 {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	flex: 1;
	overflow: hidden;
}

/** Ranges */

.cloning__ranges___e1fIc {
	align-items: flex-start;
	display: flex;
	flex: 1;
	flex-direction: row;
	min-height: 400px;
	overflow: hidden;
}

.cloning__ranges___e1fIc > .cloning__arrow___LY990 {
	align-self: center;
	color: var(--theme-offset-bg);
	font-size: var(--huge-text);
	font-weight: bold;
	margin: 0;
}

.cloning__ranges___e1fIc > .cloning__alpha___kz0A8,
.cloning__ranges___e1fIc > .cloning__beta___SKhxF {
	align-self: stretch;
	align-items: center;
	display: flex;
	flex-direction: column;
	flex: 1;
	max-height: 100%;
	padding: 8px;
	text-align: center;
	width: 1px;
}

/** RangeSelector */

.cloning__rangeSelector___J8bga,
.cloning__rangeSelector___J8bga {
	background: var(--theme-offset-bg);
	padding: 16px;
	width: 170px;
}

.cloning__rangeSelector___J8bga > h3,
.cloning__rangeSelector___J8bga > h3 {
	font-size: var(--small-text);
	font-weight: bold;
	margin: 0;
	text-transform: uppercase;
}

.cloning__rangeSelector___J8bga > .uiButtonMenuWrapper,
.cloning__rangeSelector___J8bga > .uiSingleSelectWrapper {
	margin: 8px 0;
}

.cloning__rangeSelector___J8bga > .uiButtonMenuWrapper button,
.cloning__rangeSelector___J8bga > .uiSingleSelectWrapper input {
	box-sizing: border-box;
	text-align: center;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.cloning__rangeSelector___J8bga > .uiDateRangeWrapper > .daterange > input {
	box-sizing: border-box;
	display: block;
	text-align: center;
	width: 100%;
}

.cloning__rangeSelector___J8bga > .uiDateRangeWrapper > .daterange > .interstitial {
	display: block;
	margin: 4px 0;
}

.cloning__rangePreview___UZanR {
	flex: 1;
	margin: 8px 0 0;
	height: 220px;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0 16px;
}

/** PreviewMonth */

.cloning__previewMonth___DCRcp {
	margin: 4px;
}

.cloning__previewMonth___DCRcp > h2 {
	font-size: var(--small-text);
	font-weight: bold;
	margin: 8px 0 2px;
	text-transform: uppercase;
}

.cloning__previewMonth___DCRcp > table {
	border: none;
	border-collapse: collapse;
	margin: 0;
}

.cloning__previewMonth___DCRcp > table th {
	font-size: var(--small-text);
	font-weight: normal;
	padding: 6px 8px;
	margin: 0;
}

.cloning__previewMonth___DCRcp > table td {
	background: none;
	padding: 6px 8px;
	margin: 0;
}

.cloning__previewMonth___DCRcp > table td[style] {
	color: #000;
	font-weight: bold;
}

.cloning__previewMonth___DCRcp > table .cloning__ntd___crPwN {
	color: rgba(255, 0, 0, 0.5);
	font-weight: bold;
}

/** Warning **/

.cloning__warning___UZAyj {
	background: var(--theme-offset-bg);
	padding: 8px;
	border-radius: 2px;
	border-left: 8px solid var(--yellow);
}

/** Advanced **/

.cloning__advanced___Dams0 {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	margin: 8px 0 0;
	overflow: hidden;
	position: relative;
}

@media (max-height: 700px) {
	.cloning__ranges___e1fIc.cloning__advancedOpen___Mu4Ak {
		flex: 0;
		flex-basis: 420px;
		min-height: auto;
	}

	.cloning__advanced___Dams0 {
		flex-basis: 30px;
	}

	.cloning__advanced___Dams0.cloning__open___PEPJ3 {
		flex: 1;
		flex-basis: 340px;
		min-height: 340px;
	}

	.cloning__warning___UZAyj.cloning__open___PEPJ3 {
		display: none;
	}
}

@media (max-height: 600px) {
	.cloning__warning___UZAyj {
		display: none;
	}
}

.cloning__advanced___Dams0.cloning__open___PEPJ3 {
	height: 300px;
}

.cloning__advanced___Dams0 > .cloning__summary___WbOvc {
	cursor: pointer;
	padding: 8px 0;
	text-transform: uppercase;
}

.cloning__advanced___Dams0 > .cloning__summary___WbOvc:active,
.cloning__advanced___Dams0 > .cloning__summary___WbOvc:focus {
	border: none;
	outline: none;
}

.cloning__advanced___Dams0 > .cloning__summary___WbOvc > span {
	vertical-align: middle;
}

.cloning__advanced___Dams0 > .cloning__summary___WbOvc > span:first-child {
	margin-right: 4px;
}

.cloning__advancedBody___IT9eb {
	overflow-x: hidden;
	overflow-y: auto;
	position: absolute;
	top: 30px;
	bottom: 0;
}

.cloning__advanced___Dams0:not(.cloning__open___PEPJ3) > .cloning__advancedBody___IT9eb {
	display: none;
}

.cloning__advancedBody___IT9eb > .cloning__bridging___T3hr_,
.cloning__advancedBody___IT9eb > .cloning__nonTeachingDays___xBbne {
	margin: 8px;
}

.cloning__advancedBody___IT9eb > .cloning__doubleUp___Hc046 {
	margin: 24px 8px;
}

.cloning__advancedBody___IT9eb .cloning__radioOption___ttUnM {
	margin: 8px 0;
}

.cloning__advancedBody___IT9eb > .cloning__bridging___T3hr_ > label {
	color: #f57900;
	cursor: default;
	margin: 0;
	padding: 0;
}

.cloning__advancedBody___IT9eb > .cloning__bridging___T3hr_ > .cloning__note___TYCh7 {
	opacity: 0.5;
	margin: 8px 0;
}

.cloning__advancedBody___IT9eb > .cloning__doubleUp___Hc046 > input {
	margin: 0;
}

.cloning__advancedBody___IT9eb > .cloning__nonTeachingDays___xBbne > label {
	cursor: default;
	margin: 0;
	padding: 0;
}

.cloning__advancedBody___IT9eb > .cloning__nonTeachingDays___xBbne > label > span {
	display: inline-block;
	margin: 4px;
}

.cloning__advancedBody___IT9eb > .cloning__nonTeachingDays___xBbne > label > em {
	background: #eee;
	color: #444;
	cursor: default;
	border-radius: 8px;
	padding: 4px 8px;
}

/*
	* Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
	*
	* Created by bernadette on 2017-07-28
	*/

.releaseHistory__ReleaseHistory___xIgUo {
	display: flex;
	flex: 1;
	flex-direction: column;
	overflow: auto;
}

.releaseHistory__ReleaseHistory___xIgUo .releaseHistory__alertList___jDwJv {
	flex-direction: column;
	display: flex;
	height: 100%;
}

.releaseHistory__ReleaseHistory___xIgUo .releaseHistory__alerts___DMsrh {
}

.releaseHistory__ReleaseHistory___xIgUo .releaseHistory__alertContainer___m5YWg {
	display: flex;
	margin: 32px;
}

.releaseHistory__ReleaseHistory___xIgUo .releaseHistory__image___RirCX {
	width: 64px;
	height: 64px;
}

.releaseHistory__ReleaseHistory___xIgUo .releaseHistory__imageWrapper___cGI3E {
}

.releaseHistory__ReleaseHistory___xIgUo .releaseHistory__image___RirCX {
	background: none;
	border: none;
	box-shadow: none;
	padding: 2px 0 0 0;
	background-size: 64px 64px;
}

.releaseHistory__ReleaseHistory___xIgUo .releaseHistory__content___tqAch {
	padding-left: 20px;
}

.releaseHistory__ReleaseHistory___xIgUo .releaseHistory__title___bG7HA {
	font-size: var(--large-text);
	background: none;
	border: none;
	box-shadow: none;
	padding: 0;
	color: inherit;
	font-weight: bold;
	text-decoration: none;
	opacity: 0.8;
}

.releaseHistory__ReleaseHistory___xIgUo .releaseHistory__description___L5X5M {
	opacity: 0.5;
}

.releaseHistory__ReleaseHistory___xIgUo .releaseHistory__descriptionlink___M7oPm {
	font-size: var(--small-text);
	color: inherit;
	background: none;
	border: none;
	box-shadow: none;
	padding: 0;
	opacity: 0.5;
}

.releaseHistory__ReleaseHistory___xIgUo .releaseHistory__date___hVvLh {
	position: sticky;
	top: 0;
	background: var(--theme-table-headers);
	padding: 8px;
	margin: 0;
	text-transform: uppercase;
	font-weight: bold;
	z-index: 1;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2018.
 *  
 * Created by huili on 2018-05-29
 */

.Help__Help___rKTIu {
	flex: 1;
	height: 100%;
	width: 100%;
	background: var(--nav-level-three);
	display: flex;
	align-items: stretch;
	overflow: hidden;
}

.Help__Help___rKTIu > .Help__helpInfoWrapper___p6oXa {
	width: 400px;
	overflow: auto;
	border-right: 1px solid var(--theme-offset-bg);
	padding-bottom: 6px;
}

.Help__HelpInfo___fmFwz > button {
	display: block;
	margin: 12px auto;
	width: 96%;
	height: 32px;
	background: var(--theme-button-bg);
	color: var(--theme-button-fg);
	border: solid 1px var(--theme-offset-bg);
	cursor: pointer;
}

.Help__HelpInfo___fmFwz > .Help__details___l1eHz {
	border-top: 1px solid var(--theme-offset-bg);
	padding-left: 2%;
	margin: auto;
}

.Help__HelpInfo___fmFwz > .Help__details___l1eHz > .Help__title___TpNqI {
	font-size: var(--large-text);
	margin-top: 12px;
}

.Help__HelpInfo___fmFwz > .Help__details___l1eHz > .Help__field___Fyd52 {
	margin: 10px 6px;
}

.Help__HelpInfo___fmFwz > .Help__details___l1eHz > .Help__field___Fyd52 > img,
.Help__HelpInfo___fmFwz > .Help__details___l1eHz > .Help__field___Fyd52 > .Help__content___ZEn4e {
	display: inline-block;
	vertical-align: middle;
}

.Help__HelpInfo___fmFwz > .Help__details___l1eHz > .Help__field___Fyd52 > .Help__content___ZEn4e {
	margin-left: 6px;
}

.Help__HelpInfo___fmFwz > .Help__details___l1eHz > .Help__hours___et2Md > .Help__term___mbIny {
	padding-left: 28px;
	margin: 8px 0;
}

.Help__Help___rKTIu > .Help__release___nZoTv {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: auto;
}

.Help__Help___rKTIu > .Help__release___nZoTv > .Help__title___TpNqI {
	font-size: var(--large-text);
	padding: 8px;
}

.Help__debugInfo___ssjE9 .content {
	white-space: pre-wrap;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	font-family: 'Inconsolata', 'Consolas', 'Lucida Console', monospace;
	box-sizing: border-box;
}

.Help__kbError___GBqev .content {
	font-style: italic;
	box-sizing: border-box;
	color: #c00;
}

.Help__kbError___GBqev .Help__container___dYapI {
	min-height: 150px;
}

.Help__kbError___GBqev .Help__message___mr9hl {
	position: absolute;
	top: 32px;
	right: 16px;
	left: 16px;
	text-align: center;
}

.Help__kbError___GBqev .Help__icon___htclS {
	position: absolute;
	top: 50%;
	left: 16px;
	margin-top: -32px;
}

@media (max-width: 850px) {
	.Help__Help___rKTIu {
		display: flex;
		flex-direction: column;
	}

	.Help__Help___rKTIu > .Help__helpInfoWrapper___p6oXa {
		position: initial;
		width: 100%;
		border: 0;
	}

	.Help__Help___rKTIu > .Help__release___nZoTv {
		position: initial;
		width: 100%;
		flex: 1;
	}
}

@media (max-width: 850px) and (max-height: 700px) {
	.Help__Help___rKTIu {
		display: block;
		flex-direction: unset;
	}

	.Help__Help___rKTIu > .Help__release___nZoTv {
		position: initial;
		width: 100%;
		flex: unset;
	}
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2015.
 *
 * Created by Simon on 2016-08-27
 */

.adminPageWrapper {
}

.adminPage {
	display: flex;
	flex: 1;
	overflow: hidden;
	background-color: var(--nav-level-three);
}

.adminPage > .adminList {
	min-width: 0;
	width: 192px;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
	border-radius: 0;
	background: rgb(var(--theme-bg-parts));
	box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.3);
}

.adminPage > .adminList.dirty {
	opacity: 0.3;
}

.adminPage > .adminList > .list {
	height: 100%;
}

.adminPage > .adminList > .list > .item {
	border-bottom: 1px solid var(--theme-offset-bg);
}

.adminPage > .resultsPane {
	flex: 3;
	overflow: hidden;
	max-width: none;
	padding: 0;
	margin: 16px 16px 16px 20px;
}

.manage__loadingSpinner___YiBPk {
	margin: auto auto;
}

.adminPage > .resultsPane > .uiResultsTable {
	width: 100%;
	height: 100%;
}

.adminPage > .resultsPane > .uiResultsTable.dirty {
	opacity: 0.3;
}

.adminPage > .resultsPane > .uiResultsTable th {
	cursor: pointer;
	font-size: var(--small-text);
}

.adminPage > .resultsPane > .uiResultsTable .header .tableHeader {
	background: var(--theme-offset-bg);
}

.adminPage
		> .resultsPane
		> .uiResultsTable
		.header
		.tableHeader.activeSort {
	background-color: var(--yellow);
}

.adminPage > .resultsPane > .uiResultsTable tr:not(.selected):hover {
	background-color: var(--theme-offset-bg);
}

.adminPage > .resultsPane > .uiResultsTable td {
	word-wrap: break-word;
	border-bottom: 1px solid var(--theme-offset-bg);
}

.adminPage > .resultsPane > .uiResultsTable.dirty td {
	cursor: default;
}

.adminPage > .resultsPane > .uiResultsTable th:first-child .adminPage
		> .resultsPane
		> .uiResultsTable
		td:first-child {
	padding-left: 8px;
}

.adminPage > .resultsPane > .uiResultsTable td > .undefined {
	opacity: 0.5;
}

.manage__toolbar___B9KuJ {
	display: flex;
	align-items: center;
}

.manage__toolbar___B9KuJ label {
	justify-content: left;
}

.manage__toolbar___B9KuJ input {
	max-width: 250px;
}

.manage__toolbarForm___esx9O {
	width: 200px;
}

.manage__toolbarForm___esx9O input[type='search'] {
	margin: 6px;
}

.manage__editor___yoe5w {
	flex-direction: column;
	overflow-x: hidden;
	overflow-y: hidden;
	align-items: stretch;
	display: none;
	padding: 0;
	flex: 2;
}

@media (max-width: 1600px) {
	.manage__editor___yoe5w {
		background-color: rgb(var(--theme-bg-parts));
		position: absolute;
		top: 39px;
		right: -8px;
		bottom: -8px;
		border-radius: 0;
		box-sizing: border-box;
		padding: 0;
	}
}

.manage__editor___yoe5w.manage__visible___lF5HL {
	display: flex;
}

.manage__editor___yoe5w > .manage__warning___ymd1x {
	margin: 0 16px;
	font-style: italic;
	color: #f44;
}

.manage__editorToolbar___ELp52 {
	display: flex;
	flex-wrap: wrap;
	padding: 8px;
}

.manage__editorToolbar___ELp52 > .manage__spacer___EtFN_ {
	flex: 1;
}

.manage__editorToolbar___ELp52 > .manage__saveButton___LSM1o {
	margin-right: 4px;
}

.manage__editor___yoe5w > .manage__editorBody___wcN2S {
	flex: 1;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0 8px;
}

.manage__editor___yoe5w > .manage__editorBody___wcN2S > .manage__group___UDMas + .manage__group___UDMas {
	margin: 32px 0 0;
}

.manage__editor___yoe5w > .manage__message___uFC4j {
	color: #aaa;
	font-size: var(--huge-text);
	margin: 64px 0 0;
	text-align: center;
}

.manage__editor___yoe5w .manage__title___qIZJ7 {
	font-size: var(--small-text);
	font-weight: bold;
	text-transform: uppercase;
	padding: 8px 0;
}

.manage__editor___yoe5w .manage__title___qIZJ7 > label {
	padding-left: 0;
}

.manage__editor___yoe5w .manage__field___Dphsh {
	align-items: center;
	display: flex;
	flex-direction: row;
	margin: 0 0 8px;
}

.manage__editor___yoe5w .manage__field___Dphsh > label {
	margin: 0 1ex 0 0;
	flex-shrink: 0;
	width: 140px;
	font-size: var(--small-text);
	font-weight: bold;
	text-transform: uppercase;
	opacity: 0.5;
	padding: 0;
}

.manage__editor___yoe5w .manage__field___Dphsh > input,
.manage__editor___yoe5w .manage__field___Dphsh > textarea,
.manage__editor___yoe5w .manage__field___Dphsh > .uiSingleSelectWrapper,
.manage__editor___yoe5w .manage__field___Dphsh > .uiCalendarWrapper,
.manage__editor___yoe5w .manage__field___Dphsh > .wxNumberInput {
	flex: 1;
}

.manage__editor___yoe5w .manage__field___Dphsh .manage__tableList___LPRa6 .uiButton.flat {
	border: none;
	background-color: inherit;
	margin: 0;
}

.manage__editor___yoe5w .manage__field___Dphsh .manage__tableList___LPRa6 .uiButton.flat:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.manage__editor___yoe5w .manage__field___Dphsh .manage__tableList___LPRa6 .uiButton.flat:active {
	background-color: var(--theme-offset-bg);
}

.manage__uiWarningField___A10A4 {
	background: var(--theme-offset-bg);
	border-left: 8px solid var(--yellow);
	border-radius: 4px;
	padding: 8px;
	font-weight: bold;
	font-size: var(--small-text);
	text-transform: uppercase;
	margin: 0 0 8px;
}

.manage__editor___yoe5w .manage__field___Dphsh.manage__notNullWarning____C0Aa input,
.manage__editor___yoe5w .manage__field___Dphsh.manage__notNullWarning____C0Aa input[type='radio'],
.manage__editor___yoe5w .manage__field___Dphsh.manage__notNullWarning____C0Aa textarea {
	box-shadow: 0 0 4px var(--orange);
	border-color: var(--orange);
}

.manage__editor___yoe5w .manage__field___Dphsh.manage__notUniqueWarning___cI8sP input {
	box-shadow: 0 0 4px var(--yellow);
	border-color: var(--yellow);
}

.manage__editor___yoe5w .manage__field___Dphsh.manage__notNullWarning____C0Aa label:after {
	color: var(--orange);
	margin-left: 2px;
	content: '*';
}

.manage__editor___yoe5w .manage__field___Dphsh.manage__notUniqueWarning___cI8sP label:after {
	color: var(--yellow);
	margin-left: 2px;
	content: '*';
}

.manage__editor___yoe5w .manage__field___Dphsh.manage__notNullWarning____C0Aa > .uiSingleSelectWrapper,
.manage__editor___yoe5w .manage__field___Dphsh.manage__notNullWarning____C0Aa > .uiCalendarWrapper,
.manage__editor___yoe5w .manage__field___Dphsh.manage__notNullWarning____C0Aa > .wxNumberInput {
	box-shadow: 0 0 4px var(--orange);
	border-color: var(--orange);
}

.manage__editor___yoe5w .manage__field___Dphsh.manage__notUniqueWarning___cI8sP > .uiSingleSelectWrapper,
.manage__editor___yoe5w .manage__field___Dphsh.manage__notUniqueWarning___cI8sP > .uiCalendarWrapper,
.manage__editor___yoe5w .manage__field___Dphsh.manage__notUniqueWarning___cI8sP > .wxNumberInput {
	box-shadow: 0 0 4px var(--yellow);
	border-color: var(--yellow);
}

.manage__editor___yoe5w .manage__field___Dphsh > .manage__wxNumberInput___xWjZQ {
	border-color: #ccc;
}

.manage__editor___yoe5w .manage__field___Dphsh > input[type='checkbox'] {
	margin-left: 0;
	flex: inherit;
}

.manage__editor___yoe5w .manage__field___Dphsh > textarea {
	height: 180px;
}

.manage__editor___yoe5w .manage__field___Dphsh > .uiSingleSelectWrapper > input,
.manage__editor___yoe5w .manage__field___Dphsh > .uiCalendarWrapper > input {
	width: 100%;
	box-sizing: border-box;
}

.manage__editor___yoe5w .manage__field___Dphsh > .manage__radioGroup___HTvCc > .manage__radioGroupItem___bUACA {
	margin: 4px 0;
}

.manage__editor___yoe5w .manage__field___Dphsh > .manage__radioGroup___HTvCc > .manage__radioGroupItem___bUACA > label {
	margin: 0 8px 0 0;
	flex: 0 0 auto;
}

.manage__editor___yoe5w .manage__photo___i5LOK {
	margin: 16px 0;
	text-align: center;
}

.manage__editor___yoe5w .manage__photo___i5LOK > img {
	cursor: pointer;
	height: auto;
	opacity: 1;
	width: 192px;
}

.manage__editor___yoe5w .manage__photo___i5LOK > img:hover {
	opacity: 0.9;
}

/* - - - - - - - - - - - - */

.manage__overflowContainer___Stpdz {
	width: 100%;
}

.manage__overflowContainer___Stpdz .manage__tableList___LPRa6 {
	width: 100%;
}

.manage__overflowContainer___Stpdz .manage__tableList___LPRa6 tbody tr > td {
	border-top: 1px dotted rgba(var(--theme-fg-parts), 0.5);
	border-top-color: rgba(
		var(--theme-fg-parts),
		0.5
	); /* Workaround for Safari bug -- https://codepen.io/finnhvman/post/theming-with-css-variables-in-rgba#browser-support-4 */
	text-align: center;
}

.manage__overflowContainer___Stpdz .manage__tableList___LPRa6 tbody tr > td.manage__type___qg3sA {
	width: 140px;
	vertical-align: top;
	padding-top: 4px;
}

.manage__overflowContainer___Stpdz .manage__tableList___LPRa6 tbody tr > td.manage__content___KMBC7 {
	padding: 4px;
}

.manage__overflowContainer___Stpdz .manage__tableList___LPRa6 tbody tr > td.manage__sorting___HdKwo {
	width: 60px;
}

.manage__overflowContainer___Stpdz .manage__tableList___LPRa6 tbody tr > td:last-child {
	width: 30px;
	vertical-align: top;
	padding-top: 4px;
}

.manage__overflowContainer___Stpdz .manage__tableList___LPRa6 tbody tr:first-child > td {
	border-top: 0;
}

.manage__overflowContainer___Stpdz .manage__tableList___LPRa6 tbody tr td > select {
	width: 100%;
}

.manage__overflowContainer___Stpdz .manage__tableList___LPRa6 tbody tr td > textarea {
	width: 100%;
	box-sizing: border-box;
	height: 60px;
}

.manage__overflowContainer___Stpdz .manage__tableList___LPRa6 tr.row.active {
}

.manage__overflowContainer___Stpdz .manage__tableList___LPRa6 tr.row.remove {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sBDgEoADUN3FIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAeElEQVRo3u3VsQnAMBADwN9/Ha+Twps42JAQQwaIyBVq3o1UmKujtTEzer9z3Z756nsll18DkstvAxLLz3sll18Dksu/Dkj7E5VcfhvAAQ5wgAMc4AAHOMABDnCAAxzgAAc4wAEOcIADHOAABzjAAQ5wgAMc+IUDJ+8f8KMbNnjeAAAAAElFTkSuQmCC);
}

.manage__multiFieldOptions___ryCbM {
	width: calc(100% - 140px);
	height: 240px;
	border: 1px solid var(--theme-offset-bg);
}

.manage__multiFieldOptions___ryCbM > div:last-child {
	padding-top: 2px;
}

.manage__strengthMeter___PzX2O {
	height: 12px;
	flex: 1 1 auto;
	border: solid 1px rgba(0, 0, 0, 0.1);
	border-radius: 3px;
}

.manage__strengthMeter___PzX2O > .manage__score___vnIXE {
	border-radius: 3px 0 0 3px;
	height: 100%;
}

.manage__strengthMeter___PzX2O > .manage__score-0___rOrKU {
	width: 20%;
	background-color: var(--orange);
}

.manage__strengthMeter___PzX2O > .manage__score-1___byYAY {
	width: 40%;
	background-color: var(--orange);
}

.manage__strengthMeter___PzX2O > .manage__score-2___dy7KE {
	width: 60%;
	background-color: var(--yellow);
}

.manage__strengthMeter___PzX2O > .manage__score-3___SeSHQ {
	width: 80%;
	background-color: var(--green);
}

.manage__strengthMeter___PzX2O > .manage__score-4___KdadB {
	border-radius: 3px;
	width: 100%;
	background-color: var(--green);
}

.manage__complexityError___LiNah {
	font-size: var(--small-text);
	color: var(--red);
	justify-content: flex-end;
}

.manage__suggestion___ZH_PX {
	flex: 1 0 auto;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by simon on 2017-11-24
 */

.AttributesField__AttributesField___mSwha {
	align-items: stretch !important;
	flex-direction: column !important;
}

.AttributesField__AttributesField___mSwha .AttributesField__item___iOaSe {
	align-items: flex-start;
	display: flex;
	flex-direction: row;
	margin: 4px 0;
}

.AttributesField__AttributesField___mSwha .AttributesField__item___iOaSe input {
	flex: 1;
}

.AttributesField__AttributesField___mSwha .AttributesField__item___iOaSe .AttributesField__details___yn13O {
	margin: 4px 4px 0 0;
	text-align: left;
	width: 140px;
	max-width: 140px;
}

.AttributesField__AttributesField___mSwha .AttributesField__item___iOaSe label {
	color: #333;
	margin: 0;
	padding: 0;
}

.AttributesField__AttributesField___mSwha .AttributesField__item___iOaSe .AttributesField__description____rI0b {
	color: #999;
	font-style: italic;
	margin: 2px 0;
}

.AttributesField__AttributesField___mSwha .AttributesField__numberInput___oKiHm input {
	min-width: 64px;
}

.AttributesField__AttributesField___mSwha .AttributesField__item___iOaSe input[type='checkbox'] {
	margin-left: 0;
	flex: inherit;
}

.MarksbookPopup__tabSet___LUlPj {
	height: calc(100vh - 95px - 32px);
}

.MarksbookPopup__tabSet___LUlPj .filterBox {
	min-width: 0;
}

.MarksbookPopup__container___kaRPW {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: auto;
}

.MarksbookPopup__MarksbookPopup___ASQR3 {
	--gap-size: 32px;
	display: grid;
	grid-template-columns: calc(50% - (var(--gap-size) / 2)) calc(
			50% - (var(--gap-size) / 2)
		);
	grid-gap: var(--gap-size);
	padding: var(--gap-size);
	align-items: start;
}

.MarksbookPopup__MarksbookPopup___ASQR3 > div {
	margin: 0;
}

@media (max-width: 1400px) {
	.MarksbookPopup__MarksbookPopup___ASQR3 {
		grid-template-columns: 100%;
	}
}

@media (max-width: 1200px) {
	.MarksbookPopup__MarksbookPopup___ASQR3 {
		--gap-size: 16px;
	}
}

@media (max-width: 1000px) {
	.MarksbookPopup__MarksbookPopup___ASQR3 {
		--gap-size: 8px;
	}
}

.common__list___oKG0M {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.common__list___oKG0M > .common__row___D2tQ_ {
	flex: 1;
	margin: 4px;
	display: flex;
}

.common__list___oKG0M > .common__row___D2tQ_ > .common__spacer___SH_K1 {
	padding: 8px;
}

.common__list___oKG0M > .common__row___D2tQ_ > .common__smallSpacer___VQol6 {
	padding: 0 8px;
}

.common__list___oKG0M > .common__row___D2tQ_ .common__colour___vXi4H {
	padding: 4px 8px;
	border-radius: 2px;
	align-items: center;
	border: solid 1px var(--theme-offset-bg);
	cursor: pointer;
	background: rgba(var(--theme-bg-parts), 0.5);
	color: rgb(var(--theme-fg-parts));
	display: flex;
}

.common__list___oKG0M > .common__row___D2tQ_ .common__colour___vXi4H:disabled {
	opacity: 0.5;
	cursor: default;
}

.common__typeNumberInput___O94lL {
	margin-left: 16px;
}

.common__reportable___xCETn {
	flex: initial;
}

.CourseType__cutoffsBar____V5o3 {
	flex: 1;
	margin: 0 8px;
}

.CourseType__templateButton___iviZV {
	flex: 0;
	margin: 4px 0;
	font-size: var(--small-text);
}

.CourseType__templateButton___iviZV > button {
	padding: 8px 24px 8px 12px;
}

.CourseType__cutoffLabel___M1Ufz {
	flex: 1;
	margin-right: 8px;
}

.CourseType__rangeUpper___d0nRF {
	background: linear-gradient(to right, transparent, var(--theme-offset-bg));
	border-radius: 4px;
	width: 5em;
	text-align: right;
	margin: 0 8px;
	padding: 6px 0;
	font-size: var(--small-text);
	opacity: 0.5;
}

.CourseType__rangeUpper___d0nRF > span {
	font-weight: bold;
	padding: 0 4px;
}

.CourseType__absGrade___IZtWR {
	min-width: 64px;
	flex: 0;
}

.CourseType__absGrade___IZtWR > button {
	padding: 8px !important; /* Necessary to override the dropdown button padding */
}

li.CourseType__disabled___CFXOh {
	cursor: default !important;
}

li.CourseType__disabled___CFXOh > div {
	opacity: 0.5;
}

.CustomColumn__row___WHRqg {
	margin: 8px;
}

.SemesterSettings__row___APdXy {
    margin: 8px;
}
/*
	* Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
	*
	* Created by bernadette on 2017-07-20
	*/

.ReleaseAlert__ReleaseAlert___m8cVK {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 8px 4px 8px 12px;
	width: 380px;
}

.ReleaseAlert__ReleaseAlertSlidePane___lhp7t .pane.narrow {
	display: flex;
	flex-direction: column;
	height: 600px;
	min-height: 100px;
}

.ReleaseAlert__ReleaseAlertSlidePane___lhp7t .content.narrow {
	margin: 0;
	min-height: 80px;
	height: 100%;
	overflow-x: auto;
}

.ReleaseAlert__ReleaseAlert___m8cVK .ReleaseAlert__alertList___qLbCy {
	flex-direction: column;
	display: flex;
	height: 100%;
}

.ReleaseAlert__ReleaseAlert___m8cVK .ReleaseAlert__brief___xk3iW {
}

.ReleaseAlert__ReleaseAlert___m8cVK .ReleaseAlert__alerts___cmWpF {
	padding-right: 4px;
}

.ReleaseAlert__ReleaseAlert___m8cVK .ReleaseAlert__alertContainer___mxCn8 {
	display: flex;
	padding-top: 18px;
}

.ReleaseAlert__ReleaseAlert___m8cVK .ReleaseAlert__image___ws1FP {
	width: 64px;
	height: 64px;
}

.ReleaseAlert__ReleaseAlert___m8cVK .ReleaseAlert__image___ws1FP {
	background: none;
	border: none;
	box-shadow: none;
	padding: 2px 0 0 0;
	background-size: 64px 64px;
}

.ReleaseAlert__ReleaseAlert___m8cVK .ReleaseAlert__content___LmBI4 {
	padding-left: 14px;
	width: 300px;
}

.ReleaseAlert__ReleaseAlert___m8cVK .ReleaseAlert__title___vIl60 {
	font-size: var(--large-text);
	color: #3465a4;
	background: none;
	border: none;
	box-shadow: none;
	padding: 0;
}

.ReleaseAlert__ReleaseAlert___m8cVK .ReleaseAlert__description___IHTQX {
	color: #666;
}

.ReleaseAlert__ReleaseAlert___m8cVK .ReleaseAlert__descriptionlink___cz8Bi {
	color: #3465a4;
	background: none;
	border: none;
	box-shadow: none;
	padding: 0;
}

.Pastoral__container___zSPPr {
	overflow: hidden;
	height: 100%;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.Pastoral__container___zSPPr > .Pastoral__noStudent___fvXaE {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0.3;
	font-style: italic;
}

.Pastoral__main___od1Yl {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	flex: 1;
	height: 100%;
}

.Pastoral__main___od1Yl > .Pastoral__enter___vWzVn {
	text-align: center;
	font-style: italic;
	padding: 32px;
}

.Pastoral__main___od1Yl > .Pastoral__category___grl5J {
	padding: 0 8px;
	display: flex;
	flex-direction: column;
	z-index: 2;
}

.Pastoral__main___od1Yl > .Pastoral__category___grl5J .Pastoral__embiggen___OwV0t {
	margin: 0 0 0 4px;
	align-self: stretch;
	padding: 4px 8px;
	height: 24px;
}

.Pastoral__main___od1Yl > .Pastoral__category___grl5J > .Pastoral__description___SiKNb {
	margin-bottom: 4px;
	opacity: 0.5;
}

.Pastoral__main___od1Yl > .Pastoral__category___grl5J > .Pastoral__description___SiKNb:empty {
	display: none;
}

.Pastoral__main___od1Yl > .Pastoral__pastoralContent___nUblv {
	flex: 1;
	overflow: auto;
}

.Pastoral__main___od1Yl > .Pastoral__pastoralContent___nUblv > .Pastoral__section___scKwx > .Pastoral__title___kEvmf {
	padding: 8px;
	position: sticky;
	top: 0;
	z-index: 1;
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
	font-size: var(--small-text);
	font-weight: bold;
	text-transform: uppercase;
}

.Pastoral__main___od1Yl > .Pastoral__pastoralContent___nUblv > .Pastoral__section___scKwx > .Pastoral__clickable___tdeJl {
	cursor: pointer;
}

.Pastoral__main___od1Yl > .Pastoral__pastoralContent___nUblv > .Pastoral__section___scKwx > .Pastoral__content___N027c {
	padding: 8px;
	display: flex;
	flex-direction: column;
}

.Pastoral__main___od1Yl > .Pastoral__pastoralContent___nUblv > .Pastoral__section___scKwx > .Pastoral__content___N027c > textarea {
	padding: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	background: transparent;
	border-radius: 4px;
	height: 10em;
	resize: vertical;
	border: none;
	color: rgb(var(--theme-fg-parts));
	margin-bottom: 4px;
}

.Pastoral__main___od1Yl > .Pastoral__pastoralContent___nUblv > .Pastoral__section___scKwx > .Pastoral__content___N027c > textarea::-moz-placeholder {
	color: rgba(var(--theme-fg-parts), 0.5);
}

.Pastoral__main___od1Yl > .Pastoral__pastoralContent___nUblv > .Pastoral__section___scKwx > .Pastoral__content___N027c > textarea::placeholder {
	color: rgba(var(--theme-fg-parts), 0.5);
}

.Pastoral__main___od1Yl > .Pastoral__pastoralContent___nUblv > .Pastoral__section___scKwx > .Pastoral__content___N027c .Pastoral__template___rI_8H {
	font-style: italic;
	background-color: var(--theme-offset-bg);
	border-radius: 0 0 4px 4px;
	border-top: none;
	width: calc(100% - 10px);
	cursor: text;
}

.Pastoral__main___od1Yl > .Pastoral__pastoralContent___nUblv > .Pastoral__section___scKwx > .Pastoral__content___N027c > .Pastoral__smallTitle___FBQWu {
	margin-bottom: 4px;
	border-bottom: 1px solid rgba(var(--theme-fg-parts), 0.1);
	border-bottom-color: rgba(
		var(--theme-fg-parts),
		0.1
	); /* Workaround for Safari bug -- https://codepen.io/finnhvman/post/theming-with-css-variables-in-rgba#browser-support-4 */
}

.Pastoral__main___od1Yl > .Pastoral__pastoralContent___nUblv > .Pastoral__section___scKwx > .Pastoral__content___N027c > .Pastoral__direqtIndividuals___fMBFo {
	margin: 4px 0;
	cursor: pointer;
}

.Pastoral__main___od1Yl > .Pastoral__pastoralContent___nUblv .uiFile.inline {
	width: 80px !important;
}

.Pastoral__numberInput___HWpA_ input:hover {
	border: none;
}

.Pastoral__main___od1Yl > .Pastoral__saveButtons___IT9l9 {
	border-top: 1px solid var(--theme-offset-bg);
	padding: 8px;
	text-align: center;
	display: flex;
	justify-content: space-around;
	max-width: 320px;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
}

.Pastoral__main___od1Yl > .Pastoral__saveButtons___IT9l9 > button {
	margin: 0 4px;
	padding: 8px 12px;
	justify-content: center;
	font-size: var(--small-text);
}

.Pastoral__main___od1Yl > .Pastoral__saveButtons___IT9l9 > button:first-child {
	flex: 1;
}

.Pastoral__selector___JTXo_ {
	display: flex;
	align-items: center;
}

.Pastoral__selector___JTXo_ > span,
.Pastoral__interstitial___sQ7GG {
	text-transform: uppercase;
	font-size: var(--small-text);
	opacity: 0.5;
	font-weight: bold;
	min-width: 6em;
}

.Pastoral__interstitial___sQ7GG {
	margin: 8px 0;
}

.Pastoral__selector___JTXo_ > .Pastoral__dates___RrKk5 {
	flex: 1;
}

.Pastoral__selector___JTXo_ > div:not(.Pastoral__dates___RrKk5) {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.Pastoral__selector___JTXo_ > .Pastoral__pointsLabel___ombLZ {
	font-size: 100%;
	padding: 6px;
}

.Pastoral__selector___JTXo_ > .Pastoral__shortLabel___DrEWL {
	width: auto;
	margin-right: 6px;
}

.Pastoral__selector___JTXo_ > .Pastoral__numberInput___HWpA_ {
	margin: 0 64px 0 32px;
}

.Pastoral__thinPanelList___ZB_K4 > ol > li > div {
	max-width:180px;
}

.Pastoral__checkbox___DAzbd {
	display: flex;
	align-items: center;
	margin-bottom: 4px;
	padding-left: 0;
}

.Pastoral__checkbox___DAzbd > input {
	margin-left: 0;
}

.Pastoral__checkbox___DAzbd > span {
	font-size: 90%;
	padding-left: 4px;
}

.Pastoral__checkbox___DAzbd + .Pastoral__menu___I1cje {
	margin-left: 8px;
}

.Pastoral__buttonChecklist___FC_Qw {
	flex: 1;
}

.Pastoral__popout___lVmf4 {
}

.Pastoral__popout___lVmf4 .content {
	margin: 0 !important;
	height: 85vh !important;
}

.Pastoral__anyoneSelect___J53v8 {
	height: 18em;
}

.Pastoral__anyoneSelect___J53v8 .uiAnyoneSelectWrapper {
	flex: 1;
}

.Pastoral__anyoneSelect___J53v8 .listWrapper {
	height: 10em;
	flex: auto;
}

.Pastoral__saveSingle___ueVdm {
	display: flex;
	flex-direction: column;
	flex: 1;
	height: 100%;
}

.Pastoral__saveSingle___ueVdm > .Pastoral__saveSingleContainer____2SG_ {
	padding: 8px 4px 4px;
	background-color: var(--theme-offset-bg);
}

.Pastoral__saveMulti___XsK1a {
	display: flex;
	flex: 1;
	height: 100%;
	background-color: var(--theme-offset-bg);
}

.Pastoral__saveMulti___XsK1a > .uiAnyoneSelectWrapper {
	display: flex;
}

.Pastoral__studentAnyoneSelect___xO57a {
	flex: 1;
}

.Pastoral__panel___wnKgV {
	width: calc(320px - 32px - 16px);
}

.Pastoral__spacer___qO5hf {
	flex: 1;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-06-17
 */

.TermAliasItem__TermAliasItem___rD4c2 {
	display: flex;
	padding: 4px;
	border-bottom: 1px solid #ddd;
	align-items: center;
	width: 100%;
}

.TermAliasItem__TermAliasItem___rD4c2 > .TermAliasItem__code___kV_AV,
.TermAliasItem__TermAliasItem___rD4c2 > input {
	flex: 1;
}

.TermAliasItem__TermAliasItem___rD4c2 > input {
	cursor: text;
}

.TermAliasItem__TermAliasItem___rD4c2 > button {
	margin-left: 4px;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-06-12
 */

.TermAlias__TermAlias___Ogbxk {
	overflow: hidden;
	display: flex;
	position: relative;
	height: 100%;
	color: rgb(var(--theme-fg-parts));
	background: var(--nav-level-three);
}

.TermAlias__TermAlias___Ogbxk > .filterBox {
	min-width: 0;
}

.TermAlias__TermAlias___Ogbxk > .TermAlias__container___hNn1m {
	flex: 1;
	height: 100%;
	align-content: baseline;
	align-items: baseline;
}

.TermAlias__TermAlias___Ogbxk > .TermAlias__container___hNn1m > .TermAlias__add___bGfwz {
	padding: 4px;
	text-align: center;
}

.TermAlias__TermAlias___Ogbxk > .TermAlias__container___hNn1m > .TermAlias__start___KdymS {
	padding: 4px;
	text-align: center;
	color: #aaa;
	margin-top: 64px;
	font-style: italic;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by simon on 2017-09-27
 */

.GraduationTracker__GraduationTracker___A4mYc {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.GraduationTracker__GraduationTracker___A4mYc > .GraduationTracker__container___fVyNl {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	background: var(--nav-level-three);
	padding: 4px;
}

.GraduationTracker__GraduationTracker___A4mYc .GraduationTracker__body___O3YvZ {
	display: flex;
	flex: 1;
	flex-direction: row;
	overflow: hidden;
	min-width: 806px;
}

.GraduationTracker__GraduationTracker___A4mYc .GraduationTracker__message___Xcbmz {
	background: rgba(var(--theme-bg-parts), 0.8);
	padding: 8px;
	border-radius: 2px;
	border-left: 8px solid var(--yellow);
	align-self: flex-start;
	margin: 16px;
	font-weight: bold;
}

.GraduationTracker__GraduationTracker___A4mYc .GraduationTracker__dashboard___EqbPE {
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	align-items: flex-start;
	align-content: flex-start;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 8px 0 0 8px;
}

.GraduationTracker__GraduationTracker___A4mYc .GraduationTracker__dashboard___EqbPE .GraduationTracker__disclaimer___xs5ef {
	background: rgba(var(--theme-bg-parts), 0.8);
	padding: 8px;
	border-radius: 2px;
	border-left: 8px solid var(--yellow);
	font-weight: bold;
}

.GraduationTracker__GraduationTracker___A4mYc .GraduationTracker__dashboard___EqbPE .GraduationTracker__attachment___g70LS {
	padding: 0 16px;
	text-align: center;
	text-transform: uppercase;
	align-self: stretch;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1;
	font-weight: bold;
	font-size: 80%;
}

.GraduationTracker__GraduationTracker___A4mYc .GraduationTracker__loadingSpinner___LsRa6 {
	margin: 64px auto 0;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by simon on 2017-09-28
 */

.Filters__Filters___Czl_9 {
	max-width: none;
}

.Filters__Filters___Czl_9 .Filters__field___sKBJa {
	align-items: center;
	display: flex;
	flex-direction: row;
	margin: 0 0 0 32px;
}

.Filters__Filters___Czl_9 .Filters__field___sKBJa label {
	margin: 0 8px 0 0;
	font-size: 80%;
	text-transform: uppercase;
	font-weight: bold;
}

.Filters__Filters___Czl_9 .Filters__field___sKBJa input,
.Filters__Filters___Czl_9 .Filters__field___sKBJa button {
}

.Filters__Filters___Czl_9 .Filters__field___sKBJa button {
	text-align: center;
}

.Filters__Filters___Czl_9 .Filters__field___sKBJa button > * {
	vertical-align: middle;
}

.Filters__Filters___Czl_9 .Filters__field___sKBJa button svg {
	margin: 0 0 0 8px;
}

.Filters__Filters___Czl_9 .Filters__dropdown___jhIAf {
	position: absolute;
	top: 32px;
	z-index: 10;
	padding: 4px;
	box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
	border: solid 1px #888;
	background: #eee;
}

.Filters__Filters___Czl_9 .Filters__dropdown___jhIAf > div {
	height: 300px;
}

.Filters__Filters___Czl_9 .Filters__load___wYk4N {
	background: var(--blue);
	border-radius: 100%;
	margin: 0 0 0 32px;
	width: 32px;
	height: 32px;
	min-width: 32px; /* Prevent squishing on small screens */
	padding: 0;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.Filters__Filters___Czl_9 .anyoneSelect {
	min-height: 24px;
}

.Filters__Filters___Czl_9 .anyoneSelect > .selector > input,
.Filters__Filters___Czl_9 .anyoneSelect > .selector > button {
	margin: 0 4px 0 0;
}

.Filters__Filters___Czl_9 .uiAnyoneSelectWrapper .userCount {
	display: none;
}

.Filters__Filters___Czl_9 .uiAnyoneSelectWrapper .Filters__field___sKBJa {
	margin: 0;
}

.Filters__Filters___Czl_9 .anyoneSelect > .selector {
	flex: 1;
}

.Filters__Filters___Czl_9 .anyoneSelect > .selector.staff,
.Filters__Filters___Czl_9 .anyoneSelect > .selector.contacts,
.Filters__Filters___Czl_9 .anyoneSelect > .selector.tutors,
.Filters__Filters___Czl_9 .anyoneSelect > .selector.studentGroups,
.Filters__Filters___Czl_9 .anyoneSelect > .listWrapper {
	display: none;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by simon on 2017-09-28
 */

.StudentListSelector__StudentListSelector___mN8LM {
	display: flex;
	flex-direction: column;
	position: relative;
	transition: width 0.2s ease-out;
	width: 80px;
	min-width: 0;
	align-items: stretch;
}

.StudentListSelector__StudentListSelector___mN8LM.StudentListSelector__expanded___mDWYI {
	width: 320px;
}

.StudentListSelector__StudentListSelector___mN8LM .StudentListSelector__header___IH_e5 {
	overflow: hidden;
	font-weight: bold;
	font-size: 80%;
	text-transform: uppercase;
}

.StudentListSelector__StudentListSelector___mN8LM .StudentListSelector__countLoading___MwAVL {
	right: 16px;
	position: absolute;
}

.StudentListSelector__StudentListSelector___mN8LM .StudentListSelector__countLoading___MwAVL::after {
	margin: 0 auto;
}

.StudentListSelector__StudentListSelector___mN8LM .StudentListSelector__count___nWn_S {
	position: relative;
}

.StudentListSelector__StudentListSelector___mN8LM .StudentListSelector__graph___BXlPw {
	display: none;
	margin: 8px 0 0;
}

.StudentListSelector__StudentListSelector___mN8LM.StudentListSelector__expanded___mDWYI .StudentListSelector__graph___BXlPw {
	display: block;
}

.StudentListSelector__StudentListSelector___mN8LM .StudentListSelector__search___wFb5m {
	display: none;
	align-items: center;
}

.StudentListSelector__StudentListSelector___mN8LM.StudentListSelector__expanded___mDWYI .StudentListSelector__search___wFb5m {
	display: flex;
}

.StudentListSelector__StudentListSelector___mN8LM .StudentListSelector__search___wFb5m label {
	margin: 0 8px 0 0;
}

.StudentListSelector__StudentListSelector___mN8LM .StudentListSelector__search___wFb5m input {
	flex: 1;
	padding: 4px 4px 4px 24px;
}

.StudentListSelector__StudentListSelector___mN8LM .StudentListSelector__loading___tiAQA {
	margin: 0;
	padding: 0;
	width: 24px;
}

.StudentListSelector__StudentListSelector___mN8LM .StudentListSelector__loading___tiAQA::after {
	margin: 0 auto;
}

.StudentListSelector__StudentListSelector___mN8LM .StudentListSelector__toggle___cA5qp {
	position: absolute;
	background-color: var(--theme-button-bg);
	right: -15px;
	top: 8px;
	border-radius: 32px;
	width: 32px;
	height: 32px;
	padding: 0;
	z-index: 5;
}

.StudentListSelector__StudentListSelector___mN8LM .StudentListSelector__toggle___cA5qp svg {
	margin: auto;
	transition: transform 0.2s 0.4s;
	transform: rotate(-180deg);
}

.StudentListSelector__StudentListSelector___mN8LM.StudentListSelector__expanded___mDWYI .StudentListSelector__toggle___cA5qp svg {
	transform: none;
}

.StudentListSelector__StudentListSelector___mN8LM ul {
	flex: 1;
	overflow-x: hidden;
	overflow-y: auto;
	list-style: none;
	padding: 0;
	margin: 0;
}

.StudentListSelector__StudentListSelector___mN8LM ul li {
	border-bottom: 1px solid var(--theme-offset-bg);
}

.StudentListSelector__StudentListSelector___mN8LM .StudentListSelector__functions___wtWOm {
	display: none;
	padding: 8px 0 0;
	border-top: 1px solid var(--theme-offset-bg);
}

.StudentListSelector__StudentListSelector___mN8LM.StudentListSelector__expanded___mDWYI .StudentListSelector__functions___wtWOm {
	align-items: center;
	display: flex;
	justify-content: center;
}

.StudentListSelector__StudentListSelector___mN8LM.StudentListSelector__expanded___mDWYI .StudentListSelector__functions___wtWOm > button {
	width: 120px;
}

.StudentListSelector__StudentListSelector___mN8LM.StudentListSelector__expanded___mDWYI .StudentListSelector__functions___wtWOm > button > span {
	flex-grow: 1;
}

.StudentListSelector__StudentListItem___aVt4a {
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	text-align: center;
}

.StudentListSelector__StudentListItem___aVt4a:hover {
	background: var(--theme-offset-bg);
}

.StudentListSelector__StudentListSelector___mN8LM.StudentListSelector__expanded___mDWYI .StudentListSelector__StudentListItem___aVt4a {
	flex-direction: row;
	text-align: left;
}

.StudentListSelector__StudentListItem___aVt4a.StudentListSelector__selected___U5Gwi,
.StudentListSelector__StudentListItem___aVt4a.StudentListSelector__selected___U5Gwi > button {
	color: rgb(var(--theme-sel-fg-parts));
	background-color: rgb(var(--theme-sel-bg-parts));
}

.StudentListSelector__StudentListSelector___mN8LM .StudentListSelector__StudentListItem___aVt4a > img {
	margin: 4px;
	border-radius: 100%;
	border: 2px solid #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.StudentListSelector__StudentListItem___aVt4a .StudentListSelector__status___bZdN7 {
	background-color: rgb(var(--theme-bg-parts));
	color: rgb(var(--theme-fg-parts));
	display: none;
	text-transform: uppercase;
	align-self: stretch;
	align-items: center;
	justify-content: center;
	width: 24px;
	font-size: var(--small-text);
	font-weight: bold;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.StudentListSelector__StudentListItem___aVt4a .StudentListSelector__status___bZdN7 span {
	transform: rotate(-90deg);
}

.StudentListSelector__StudentListSelector___mN8LM.StudentListSelector__expanded___mDWYI .StudentListSelector__StudentListItem___aVt4a .StudentListSelector__status___bZdN7 {
	display: flex;
}

.StudentListSelector__StudentListSelector___mN8LM.StudentListSelector__expanded___mDWYI .StudentListSelector__StudentListItem___aVt4a .StudentListSelector__details___kLtXV {
	flex: 1;
}

.StudentListSelector__StudentListItem___aVt4a .StudentListSelector__name___p6P1Y {
	font-size: var(--small-text);
}

.StudentListSelector__StudentListSelector___mN8LM.StudentListSelector__expanded___mDWYI .StudentListSelector__StudentListItem___aVt4a .StudentListSelector__name___p6P1Y {
	font-weight: bold;
}

.StudentListSelector__StudentListItem___aVt4a .StudentListSelector__demographics___iTPzB {
	opacity: 0.3;
	display: none;
	text-transform: uppercase;
	font-size: var(--small-text);
	font-weight: bold;
}

.StudentListSelector__StudentListSelector___mN8LM.StudentListSelector__expanded___mDWYI .StudentListSelector__StudentListItem___aVt4a .StudentListSelector__demographics___iTPzB {
	display: block;
}

.StudentListSelector__StudentListItem___aVt4a .StudentListSelector__demographics___iTPzB span {
	display: inline-block;
	margin: 0 4px 0 0;
}

.StudentListSelector__StudentListItem___aVt4a button {
	display: none;
	padding: 8px;
	margin: 0 4px 0 0;
	border-radius: 100%;
}

.StudentListSelector__StudentListItem___aVt4a button svg {
	margin: 0;
}

.StudentListSelector__StudentListSelector___mN8LM.StudentListSelector__expanded___mDWYI .StudentListSelector__StudentListItem___aVt4a button {
	display: flex;
	align-items: center;
	justify-content: center;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by simon on 2017-09-29
 */

.GraduationGraph__GraphItem___Zx_Lv {
	align-items: center;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	margin: 0 0 4px;
}

.GraduationGraph__GraphItem___Zx_Lv:not(.GraduationGraph__enabled___LSOuw) {
	opacity: 0.3;
}

.GraduationGraph__GraphItem___Zx_Lv:hover:not(.GraduationGraph__enabled___LSOuw) {
	opacity: 1;
}

.GraduationGraph__GraphItem___Zx_Lv .GraduationGraph__code___aQemj {
	width: 4em;
	overflow: hidden;
	text-overflow: ellipsis;
}

.GraduationGraph__GraphItem___Zx_Lv .GraduationGraph__barSpace___MSLQ8 {
	flex: 1;
	border-radius: 2px;
	margin: 0 8px 0 0;
	height: 16px;
	position: relative;
}

.GraduationGraph__GraphItem___Zx_Lv .GraduationGraph__barSpace___MSLQ8::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 1px dashed var(--theme-offset-bg);
}

.GraduationGraph__GraphItem___Zx_Lv .GraduationGraph__barSpace___MSLQ8 .GraduationGraph__bar___oiWni {
	border-radius: 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

.GraduationGraph__GraphItem___Zx_Lv:hover .GraduationGraph__barSpace___MSLQ8 {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.GraduationGraph__GraphItem___Zx_Lv .GraduationGraph__count___lo8RD {
	text-align: left;
	width: 2em;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by simon on 2017-10-03
 */

.StudentSummary__StudentSummary___nQelQ {
	align-items: center;
	display: flex;
	flex-direction: row;
	min-width: 90%;
	width: 100%;
	margin: 16px 8px 24px 32px;
	color: #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	border-radius: 4px;
}

.StudentSummary__StudentSummary___nQelQ .StudentSummary__avatar___k0uvc {
	margin: -16px 16px -16px -32px;
}

.StudentSummary__StudentSummary___nQelQ .StudentSummary__status___p8zpv {
	border-radius: 4px;
	display: block;
	padding: 0 16px;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.StudentSummary__StudentSummary___nQelQ .StudentSummary__details___GqvNT {
	flex: 1;
	display: flex;
	align-items: center;
}

.StudentSummary__StudentSummary___nQelQ .StudentSummary__name___mNnRB {
	font-size: var(--huge-text);
	font-weight: bold;
	flex: 1;
}

.StudentSummary__StudentSummary___nQelQ .StudentSummary__demographics___kTNNO {
	display: block;
	margin: 4px 0;
	text-transform: uppercase;
	opacity: 0.5;
}

.StudentSummary__StudentSummary___nQelQ .StudentSummary__demographics___kTNNO span {
	display: inline-block;
	margin: 0 4px 0 0;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by simon on 2017-09-28
 */

.TrackerDashlet__TrackerDashlet___OGn5j {
	box-sizing: border-box;
	flex: 1;
	min-width: 400px;
	max-width: 100%;
	flex-basis: calc(50% - 32px);
	margin: 0 8px 8px 0;
	display: block;
}

.TrackerDashlet__TrackerDashlet___OGn5j .TrackerDashlet__header___rZ0em {
	align-items: center;
	display: flex;
	flex-direction: row;
	background: var(--theme-offset-bg);
	overflow: hidden;
}

.TrackerDashlet__TrackerDashlet___OGn5j .TrackerDashlet__header___rZ0em h3 {
	font-size: 80%;
	font-weight: bold;
	margin: 0;
	text-transform: uppercase;
	padding: 8px 8px;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by simon on 2017-10-03
 */

.TrackerNotes__TrackerNotes___ouZjs {
	align-items: stretch;
	display: flex;
	flex-direction: column;
}

.TrackerNotes__TrackerNotes___ouZjs .TrackerNotes__empty___ZmPUZ {
	padding: 8px;
}

.TrackerNotes__TrackerNotes___ouZjs .TrackerNotes__item___iNhWc {
	border-bottom: 1px solid var(--theme-offset-bg);
}

.TrackerNotes__TrackerNotes___ouZjs .TrackerNotes__item___iNhWc .TrackerNotes__type___uyhJD {
	font-weight: bold;
	display: inline-block;
}

.TrackerNotes__TrackerNotes___ouZjs .TrackerNotes__item___iNhWc .TrackerNotes__subcategory___TAC54 {
	padding: 8px;
	display: inline-block;
	background: #999;
	color: #fff;
}

.TrackerNotes__TrackerNotes___ouZjs .TrackerNotes__item___iNhWc .TrackerNotes__details___i5SC8 {
	margin: 0 8px;
}

.TrackerNotes__TrackerNotes___ouZjs .TrackerNotes__item___iNhWc .TrackerNotes__from___KXMys,
.TrackerNotes__TrackerNotes___ouZjs .TrackerNotes__item___iNhWc .TrackerNotes__until___uVNUO,
.TrackerNotes__TrackerNotes___ouZjs .TrackerNotes__item___iNhWc .TrackerNotes__staff___mJoqm,
.TrackerNotes__TrackerNotes___ouZjs .TrackerNotes__item___iNhWc .TrackerNotes__staffVia___uQlng {
	margin: 0 8px 8px;
	display: inline-block;
	opacity: 0.5;
	font-size: 80%;
	font-weight: bold;
	text-transform: uppercase;
}

.TrackerNotes__TrackerNotes___ouZjs .TrackerNotes__item___iNhWc button {
	margin: 0 16px;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by simon on 2017-10-03
 */

.RuleStatusPanel__RuleStatusPanel___RCKEX {
	align-items: stretch;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS {
}

.RuleStatusPanel__RuleStatusItem___Y7AyS:hover {
	background: var(--theme-offset-bg);
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__header___K5fTJ {
	align-items: center;
	border-bottom: 1px solid var(--theme-offset-bg);
	display: flex;
	flex-direction: row;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS:last-of-type .RuleStatusPanel__header___K5fTJ {
	border-bottom: none;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS.RuleStatusPanel__expanded___Lf9ym .RuleStatusPanel__header___K5fTJ {
	border-bottom: none;
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__result___BQw5h {
	margin: 0 8px;
	width: 80px;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__result___BQw5h .RuleStatusPanel__value___QiMr5 {
	font-weight: bold;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__result___BQw5h .RuleStatusPanel__interstitial___ES9EJ {
	opacity: 0.5;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__result___BQw5h .RuleStatusPanel__requirement___uEFfY {
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__name___igZwL {
	flex: 1;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__status___Ine5d {
	color: #fff;
	font-size: var(--small-text);
	font-weight: bold;
	padding: 4px 8px;
	text-transform: uppercase;
	width: 96px;
	display: flex;
	align-items: center;
	align-self: stretch;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	margin: 4px;
	border-radius: 2px;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__status___Ine5d > span {
	flex: 1;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__subjects___zQA_9 {
	display: block;
	max-height: 0;
	transition: max-height 0.2s;
	padding: 0;
	background: var(--theme-offset-bg);
	background-image: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.1),
		2px,
		transparent 8px
	);
	overflow: auto;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS.RuleStatusPanel__expanded___Lf9ym .RuleStatusPanel__subjects___zQA_9 {
	max-height: 256px;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__subjects___zQA_9 table {
	width: 100%;
	min-width: 100%;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__subjects___zQA_9 table > tbody {
	width: 100%;
	min-width: 100%;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__subjects___zQA_9 td {
	align-items: center;
	padding: 4px 8px;
	border-bottom: 1px solid var(--theme-offset-bg);
	color: rgba(var(--theme-fg-parts), 0.5);
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__subjects___zQA_9 .RuleStatusPanel__linkable___pSN4j:hover td {
	cursor: pointer;
	opacity: 0.7;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__subjects___zQA_9 td > a {
	background: none;
	padding: 0;
	margin: 0;
	border: none;
	box-shadow: none;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__subjects___zQA_9 td span:first-child {
	flex: 1;
	font-weight: bold;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__subjects___zQA_9 td span:not(:first-child) {
	min-width: 64px;
	text-align: center;
}

.RuleStatusPanel__RuleStatusItem___Y7AyS .RuleStatusPanel__subjects___zQA_9 .RuleStatusPanel__empty___p6_SB {
	margin: 8px;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *
 * Created by simon on 2017-11-08
 */

.AttendanceGraph__AttendanceGraph___FibUk {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 16px 0;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by simon on 2016-12-16
 */

.ProgrammeConfiguration__ProgrammeConfiguration___ss1N_ > .ProgrammeConfiguration__title___DqPpU,
.ProgrammeConfiguration__ProgrammeConfiguration___ss1N_ > .ProgrammeConfiguration__field___vZY4O {
	margin: 16px 8px;
	display: flex;
	flex-direction: column;
}

.ProgrammeConfiguration__ProgrammeConfiguration___ss1N_ > .ProgrammeConfiguration__title___DqPpU > label,
.ProgrammeConfiguration__ProgrammeConfiguration___ss1N_ > .ProgrammeConfiguration__field___vZY4O > label {
	padding: 0;
	text-transform: uppercase;
	font-size: var(--small-text);
	font-weight: bold;
	opacity: 0.5;
}

.ProgrammeConfiguration__ProgrammeConfiguration___ss1N_ > .ProgrammeConfiguration__field___vZY4O input[type='text'],
.ProgrammeConfiguration__ProgrammeConfiguration___ss1N_ > .ProgrammeConfiguration__field___vZY4O > .uiSingleSelectWrapper input {
	box-sizing: border-box;
	width: 100%;
}

.ProgrammeConfiguration__ProgrammeConfiguration___ss1N_ > .ProgrammeConfiguration__field___vZY4O > span {
	display: block;
	padding: 4px;
}

.ProgrammeConfiguration__ProgrammeConfiguration___ss1N_ > .ProgrammeConfiguration__field___vZY4O > ul {
	padding: 0;
	list-style: none;
}

.ProgrammeConfiguration__ProgrammeConfiguration___ss1N_ > .ProgrammeConfiguration__field___vZY4O > ul > li {
	margin: 8px 0;
	display: flex;
}

.ProgrammeConfiguration__ProgrammeConfiguration___ss1N_ > .ProgrammeConfiguration__field___vZY4O > ul > li > input {
	margin: 0;
}

.ProgrammeConfiguration__ProgrammeConfiguration___ss1N_ > .ProgrammeConfiguration__field___vZY4O > ul > li > input + label {
	font-size: var(--small-text);
	font-weight: bold;
	text-transform: uppercase;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by simon on 2016-12-16
 */

.ProgrammeCoverActions__ProgrammeCoverActions___tkqXd {
	margin: 16px 8px;
	display: flex;
	flex-direction: column;
}

.ProgrammeCoverActions__ProgrammeCoverActions___tkqXd > button,
.ProgrammeCoverActions__ProgrammeCoverActions___tkqXd > a {
	margin: 0 0 16px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: var(--small-text);
	padding: 8px;
}

.ProgrammeCoverActions__ProgrammeCoverActions___tkqXd > button > label,
.ProgrammeCoverActions__ProgrammeCoverActions___tkqXd > a > label {
	padding: 0;
	text-align: left;
	flex: 1;
}

.ProgrammeCoverActions__ProgrammeCoverActions___tkqXd > button > svg,
.ProgrammeCoverActions__ProgrammeCoverActions___tkqXd > a > svg {
	margin: 0 4px 0 0;
	padding: 0;
	vertical-align: middle;
}

.ProgrammeCoverActions__ProgrammeCoverActions___tkqXd > button > .ProgrammeCoverActions__subtitle___PtY0k {
	width: 100%;
	text-align: left;
	opacity: 0.5;
	margin-top: 8px;
}

.ProgrammeCoverActions__ProgrammeCoverActions___tkqXd > button > .ProgrammeCoverActions__subtitle___PtY0k > label {
	margin: 0;
	padding: 0;
}

.ProgrammeCoverActions__ProgrammeCoverActions___tkqXd > button > .ProgrammeCoverActions__subtitle___PtY0k > .ProgrammeCoverActions__pathway___X2kVa {
}

.ProgrammeCoverActions__ProgrammeCoverActions___tkqXd > button > .ProgrammeCoverActions__classCount___KwrOx {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
	border-radius: 100%;
	width: 24px;
	height: 24px;
	font-size: var(--small-text);
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by simon on 2016-12-16
 */

.ProgrammeCoverImage__ProgrammeCoverImage___RyFaO {
	position: relative;
	overflow: hidden;
	transition: flex 0.2s;
}

.ProgrammeCoverImage__ProgrammeCoverImage___RyFaO.ProgrammeCoverImage__shown___q8_eD {
	flex: 1;
}

.ProgrammeCoverImage__ProgrammeCoverImage___RyFaO:not(.ProgrammeCoverImage__shown___q8_eD) + * {
	flex: 1;
}

.ProgrammeCoverImage__ProgrammeCoverImage___RyFaO > .ProgrammeCoverImage__cover___qXyAX {
	position: absolute;
	background-size: cover;
	background-position: center;

	--blur: 0px;
	--offset: calc(var(--blur) * -2);

	top: var(--offset);
	right: var(--offset);
	bottom: var(--offset);
	left: var(--offset);
	filter: blur(var(--blur));
}

.ProgrammeCoverImage__ProgrammeCoverImage___RyFaO > .ProgrammeCoverImage__cover___qXyAX.ProgrammeCoverImage__blurred___QvQpt {
	--blur: 16px;
}

.ProgrammeCoverImage__ProgrammeCoverImage___RyFaO > .ProgrammeCoverImage__title___AI0by {
	position: absolute;
	top: 32px;
	bottom: 128px;
	left: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	right: 32px;
	font-size: calc(var(--huge-text) * 3);
	font-weight: bold;
	margin: 0;
	color: #fff;
	text-shadow: 0 0.02em 0.04em rgba(0, 0, 0, 0.5);
	overflow: hidden;
}

.ProgrammeCoverImage__ProgrammeCoverImage___RyFaO > .ProgrammeCoverImage__actions___lFok4 {
	position: absolute;
	width: 256px;
	bottom: 16px;
	left: calc(50% - 128px);
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by simon on 2016-12-29
 */

.MoodleConfiguration__MoodleConfiguration___cPxqM {
	position: relative;
}

.MoodleConfiguration__MoodleConfiguration___cPxqM > a,
.MoodleConfiguration__MoodleConfiguration___cPxqM > button {
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.MoodleConfiguration__MoodleConfiguration___cPxqM .MoodleConfiguration__dropdown___fVpzV {
	background: #fff;
	border: 1px solid #eee;
	box-sizing: border-box;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
	margin-bottom: 8px;
	padding: 8px;
	position: absolute;
	right: 0;
	bottom: 100%;
	width: 240px;
}

.MoodleConfiguration__MoodleConfiguration___cPxqM .MoodleConfiguration__dropdown___fVpzV:before {
	content: '';
	position: absolute;
	bottom: -16px;
	right: 24px;
	border-width: 8px;
	border-style: solid;
	border-top-color: #fff;
	border-left-color: transparent;
	border-right-color: transparent;
	border-bottom-color: transparent;
}

.MoodleConfiguration__MoodleConfiguration___cPxqM .MoodleConfiguration__dropdown___fVpzV > .MoodleConfiguration__field___fuS6D {
	margin: 0 0 8px;
}

.MoodleConfiguration__MoodleConfiguration___cPxqM .MoodleConfiguration__dropdown___fVpzV > .MoodleConfiguration__field___fuS6D > label {
	color: #444;
	display: block;
	padding: 0;
	margin: 0 0 4px;
}

.MoodleConfiguration__MoodleConfiguration___cPxqM .MoodleConfiguration__dropdown___fVpzV > .MoodleConfiguration__field___fuS6D > input {
	box-sizing: border-box;
	display: block;
	width: 100%;
}

.MoodleConfiguration__MoodleConfiguration___cPxqM .MoodleConfiguration__dropdown___fVpzV > .MoodleConfiguration__actions___Sa1fc {
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2017.
 *  
 * Created by simon on 2017-02-08
 */

.ProgrammeCoverAccordion__accordionComposer___pkgL8 {
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *  
 * Created by simon on 2016-12-16
 */

.ProgrammeCoverPage__ProgrammeCoverPage___upPGE {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.ProgrammeCoverPage__ProgrammeCoverPage___upPGE > .ProgrammeCoverPage__syllabusMigrateBanner___DlsZH {
	background: #ffc20e;
	height: 32px;
	display: flex;
	align-items: center;
	color: rgba(0, 0, 0, 0.8);
	transition: 0.5s;
}

.ProgrammeCoverPage__ProgrammeCoverPage___upPGE > .ProgrammeCoverPage__syllabusMigrateBanner___DlsZH > span {
	flex: 1;
	padding: 8px;
}

.ProgrammeCoverPage__ProgrammeCoverPage___upPGE > .ProgrammeCoverPage__syllabusMigrateBanner___DlsZH > button {
	margin: 0 4px;
}

.ProgrammeCoverPage__ProgrammeCoverPage___upPGE > .ProgrammeCoverPage__wrapper___DaWdf {
	align-items: stretch;
	display: flex;
	flex-direction: row;
	flex: 1;
	min-height: 0;
}

.ProgrammeCoverPage__aside___o6qfn {
	width: 240px;
	position: relative;
	max-width: 100%;
	box-sizing: border-box;
	background: rgb(var(--theme-bg-parts));
	color: rgb(var(--theme-fg-parts));
	opacity: 1;
	z-index: 2;
	height: 100%;
	display: block;
	top: 0;
	right: 0;
	bottom: 0;
	transform: none;
	transition: opacity 0.5s, transform 0.5s;
}

.ProgrammeCoverPage__aside___o6qfn > .ProgrammeCoverPage__container___JsWuG {
	overflow: auto;
	height: 100%;
}

.ProgrammeCoverPage__aside___o6qfn > .ProgrammeCoverPage__container___JsWuG > .ProgrammeCoverPage__tags___oHTDu {
	margin: 16px 0;
}

.ProgrammeCoverPage__aside___o6qfn > .ProgrammeCoverPage__container___JsWuG > .ProgrammeCoverPage__tags___oHTDu > label {
	padding: 0 8px;
	text-transform: uppercase;
	font-size: var(--small-text);
	font-weight: bold;
	opacity: 0.5;
}

.ProgrammeCoverPage__body____SjuK {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	flex: 1;
	overflow: hidden;
	position: relative;
	transition: opacity 0.5s, margin-left 0.5s;
	z-index: 1;
}

.ProgrammeCoverPage__body____SjuK > .ProgrammeCoverPage__accordion___v3z5a {
}

.ProgrammeCoverPage__aside___o6qfn.ProgrammeCoverPage__open___pfPTd {
	opacity: 1;
	display: block;
}

.ProgrammeCoverPage__aside___o6qfn::before {
	content: '';
	position: absolute;
	top: 0;
	right: -12px;
	bottom: 0;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.5), 30%, transparent);
	width: 12px;
}

.ProgrammeCoverPage__aside___o6qfn > .ProgrammeCoverPage__container___JsWuG > button {
	transform: none;
}

.ProgrammeCoverPage__aside___o6qfn.ProgrammeCoverPage__hidden___tA48f > .ProgrammeCoverPage__container___JsWuG > button {
	transform: translateX(50%);
}

.ProgrammeCoverPage__aside___o6qfn.ProgrammeCoverPage__hidden___tA48f {
	transform: translateX(-100%);
}

.ProgrammeCoverPage__body____SjuK.ProgrammeCoverPage__hideSidebar___Cdp6v {
	margin-left: -240px;
}

.ProgrammeCoverPage__hideButton___AE0zF {
}

.ProgrammeCoverPage__hideButton___AE0zF > button {
	height: 32px;
	width: 32px;
	margin-top: 10px;
	padding: 0;
	position: absolute;
	top: 16px;
	right: -16px;
	border-radius: 100%;
	background: var(--theme-button-bg);
	transition: right 0.2s, border-radius 0.2s;
	z-index: 2;
}

.ProgrammeCoverPage__hideButton___AE0zF > button.ProgrammeCoverPage__expanded___cMNUy {
}

.ProgrammeCoverPage__hideButton___AE0zF > button.ProgrammeCoverPage__collapsed___ui2Uw {
	right: -32px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.ProgrammeCoverPage__hideButton___AE0zF > button > svg {
	transition: transform 0.2s;
}

.ProgrammeCoverPage__hideButton___AE0zF > button.ProgrammeCoverPage__collapsed___ui2Uw > svg {
	transform: rotate(180deg);
}

.ProgrammeCoverPage__hideButton___AE0zF:not(button) {
	text-align: right;
}

.Myday__Myday___WuhC_ {
	overflow: hidden;
	display: flex;
	position: relative;
	height: 100%;
}

.Myday__spinner___ego8V {
	margin: 15% auto;
}

.Myday__saved___kvTsO {
	position: absolute;
	bottom: 16px;
	right: 16px;
	padding: 8px;
	background-color: var(--theme-button-bg);
	color: var(--theme-button-fg);
	font-size: var(--small-text);
	font-weight: bold;
	text-transform: uppercase;
	transition: visibility 0.3s, opacity 0.3s linear;
}

.MydayMenu__MydayMenu___T5I1E {
	display: flex;
	flex-direction: column;
	border-right: 1px solid var(--theme-offset-bg);
	transition: width 0.2s ease-out;
	background-color: var(--nav-level-three);
}

.MydayMenu__MydayMenu___T5I1E > .MydayMenu__header___UWKQp {
	display: flex;
	position: relative;
}

.MydayMenu__MydayMenu___T5I1E > .MydayMenu__header___UWKQp > .MydayMenu__navigator___rV3nZ {
	width: calc(100% - (32px / 2) - 2px - 8px);
	z-index: 5;
}

.MydayMenu__MydayMenu___T5I1E > .MydayMenu__header___UWKQp > .MydayMenu__toggle___gsNsa {
	position: absolute;
	background-color: var(--theme-button-bg);
	color: var(--theme-button-fg);
	right: -16px;
	top: 16px;
	border-radius: 32px;
	width: 32px;
	height: 32px;
	padding: 0;
	box-shadow: none;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.MydayMenu__MydayMenu___T5I1E > .MydayMenu__header___UWKQp > .MydayMenu__toggle___gsNsa > div {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s;
	transition-delay: 0.2s;
}

.MydayMenu__MydayMenu___T5I1E > ul.MydayMenu__list___wlbW_ {
	flex: 1;
	overflow: auto;
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--theme-offset-bg);
}

.MydayMenu__MydayMenu___T5I1E > .MydayMenu__listClosed___j0f5K {
	margin-top: 64px;
	overflow-x: hidden;
}

.MydayMenu__MydayMenu___T5I1E > ul > .MydayMenu__noClasses___JKqLK {
	padding: 16px;
	color: rgba(var(--theme-fg-parts), 0.5);
	text-align: center;
}

.MydayMenu__MydayMenu___T5I1E > .MydayMenu__buttons___ET0LY {
	display: flex;
	padding: 4px;
	border-top: 1px solid var(--theme-offset-bg);
}

.MydayMenu__MydayMenu___T5I1E > .MydayMenu__buttons___ET0LY > .MydayMenu__notes___sdb3O,
.MydayMenu__MydayMenu___T5I1E > .MydayMenu__buttons___ET0LY > .MydayMenu__tasks___U1AOT {
	flex: 1;
	margin: 4px;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.MydayMenu__MydayMenu___T5I1E > .MydayMenu__buttonsClosed___avI6V {
	display: flex;
	flex-direction: column;
	padding: 4px;
	border-top: 1px solid var(--theme-offset-bg);
}

.MydayMenu__MydayMenu___T5I1E > .MydayMenu__buttonsClosed___avI6V > .MydayMenu__notes___sdb3O,
.MydayMenu__MydayMenu___T5I1E > .MydayMenu__buttonsClosed___avI6V > .MydayMenu__tasks___U1AOT {
	flex: 1;
	margin: 4px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 4px 0;
}

.MydayMenu__MydayMenu___T5I1E > .MydayMenu__buttons___ET0LY > .MydayMenu__notes___sdb3O > svg,
.MydayMenu__MydayMenu___T5I1E > .MydayMenu__buttons___ET0LY > .MydayMenu__tasks___U1AOT > svg {
	width: auto;
	height: auto;
	margin: 0;
}

.MydayMenuItem__MydayMenuItem___TPCHl {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--theme-offset-bg);
	padding: 8px;
	cursor: pointer;
	position: relative;
}

li.MydayMenuItem__closed___jLFLv {
	flex-direction: column;
}

.MydayMenuItem__MydayMenuItem___TPCHl:hover {
	background: var(--theme-offset-bg);
}

.MydayMenuItem__MydayMenuItem___TPCHl.MydayMenuItem__relieving___j4zE4 {
	box-shadow: inset 0 0 0 2px rgb(var(--theme-sel-bg-parts));
}

.MydayMenuItem__MydayMenuItem___TPCHl.MydayMenuItem__relieved___N4zU9 {
	opacity: 0.5;
	background: var(--theme-offset-bg);
}

.MydayMenuItem__MydayMenuItem___TPCHl.MydayMenuItem__selected___eJC0l {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__color___wDbZn {
	position: absolute;
	top: 0;
	left: 0;
	border-right: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__closed___jLFLv {
	width: auto;
	flex: 1;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__details___RmVnl {
	min-width: 30px;
	padding: 0 8px;
	display: flex;
	flex-wrap: wrap;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__details___RmVnl > .MydayMenuItem__code___MpsnR {
	text-transform: uppercase;
	font-size: var(--small-text);
	opacity: 0.5;
	width: 25%;
	overflow: hidden;
	text-overflow: ellipsis;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__details___RmVnl > .MydayMenuItem__closed___jLFLv {
	display: block;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 8px 0 0;
	font-size: var(--small-text);
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__details___RmVnl > .MydayMenuItem__description___auI1o {
	text-transform: uppercase;
	overflow: hidden;
	white-space: pre;
	text-overflow: ellipsis;
	font-size: var(--small-text);
	width: 50%;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__details___RmVnl > .MydayMenuItem__room___Uv8U_ {
	text-transform: uppercase;
	font-size: var(--small-text);
	opacity: 0.5;
	width: 25%;
	text-align: right;
	overflow: hidden;
	text-overflow: ellipsis;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__details___RmVnl > .MydayMenuItem__roomChanged___a_inx {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
	opacity: 1;
	text-align: center;
}

.MydayMenuItem__MydayMenuItem___TPCHl.MydayMenuItem__selected___eJC0l > .MydayMenuItem__details___RmVnl > .MydayMenuItem__roomChanged___a_inx {
	color: #fff;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__event___E8oOs > .MydayMenuItem__room___Uv8U_ {
	width: 100%;
	text-align: right;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__details___RmVnl > .MydayMenuItem__topic___JkeEH,
.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__event___E8oOs > .MydayMenuItem__topic___JkeEH {
	font-size: var(--large-text);
	width: 100%;
	margin: 2px auto;
	font-weight: bold;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__event___E8oOs > .MydayMenuItem__closed___jLFLv {
	display: block;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 8px 0 0;
	font-size: var(--small-text);
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__details___RmVnl > .MydayMenuItem__period___LxgCP,
.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__details___RmVnl > .MydayMenuItem__times___ktpWz {
	text-transform: uppercase;
	overflow: hidden;
	white-space: pre;
	text-overflow: ellipsis;
	font-size: var(--small-text);
	width: 50%;
	opacity: 0.5;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__event___E8oOs > .MydayMenuItem__times___ktpWz {
	width: 100%;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__details___RmVnl > .MydayMenuItem__staff___p5beI {
	width: 100%;
	text-transform: uppercase;
	overflow: hidden;
	white-space: pre;
	text-overflow: ellipsis;
	font-size: var(--small-text);
	font-weight: bold;
}

.MydayMenuItem__MydayMenuItem___TPCHl.MydayMenuItem__selected___eJC0l > .MydayMenuItem__details___RmVnl > .MydayMenuItem__staff___p5beI {
	color: #fff;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__actions___cnTwp {
	align-self: flex-start;
	display: flex;
	justify-content: flex-end;
	flex: 1;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__actions___cnTwp > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	width: 32px;
	height: 32px;
	padding: 0;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__actions___cnTwp > a > button {
	padding: 4px;
	margin: 0 0 0 4px;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__actions___cnTwp a svg,
.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__actions___cnTwp button svg {
	width: 20px;
	height: 20px;
}

@keyframes MydayMenuItem__glow___GLGHw {
	0% {
		box-shadow: 0 0 0 0 #8cc63e;
	}
	50% {
		box-shadow: 0 0 0 16px rgba(140, 198, 62, 0);
	}
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__actions___cnTwp .MydayMenuItem__glow___GLGHw {
	animation-name: MydayMenuItem__glow___GLGHw;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__actions___cnTwp .MydayMenuItem__marked___Apuh4 {
	opacity: 0.4;
}

.MydayMenuItem__MydayMenuItem___TPCHl > .MydayMenuItem__actions___cnTwp .MydayMenuItem__buttonPadding___nbqgk {
	margin-left: 4px;
	border-radius: 50%;
}

.MydayHeader__MydayHeader___tGOE3 {
	display: flex;
	border-bottom: 1px solid var(--theme-offset-bg);
	background-color: rgb(var(--theme-bg-parts));
}

.MydayHeader__MydayHeader___tGOE3 > input {
	flex: 1;
	font-size: var(--huge-text);
	padding: 8px 24px;
	font-weight: bold;
	cursor: default;
	border: none;
}

.MydayHeader__MydayHeader___tGOE3 > input:hover {
	border: none;
}

.MydayHeader__MydayHeader___tGOE3 > .MydayHeader__nav___Y6cio {
	display: flex;
	align-items: center;
}

.MydayHeader__MydayHeader___tGOE3 > .MydayHeader__nav___Y6cio > .MydayHeader__pathways___FLE4Y {
	align-self: center;
	font-size: var(--small-text);
	text-transform: uppercase;
	margin-right: 8px;
	display: flex;
}

.MydayHeader__MydayHeader___tGOE3 > .MydayHeader__nav___Y6cio > .MydayHeader__pathways___FLE4Y > span {
	margin: 0 4px;
	padding: 4px 0;
}

@keyframes MydayHeader__glow___azu0R {
	0% {
		box-shadow: 0 0 0 0 #ffc20e;
	}
	50% {
		box-shadow: 0 0 0 16px rgba(255, 194, 14, 0);
	}
}

.MydayHeader__MydayHeader___tGOE3 > .MydayHeader__nav___Y6cio > .MydayHeader__pathways___FLE4Y > .MydayHeader__count___VTNzP {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	color: #f36f21;
	border: 1px solid #ffc20e;
	animation-name: MydayHeader__glow___azu0R;
	animation-duration: 2s;
	animation-iteration-count: 5;
	box-sizing: border-box;
	border-radius: 50%;
	text-align: center;
	width: 2em;
	height: 2em;
}

.MydayHeader__MydayHeader___tGOE3 > .MydayHeader__nav___Y6cio > a {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 100%;
	margin: 0 8px;
}

.MydayHeader__MydayHeader___tGOE3 > .MydayHeader__nav___Y6cio > .MydayHeader__displayStatus___Ii3At {
	font-size: var(--large-text);
	align-self: center;
}

.MydayHeader__MydayHeader___tGOE3 > .MydayHeader__notBlank___HK6_c {
	box-shadow: inset 0 0 10px #cc0200;
}

.MydayHeader__MydayHeader___tGOE3 > .MydayHeader__editText___n36hu {
	cursor: text;
}

.MydayContent__MydayContent___YoYlV {
	flex: 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
}

.MydayContent__MydayContent___YoYlV > .MydayContent__warning___CM594 {
	background: rgba(var(--theme-bg-parts), 0.5);
	border-left: 8px solid var(--yellow);
	margin: 8px auto;
	padding: 8px 16px;
	font-size: var(--small-text);
	text-transform: uppercase;
	font-weight: bold;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
	border-radius: 4px;
}

.MydayContent__MydayContent___YoYlV > .MydayContent__accordion___vkbx4 {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.MydayContent__MydayContent___YoYlV > .MydayContent__accordion___vkbx4 > div > div:first-child > div:first-child {
	width: auto !important;
}

.MydayContent__MydayContent___YoYlV .MydayContent__caption___eLPfY {
	display: flex;
	align-items: center;
}

.MydayContent__MydayContent___YoYlV .MydayContent__caption___eLPfY svg {
	width: 16px;
}

.MydayContent__MydayContent___YoYlV .MydayContent__caption___eLPfY > span {
	text-transform: uppercase;
	padding-left: 2px;
}

.MydayContent__MydayContent___YoYlV .MydayContent__content____Sh9g {
	display: flex;
	overflow: hidden;
	flex: 1;
}

.MydayContent__MydayContent___YoYlV .MydayContent__fullscreenContent___Y27T_ {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
}

.MydayContent__MydayContent___YoYlV .MydayContent__fullscreenContent___Y27T_ > .MydayContent__presenter___r94sy {
	flex: 1;
	overflow: auto;
	background: #fff;
}

.MydayContent__MydayContent___YoYlV .MydayContent__fullscreenContent___Y27T_ > .MydayContent__presenter___r94sy > .MydayContent__unembiggen___tvIT4 {
	width: 100%;
}

.MydayContent__MydayContent___YoYlV .MydayContent__fullscreenContent___Y27T_ > .MydayContent__presenter___r94sy > .MydayContent__composer___dqyQH {
	overflow: auto;
	height: 100%;
}

.MydayContent__MydayContent___YoYlV .MydayContent__fullscreenContent___Y27T_ > .MydayContent__presenter___r94sy > .MydayContent__homework___owGSm {
	border-top: solid 4px #999;
	background: #ddd;
	padding: 8px;
}

.MydayContent__MydayContent___YoYlV .MydayContent__fullscreenContent___Y27T_ > .MydayContent__presenter___r94sy > .MydayContent__homework___owGSm > h2 {
	margin: 0;
	padding: 0;
	font-size: var(--large-text);
}

.MydayContent__MydayContent___YoYlV .MydayContent__fullscreenContent___Y27T_ > .MydayContent__presenter___r94sy > .MydayContent__homework___owGSm > .MydayContent__prewrap___FpH_g {
	white-space: pre-wrap;
}

.MydayContent__loading___N4n56 {
	width: 100%;
}

.MydayContent__noClasses___LJ3Hr {
	flex: 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 16px;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
}

.MydayContent__classNoteButton____6yQt {
	position: absolute !important;
	top: 4px;
	right: 4px;
	text-transform: initial;
}

.MydayContent__dashletWrapper___TNGfa {
	flex: 1;
	height: 100%;
}

.MydayContent__dashletWrapper___TNGfa .dashboard {
	width: 100%;
	height: 100%;
	padding: 0;
}

.MydayContent__dashletWrapper___TNGfa .dashboard > .dashlet {
	padding: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.MydayContent__dashletWrapper___TNGfa
	.dashboard
	> .dashlet
	> .header
	> .title {
	padding: 16px 20px;
	font-weight: bold;
	text-transform: uppercase;
}

.MydayContent__dashletWrapper___TNGfa .dashboard > .dashlet > .content {
	flex: 1;
	border: none;
}

.MydayOutline__MydayOutline___mqFuS {
	flex: 1;
	overflow: auto;
	display: flex;
	flex-direction: column;
}

.MydayOutline__MydayOutline___mqFuS > .MydayOutline__container___Civbp {
	flex: 1;
	display: flex;
}

.MydayOutline__MydayOutline___mqFuS > .MydayOutline__container___Civbp > .formattedText {
	flex: 1;
	height: auto;
}

.MydayOutline__MydayOutline___mqFuS > .MydayOutline__container___Civbp > .formattedText iframe {
	width: 100% !important;
}

.MydayOutline__MydayOutline___mqFuS > .MydayOutline__nonEditableContainer___xbgbI {
	padding: 8px;
	flex: 1;
}

.MydaySidebar__MydaySidebar___t4GbF {
	width: 320px;
	border-left: 1px solid var(--theme-offset-bg);
	overflow: auto;
	background-color: rgba(var(--theme-bg-parts), 0.5);
}

.MydaySidebar__content____TlJk {
	min-height: 1em;
	padding: 8px;
	border: none;
	margin: 0;
}

.MydaySidebarLessonInfo__MydaySidebarLessonInfo___Z9BDR {
	min-height: 1em;
	padding: 8px;
	border: none;
	margin: 0;
}

.MydaySidebarLessonInfo__MydaySidebarLessonInfo___Z9BDR .MydaySidebarLessonInfo__info___FfCXH:first-child > .MydaySidebarLessonInfo__value___SSj9z {
	text-transform: capitalize;
}

.MydaySidebarLessonInfo__MydaySidebarLessonInfo___Z9BDR > .MydaySidebarLessonInfo__rollover___AxwW8 {
	padding: 4px 0;
}

.MydaySidebarLessonInfo__MydaySidebarLessonInfo___Z9BDR > .MydaySidebarLessonInfo__prev___iZTDd {
}
.MydaySidebarLessonInfo__MydaySidebarLessonInfo___Z9BDR > .MydaySidebarLessonInfo__curr___WEE24 {
}
.MydaySidebarLessonInfo__MydaySidebarLessonInfo___Z9BDR > .MydaySidebarLessonInfo__next___D0yui {
}

.MydaySidebarLessonInfo__MydaySidebarLessonInfo___Z9BDR > .MydaySidebarLessonInfo__rollover___AxwW8 > .MydaySidebarLessonInfo__label___CJQf8 {
	margin-right: 8px;
}

.MydaySidebarLessonInfo__MydaySidebarLessonInfo___Z9BDR > .MydaySidebarLessonInfo__rollover___AxwW8 > .MydaySidebarLessonInfo__value___SSj9z {
	margin: 2px 0;
}

.MydaySidebarLessonInfo__MydaySidebarLessonInfo___Z9BDR > .MydaySidebarLessonInfo__prev___iZTDd > .MydaySidebarLessonInfo__label___CJQf8,
.MydaySidebarLessonInfo__MydaySidebarLessonInfo___Z9BDR > .MydaySidebarLessonInfo__next___D0yui > .MydaySidebarLessonInfo__label___CJQf8 {
	opacity: 0.7;
}

.MydaySidebarLessonInfo__MydaySidebarLessonInfo___Z9BDR > .MydaySidebarLessonInfo__prev___iZTDd > .MydaySidebarLessonInfo__value___SSj9z,
.MydaySidebarLessonInfo__MydaySidebarLessonInfo___Z9BDR > .MydaySidebarLessonInfo__next___D0yui > .MydaySidebarLessonInfo__value___SSj9z {
	background-color: var(--theme-offset-bg);
	opacity: 0.8;
	cursor: pointer;
	border-radius: 2px;
	padding: 4px 4px;
}

.MydaySidebarLessonInfo__MydaySidebarLessonInfo___Z9BDR > .MydaySidebarLessonInfo__prev___iZTDd > .MydaySidebarLessonInfo__value___SSj9z:hover,
.MydaySidebarLessonInfo__MydaySidebarLessonInfo___Z9BDR > .MydaySidebarLessonInfo__next___D0yui > .MydaySidebarLessonInfo__value___SSj9z:hover {
	opacity: 1;
}

.MydaySidebarLessonInfo__MydaySidebarLessonInfo___Z9BDR > .MydaySidebarLessonInfo__delivered___q_muE {
	padding: 0;
}

.MydaySidebarLessonInfo__MydaySidebarLessonInfo___Z9BDR > .MydaySidebarLessonInfo__delivered___q_muE > input {
	padding: 0;
	margin: 4px 8px 0 0;
}

.MydaySidebarLessonInfo__popout___oIwuM > .pane {
	display: flex;
	flex-direction: column;
}

.MydaySidebarLessonInfo__popout___oIwuM > .pane > .content {
	flex: 1;
	margin: 0;
}

.MydaySidebarLessonInfo__popout___oIwuM
	> .pane
	> .content
	> .uiFormattedTextWrapper {
	height: 100%;
}

.MydaySidebarItem__MydaySidebarItem___V9vc3 {
	border-top: var(--theme-offset-bg);
}

.MydaySidebarItem__MydaySidebarItem___V9vc3:first-child {
	border-top: none;
}

.MydaySidebarItem__MydaySidebarItem___V9vc3 > .MydaySidebarItem__header___RBxi7 {
	z-index: 1;
	position: sticky;
	top: 0;
	background: rgb(var(--theme-bg-parts));
	text-transform: uppercase;
	font-weight: bold;
	width: 100%;
	cursor: pointer;
	display: flex;
	border-bottom: 1px solid var(--theme-offset-bg);
}

.MydaySidebarItem__MydaySidebarItem___V9vc3 > .MydaySidebarItem__header___RBxi7 > span {
	flex: 1;
	padding: 4px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
}

.MydaySidebarItem__MydaySidebarItem___V9vc3 > .MydaySidebarItem__header___RBxi7 > span > svg {
	width: 16px;
	height: 16px;
	vertical-align: middle;
	margin: 0 8px 0 0;
}

.MydaySidebarItem__MydaySidebarItem___V9vc3 > .MydaySidebarItem__header___RBxi7 > span > span {
	font-size: var(--small-text);
	font-weight: normal;
	display: flex;
	align-items: center;
	opacity: 0.5;
}

.MydaySidebarItem__MydaySidebarItem___V9vc3 > .MydaySidebarItem__header___RBxi7 > span > span > svg {
	width: 16px;
	vertical-align: middle;
	margin: 0 1ex;
}

.MydaySidebarItem__MydaySidebarItem___V9vc3 > .MydaySidebarItem__header___RBxi7 > button {
	border-radius: 0;
	text-transform: initial;
}

@keyframes MydayClassNote__glow___aEpPf {
	0% {
		box-shadow: 0 0 0 var(--yellow);
	}
	50% {
		box-shadow: 0 0 0 16px transparent;
	}
}

button.MydayClassNote__MydayClassNote___J018f {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.MydayClassNote__glow___aEpPf {
	animation-name: MydayClassNote__glow___aEpPf;
	animation-duration: 2s;
	animation-iteration-count: 5;
}

.MydayClassNote__formattedText___ltSO8 .pane {
	display: flex;
	flex-direction: column;
}

.MydayClassNote__formattedText___ltSO8 .content {
	flex: 1;
	margin: 0 !important;
}

.MydayClassNote__formattedText___ltSO8 .uiFormattedTextWrapper {
	height: 100% !important;
}

.MydaySidebarDraft__MydaySidebarDraft___mkvb9 {
	cursor: text;
}

.MydaySidebarResources__MydaySidebarResources___J9qP1 {
	padding: 0;
}

.MydaySidebarResources__MydaySidebarResources___J9qP1 > .rows {
	padding: 2px;
}

.MydaySidebarResources__MydaySidebarResources___J9qP1 > .rows:last-child {
	border-bottom: none;
}

.MydaySidebarResources__MydaySidebarResources___J9qP1 > .rows > .name {
	padding: 0 0 0 4px;
}

.MydaySidebarResources__MydaySidebarResources___J9qP1 > .rows > .thumbnail {
	width: 38px;
	height: 38px;
	margin: -2px 2px -2px -2px;
}

.MydaySidebarResources__MydaySidebarResources___J9qP1 > .rows > .play {
	overflow: visible;
	left: 2px;
	top: 5px;
	opacity: 0.8;
}

.MydaySidebarResources__confirm___Crfm5 {
	display: flex;
	justify-content: center;
}

.MydaySidebarResources__confirm___Crfm5 > .MydaySidebarResources__image___AdD1T {
	margin: 32px;
}

.MydaySidebarResources__confirm___Crfm5 > .MydaySidebarResources__message___hO9fz {
	text-align: center;
	padding: 32px;
}

.MydaySidebarNotes__MydaySidebarNotes___NzPba {
}

.MydaySidebarNotes__MydaySidebarNotes___NzPba .wrapper {
	min-height: 200px;
}

.MydaySidebarNotes__MydaySidebarNotes___NzPba iframe {
	background-color: #eee;
}

.MydaySidebarBooking__MydaySidebarBooking___C7zy3 {
}

.MydaySidebarBooking__MydaySidebarBooking___C7zy3 > .MydaySidebarBooking__item___em4ra {
	width: 100%;
	display: flex;
	border-bottom: 1px solid var(--theme-offset-bg);
}

.MydaySidebarBooking__MydaySidebarBooking___C7zy3 > .MydaySidebarBooking__item___em4ra > .MydaySidebarBooking__type___s6LvL {
	flex: 1;
	padding: 8px;
}

.MydaySidebarBooking__MydaySidebarBooking___C7zy3 > .MydaySidebarBooking__item___em4ra > .MydaySidebarBooking__key___Kf34X {
	flex: 1;
	padding: 8px;
	text-align: right;
}

.MydaySidebarSyllabus__MydaySidebarSyllabus___zCM1K {
	list-style: none;
	padding: 0;
	margin: 0;
}

.MydaySidebarSyllabus__MydaySidebarSyllabus___zCM1K li {
	color: rgba(var(--theme-fg-parts), 0.5);
	padding: 2px 0;
}

.MydaySidebarSyllabus__MydaySidebarSyllabus___zCM1K li > span {
	position: relative;
	cursor: pointer;
}

.MydaySidebarSyllabus__MydaySidebarSyllabus___zCM1K ol {
	list-style: none;
	padding: 0;
	margin: 0 0 0 32px;
	width: calc(100% - 32px);
}

.MydaySidebarSyllabus__MydaySidebarSyllabus___zCM1K span > .MydaySidebarSyllabus__popup___RBtA2 {
	background-color: rgb(var(--theme-bg-parts));
	border-radius: 2px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	color: rgb(var(--theme-fg-parts));
	padding: 4px;
	margin: 8px 0 0;
	width: 264px;
	position: absolute;
	top: 10px;
	left: 0;
	z-index: 5;
}

.MydaySidebarSyllabus__MydaySidebarSyllabus___zCM1K span > .MydaySidebarSyllabus__popup___RBtA2 > .MydaySidebarSyllabus__title___VUt8s {
	color: rgb(var(--theme-fg-parts));
}

.MydaySidebarSyllabus__MydaySidebarSyllabus___zCM1K span > .MydaySidebarSyllabus__popup___RBtA2 > p {
	margin: 4px 0;
}

.MydaySidebarAssessments__MydaySidebarAssessments___Q_hlm {
	display: flex;
	align-items: baseline;
}

.MydaySidebarAssessments__MydaySidebarAssessments___Q_hlm > .MydaySidebarAssessments__date___ptavj {
	flex: 1;
	color: #999;
	text-transform: uppercase;
	font-size: var(--small-text);
	text-align: center;
}

.MydaySidebarAssessments__MydaySidebarAssessments___Q_hlm > .MydaySidebarAssessments__title___EsOgC {
	flex: 3;
}

.MydaySidebarEventInfo__MydaySidebarEventInfo___Bwxdm {
	width: 100%;
	font-size: var(--small-text);
	display: flex;
}

.MydaySidebarEventInfo__MydaySidebarEventInfo___Bwxdm > .MydaySidebarEventInfo__label___O6SOA {
	opacity: 0.5;
	flex: 1;
	margin: 0 8px 0 0;
}

.MydaySidebarEventInfo__MydaySidebarEventInfo___Bwxdm > .MydaySidebarEventInfo__value___BiWQU {
	flex: 2;
}

.MydaySidebarEventInfo__MydaySidebarEventInfo___Bwxdm:first-child > .MydaySidebarEventInfo__value___BiWQU {
	text-transform: capitalize;
}

.MydaySidebarAttendees__MydaySidebarAttendees___fRAm_ {
}

.MydaySidebarAttendees__MydaySidebarAttendees___fRAm_ .listWrapper {
	min-height: 250px;
}

.MydaySidebarAttendees__MydaySidebarAttendees___fRAm_ .item {
	border-bottom: 1px solid #ddd !important;
	padding: 5px 4px 5px 12px !important;
}

.MydaySidebarAttendees__MydaySidebarAttendees___fRAm_ .item:last-child {
	border-bottom: none !important;
}

.MydaySidebarAttendees__MydaySidebarAttendees___fRAm_ .item.student {
	box-shadow: inset 8px 0 #4db848;
}

.MydaySidebarAttendees__MydaySidebarAttendees___fRAm_ .item.staff {
	box-shadow: inset 8px 0 #00aeef;
}

.MydaySidebarAttendees__MydaySidebarAttendees___fRAm_ .item.contact {
	box-shadow: inset 8px 0 #f36f21;
}

.MydaySidebarAttendees__warning___rrKdy {
	color: #999;
	text-align: center;
	padding: 8px 0 4px;
	font-style: italic;
}

/*
 * Copyright (c) SEQTA Software (a division of EHG) 2018.
 *  
 * Created by Steven Laidlaw on 2018-01-24
 */

.SyllabusInsert__SyllabusInsert___C7XIz {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.SyllabusInsert__SyllabusInsert___C7XIz > .SyllabusInsert__containerHeader___JeO6D {
	display: flex;
	border-bottom: 1px solid var(--theme-offset-bg);
}

.SyllabusInsert__SyllabusInsert___C7XIz > .SyllabusInsert__containerHeader___JeO6D > div {
	font-size: var(--small-text);
	text-transform: uppercase;
	background: var(--theme-offset-bg);
	text-align: left;
	padding: 4px 0;
	font-weight: bold;
}

.SyllabusInsert__SyllabusInsert___C7XIz > .SyllabusInsert__containerHeader___JeO6D > div > span {
	padding-left: 4px;
	font-size: var(--small-text);
}

.SyllabusInsert__SyllabusInsert___C7XIz > .SyllabusInsert__containerHeader___JeO6D > .SyllabusInsert__checkbox___NLfDV {
	width: 24px;
}

.SyllabusInsert__SyllabusInsert___C7XIz > .SyllabusInsert__containerHeader___JeO6D > .SyllabusInsert__setWidth___LVXnt {
	width: 128px;
	cursor: pointer;
}

.SyllabusInsert__SyllabusInsert___C7XIz > .SyllabusInsert__containerHeader___JeO6D > .SyllabusInsert__flexWidth___oMgY7 {
	flex: 1;
	cursor: pointer;
	padding-left: 4px;
}

.SyllabusInsert__SyllabusInsert___C7XIz > .SyllabusInsert__warning___Re04_ {
	background: var(--yellow);
	color: #000;
	padding: 4px 8px;
}

.SyllabusInsert__SyllabusInsert___C7XIz > .SyllabusInsert__itemContainer___HuCU4 {
	flex: 1;
	overflow-y: scroll;
}

.SyllabusInsert__slidePane___YHLrc {
	left: 10%;
	right: 10%;
}

.SyllabusInsert__slidePane___YHLrc .content {
	margin: 0 !important;
}

.SyllabusInsert__loading___LWUa1 {
	padding-top: 64px;
}

.SyllabusInsert__noSets___ZN1yh {
	width: 100%;
	text-align: center;
	padding-top: 84px;
}

/*
 * Copyright (c) SEQTA Software (a division of EHG) 2018.
 *  
 * Created by Steven Laidlaw on 2018-01-24
 */

.SyllabusInsertItemHeader__SyllabusInsertItemHeader___bWUKa {
	padding: 8px;
	position: relative;
	height: 256px;
	min-height: 64px;
	max-height: 20vh;
	overflow: hidden;
}

.SyllabusInsertItemHeader__SyllabusInsertItemHeader___bWUKa > .SyllabusInsertItemHeader__backdrop___cCDc6 {
	background-position: center;
	background-size: cover;
	position: absolute;
	top: -8px;
	right: -8px;
	bottom: -8px;
	left: -8px;
}

.SyllabusInsertItemHeader__SyllabusInsertItemHeader___bWUKa > .SyllabusInsertItemHeader__set___LmURs {
	display: flex;
	align-items: stretch;
	position: relative;
}

.SyllabusInsertItemHeader__SyllabusInsertItemHeader___bWUKa > .SyllabusInsertItemHeader__set___LmURs > .uiSingleSelectWrapper {
	position: relative;
	text-align: left;
	display: flex;
}

.SyllabusInsertItemHeader__SyllabusInsertItemHeader___bWUKa > .SyllabusInsertItemHeader__set___LmURs > .uiSingleSelectWrapper:first-child {
	flex: 1;
}

.SyllabusInsertItemHeader__SyllabusInsertItemHeader___bWUKa
	> .SyllabusInsertItemHeader__set___LmURs
	> .uiSingleSelectWrapper
	> input {
	flex: 1;
	min-width: 0;
}

.SyllabusInsertItemHeader__SyllabusInsertItemHeader___bWUKa > .SyllabusInsertItemHeader__set___LmURs > .uiSingleSelectWrapper:last-child {
	width: 128px;
	margin: 4px 0 4px 8px;
}

.SyllabusInsertItemHeader__SyllabusInsertItemHeader___bWUKa > .SyllabusInsertItemHeader__copyright___SDdmg {
	background: rgb(var(--theme-bg-parts));
	font-size: var(--small-text);
	padding: 8px;
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 42px;
}

.SyllabusInsertItemHeader__SyllabusInsertItemHeader___bWUKa > .SyllabusInsertItemHeader__filters___qV_Oq {
	display: flex;
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 8px;
}

.SyllabusInsertItemHeader__SyllabusInsertItemHeader___bWUKa > .SyllabusInsertItemHeader__filters___qV_Oq > .uiButtonChecklist {
	width: 160px;
	margin: 0 8px 0 0;
}

.SyllabusInsertItemHeader__SyllabusInsertItemHeader___bWUKa > .SyllabusInsertItemHeader__filters___qV_Oq > .uiButtonChecklist > button {
	width: 100%;
}

.SyllabusInsertItemHeader__SyllabusInsertItemHeader___bWUKa > .SyllabusInsertItemHeader__filters___qV_Oq > input {
	flex: 3;
}

/*
 * Copyright (c) SEQTA Software (a division of EHG) 2018.
 *  
 * Created by Steven Laidlaw on 2018-01-24
 */

.SyllabusInsertItem__SyllabusInsertItem___VQzsI {
	border-bottom: 1px solid var(--theme-offset-bg);
}

.SyllabusInsertItem__SyllabusInsertItem___VQzsI.SyllabusInsertItem__selected___nqaOo,
.SyllabusInsertItem__SyllabusInsertItem___VQzsI.SyllabusInsertItem__selected___nqaOo > .SyllabusInsertItem__row___sY_rv:hover {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.SyllabusInsertItem__SyllabusInsertItem___VQzsI > .SyllabusInsertItem__row___sY_rv {
	display: flex;
}

.SyllabusInsertItem__SyllabusInsertItem___VQzsI > .SyllabusInsertItem__row___sY_rv:first-child {
	cursor: pointer;
}

.SyllabusInsertItem__SyllabusInsertItem___VQzsI > .SyllabusInsertItem__row___sY_rv:hover {
	background-color: var(--theme-offset-bg);
}

.SyllabusInsertItem__SyllabusInsertItem___VQzsI > .SyllabusInsertItem__row___sY_rv > div {
	padding: 4px 0;
}

.SyllabusInsertItem__SyllabusInsertItem___VQzsI > .SyllabusInsertItem__row___sY_rv > .SyllabusInsertItem__checkbox___AKsIz {
	width: 24px;
	text-align: center;
}

.SyllabusInsertItem__SyllabusInsertItem___VQzsI > .SyllabusInsertItem__row___sY_rv > .SyllabusInsertItem__checkbox___AKsIz > input {
	padding: 4px;
	margin: 0;
}

.SyllabusInsertItem__SyllabusInsertItem___VQzsI > .SyllabusInsertItem__row___sY_rv > .SyllabusInsertItem__area___ESSoZ,
.SyllabusInsertItem__SyllabusInsertItem___VQzsI > .SyllabusInsertItem__row___sY_rv > .SyllabusInsertItem__strand___0rUC8,
.SyllabusInsertItem__SyllabusInsertItem___VQzsI > .SyllabusInsertItem__row___sY_rv > .SyllabusInsertItem__outcome___xIXzg,
.SyllabusInsertItem__SyllabusInsertItem___VQzsI > .SyllabusInsertItem__row___sY_rv > .SyllabusInsertItem__code___XaxK9 {
	width: 128px;
}

.SyllabusInsertItem__SyllabusInsertItem___VQzsI > .SyllabusInsertItem__row___sY_rv > .SyllabusInsertItem__details___GywjT {
	flex: 1;
	padding-left: 4px;
}

/*
 * Copyright (c) SEQTA Software (a division of EHG) 2018.
 *  
 * Created by Steven Laidlaw on 2018-01-24
 */

.SyllabusInsertContentContainer__SyllabusInsertContentContainer___wRDmF {
	padding: 4px;
}

.SyllabusInsertContentContainer__SyllabusInsertContentContainer___wRDmF > .SyllabusInsertContentContainer__title___hXI5I {
	text-transform: uppercase;
	opacity: 0.5;
	cursor: pointer;
}

.SyllabusInsertContentContainer__SyllabusInsertContentContainer___wRDmF > .SyllabusInsertContentContainer__title___hXI5I > img {
	margin-right: 4px;
}

.SyllabusInsertContentContainer__SyllabusInsertContentContainer___wRDmF > .SyllabusInsertContentContainer__title___hXI5I > img.SyllabusInsertContentContainer__invert___JLRMN {
	filter: invert(100%);
}

.SyllabusInsertContentContainer__SyllabusInsertContentContainer___wRDmF > .SyllabusInsertContentContainer__wrapper___XXIII {
	padding: 4px 32px;
}

.SyllabusInsertContentContainer__SyllabusInsertContentContainer___wRDmF > .SyllabusInsertContentContainer__wrapper___XXIII > .SyllabusInsertContentContainer__filters___mHXUB {
}

.SyllabusInsertContentContainer__SyllabusInsertContentContainer___wRDmF > .SyllabusInsertContentContainer__wrapper___XXIII > .SyllabusInsertContentContainer__header___Z2CeZ {
	display: flex;
	border: 1px solid var(--theme-offset-bg);
}

.SyllabusInsertContentContainer__SyllabusInsertContentContainer___wRDmF > .SyllabusInsertContentContainer__wrapper___XXIII > .SyllabusInsertContentContainer__header___Z2CeZ > div {
	font-size: var(--small-text);
	font-weight: bold;
	text-transform: uppercase;
	text-align: left;
	padding: 4px 0;
}

.SyllabusInsertContentContainer__SyllabusInsertContentContainer___wRDmF > .SyllabusInsertContentContainer__wrapper___XXIII > .SyllabusInsertContentContainer__header___Z2CeZ > div > span {
	padding-left: 4px;
	font-size: var(--small-text);
}

.SyllabusInsertContentContainer__SyllabusInsertContentContainer___wRDmF > .SyllabusInsertContentContainer__wrapper___XXIII > .SyllabusInsertContentContainer__header___Z2CeZ > .SyllabusInsertContentContainer__checkbox___IWM0B {
	width: 24px;
}

.SyllabusInsertContentContainer__SyllabusInsertContentContainer___wRDmF > .SyllabusInsertContentContainer__wrapper___XXIII > .SyllabusInsertContentContainer__header___Z2CeZ > .SyllabusInsertContentContainer__setWidth___EhHoV {
	width: 128px;
	cursor: pointer;
}

.SyllabusInsertContentContainer__SyllabusInsertContentContainer___wRDmF > .SyllabusInsertContentContainer__wrapper___XXIII > .SyllabusInsertContentContainer__header___Z2CeZ > .SyllabusInsertContentContainer__flexWidth___B9A6j {
	flex: 1;
	cursor: pointer;
	padding-left: 4px;
}

.SyllabusInsertContentContainer__SyllabusInsertContentContainer___wRDmF > .SyllabusInsertContentContainer__wrapper___XXIII > .SyllabusInsertContentContainer__warning___vhB8z {
	background: #ffc20e;
	color: #000;
	font-size: var(--small-text);
	padding: 4px 8px;
	font-style: italic;
}

.SyllabusInsertContentContainer__loading___K2SIR {
	padding-top: 16px;
}

/*
 * Copyright (c) SEQTA Software (a division of EHG) 2018.
 *  
 * Created by Steven Laidlaw on 2018-01-24
 */

.SyllabusInsertContentHeader__SyllabusInsertContentHeader___KuREy {
	padding: 8px;
	color: #555;
	display: flex;
}

.SyllabusInsertContentHeader__SyllabusInsertContentHeader___KuREy > .uiButtonChecklist > button {
	flex: 1;
	margin: 0 8px 0 0;
}

.SyllabusInsertContentHeader__SyllabusInsertContentHeader___KuREy > input {
	flex: 3;
	border: 1px solid #ccc;
	padding: 4px;
	background-color: #fff;
	color: #999;
	cursor: text;
}

/*
 * Copyright (c) SEQTA Software (a division of EHG) 2018.
 *  
 * Created by Steven Laidlaw on 2018-01-24
 */

.SyllabusInsertContent__SyllabusInsertContent___xC6Cy {
	display: flex;
	border-left: 1px solid var(--theme-offset-bg);
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.SyllabusInsertContent__SyllabusInsertContent___xC6Cy:last-child {
	border-bottom: 1px solid var(--theme-offset-bg);
}

.SyllabusInsertContent__SyllabusInsertContent___xC6Cy:hover {
	background-color: var(--theme-offset-bg);
}

.SyllabusInsertContent__SyllabusInsertContent___xC6Cy.SyllabusInsertContent__selected___P5VRM,
.SyllabusInsertContent__SyllabusInsertContent___xC6Cy.SyllabusInsertContent__selected___P5VRM:hover {
	background: rgb(var(--theme-sel-bg-parts));
	background-image: linear-gradient(
		to top,
		rgba(var(--theme-sel-fg-parts), 0.1),
		rgba(var(--theme-sel-fg-parts), 0.1)
	);
	color: rgb(var(--theme-sel-fg-parts));
}

.SyllabusInsertContent__SyllabusInsertContent___xC6Cy > div {
	padding: 4px 0;
}

.SyllabusInsertContent__SyllabusInsertContent___xC6Cy > .SyllabusInsertContent__checkbox___Psu1z {
	width: 24px;
	text-align: center;
}

.SyllabusInsertContent__SyllabusInsertContent___xC6Cy > .SyllabusInsertContent__checkbox___Psu1z > input {
	padding: 4px;
	margin: 0;
}

.SyllabusInsertContent__SyllabusInsertContent___xC6Cy > .SyllabusInsertContent__year___xUsJX,
.SyllabusInsertContent__SyllabusInsertContent___xC6Cy > .SyllabusInsertContent__context___YmhjJ,
.SyllabusInsertContent__SyllabusInsertContent___xC6Cy > .SyllabusInsertContent__code___D4Vsf {
	width: 128px;
}

.SyllabusInsertContent__SyllabusInsertContent___xC6Cy > .SyllabusInsertContent__details___V6MhY {
	flex: 1;
	padding-left: 4px;
}

/*
 * Copyright (c) SEQTA Software (a division of EHG) 2018.
 *  
 * Created by Steven Laidlaw on 2018-01-24
 */

.SyllabusInsertFooter__SyllabusInsertFooter___so6HR {
	background: var(--theme-offset-bg);
	color: rgba(var(--theme-fg-parts), 0.5);
	padding: 4px;
	font-size: var(--small-text);
	text-transform: uppercase;
	display: flex;
	align-items: center;
}

.SyllabusInsertFooter__SyllabusInsertFooter___so6HR > span {
	flex: 1;
}

.SyllabusInsertFooter__SyllabusInsertFooter___so6HR > span > em {
	font-style: normal;
	font-weight: bold;
	color: rgb(var(--theme-fg-parts));
}

.SyllabusInsertFooter__SyllabusInsertFooter___so6HR > button.SyllabusInsertFooter__highlight___PsVuF {
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-04-04
 */

.SyllabusMigrateBulk__SyllabusMigrateBulk___i3LVu {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 5ex 0;
}

.SyllabusMigrateBulk__SyllabusMigrateBulk___i3LVu .SyllabusMigrateBulk__selected___xUt8x,
.SyllabusMigrateBulk__SyllabusMigrateBulk___i3LVu .SyllabusMigrateBulk__noCandidate___neiDS {
	display: flex;
	margin-top: 16px;
	align-items: center;
}

.SyllabusMigrateBulk__SyllabusMigrateBulk___i3LVu .SyllabusMigrateBulk__noCandidate___neiDS:first-child {
	margin-top: 0;
}

.SyllabusMigrateBulk__SyllabusMigrateBulk___i3LVu .SyllabusMigrateBulk__selected___xUt8x > span {
	margin: 0 1ex;
	font-weight: bold;
}

.SyllabusMigrateBulk__SyllabusMigrateBulk___i3LVu .SyllabusMigrateBulk__noCandidate___neiDS > span {
	padding: 0 1ex;
}

.SyllabusMigrateBulk__SyllabusMigrateBulk___i3LVu .SyllabusMigrateBulk__notify___bKcFa {
	cursor: pointer;
}

.SyllabusMigrateBulk__SyllabusMigrateBulk___i3LVu .SyllabusMigrateBulk__notify___bKcFa > input {
	margin: 10px;
}

.SyllabusMigrateBulk__SyllabusMigrateBulk___i3LVu .SyllabusMigrateBulk__noUndo___wJoWN {
	font-style: italic;
	color: var(--orange);
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-05-17
 */

.SyllabusStorefront__SyllabusStorefront___xQb3W {
	width: 100%;
	height: 100%;
	display: flex;
	background: var(--nav-level-three);
}

.SyllabusStorefront__SyllabusStorefront___xQb3W > .SyllabusStorefront__setContainer___pwKz8 {
	flex: 1;
	overflow: auto;
	padding: 8px;
	margin: 0;
}

.SyllabusStorefront__loading___AiR2g {
	padding-top: 64px;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-05-17
 */

.SyllabusStorefrontMenu__SyllabusStorefrontMenu___Djnuu {
	width: 200px;
	display: flex;
	flex-direction: column;
	border-right: 2px solid var(--theme-offset-bg);
}

.SyllabusStorefrontMenu__SyllabusStorefrontMenu___Djnuu > input {
	border: none;
	border-bottom: 1px solid var(--theme-offset-bg);
	padding: 8px;
	border-radius: 0;
	cursor: text;
}

.SyllabusStorefrontMenu__SyllabusStorefrontMenu___Djnuu > .SyllabusStorefrontMenu__details___wrLcg {
	border-bottom: 1px solid #ccc;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-05-17
 */

.SyllabusStorefrontFilter__SyllabusStorefrontFilter___qzP2m {
}

.SyllabusStorefrontFilter__SyllabusStorefrontFilter___qzP2m > .SyllabusStorefrontFilter__filterHeader___ZpNVN {
	display: flex;
	background: rgb(var(--theme-bg-parts));
	padding: 4px 8px;
	cursor: pointer;
	font-size: var(--small-text);
	text-transform: uppercase;
	align-items: center;
	font-weight: bold;
}

.SyllabusStorefrontFilter__SyllabusStorefrontFilter___qzP2m > .SyllabusStorefrontFilter__filterHeader___ZpNVN > .SyllabusStorefrontFilter__title___CNJn4 {
	flex: 1;
}

.SyllabusStorefrontFilter__SyllabusStorefrontFilter___qzP2m > .SyllabusStorefrontFilter__filterHeader___ZpNVN > button > svg {
	width: 16px;
	height: 16px;
}

.SyllabusStorefrontFilter__SyllabusStorefrontFilter___qzP2m > ul {
	list-style: none;
	padding: 8px;
	margin: 0;
}

.SyllabusStorefrontFilter__SyllabusStorefrontFilter___qzP2m > ul > li {
	margin: 0 0 8px;
}

.SyllabusStorefrontFilter__SyllabusStorefrontFilter___qzP2m > ul > li > .SyllabusStorefrontFilter__label___B10x6 {
	display: flex;
	align-items: center;
	margin: 0 0 8px;
	cursor: pointer;
}

.SyllabusStorefrontFilter__SyllabusStorefrontFilter___qzP2m > ul > li > .SyllabusStorefrontFilter__label___B10x6:last-child {
	margin-bottom: 0;
}

.SyllabusStorefrontFilter__SyllabusStorefrontFilter___qzP2m > ul > li > .SyllabusStorefrontFilter__label___B10x6 > input {
	margin: 0 8px 0 0;
}

.SyllabusStorefrontFilter__SyllabusStorefrontFilter___qzP2m > ul > li > .SyllabusStorefrontFilter__label___B10x6 > span {
	flex: 1;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-05-17
 */

.SyllabusStorefrontSet__SyllabusStorefrontSet___rkkwi {
	margin: 8px;
	width: 320px;
	display: inline-flex;
	flex-direction: column;
	border-radius: 4px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	position: relative;
	vertical-align: top;
	overflow: hidden;
	transition: all 0.5s;
}

.SyllabusStorefrontSet__SyllabusStorefrontSet___rkkwi > .SyllabusStorefrontSet__cover___KGGmN {
	position: relative;
	height: 240px;
	border-radius: 4px 4px 0 0;
	color: #fff;
}

.SyllabusStorefrontSet__SyllabusStorefrontSet___rkkwi > .SyllabusStorefrontSet__cover___KGGmN > .SyllabusStorefrontSet__background___asl62 {
	background-position: center;
	background-size: cover;
	position: absolute;
	top: -8px;
	right: -8px;
	bottom: -8px;
	left: -8px;
}

.SyllabusStorefrontSet__SyllabusStorefrontSet___rkkwi > .SyllabusStorefrontSet__cover___KGGmN > .SyllabusStorefrontSet__status____a44E {
	position: absolute;
	top: 0;
	left: 25%;
	right: 25%;
	border-radius: 0 0 4px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	text-transform: uppercase;
	font-size: var(--small-text);
	padding: 4px 16px;
	text-shadow: 0 1px rgba(0, 0, 0, 0.2);
	text-align: center;
	background: #999;
	z-index: 1;
}

.SyllabusStorefrontSet__SyllabusStorefrontSet___rkkwi > .SyllabusStorefrontSet__cover___KGGmN > .SyllabusStorefrontSet__info___y86v0 {
	padding: 8px 8px 32px;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	text-shadow: 0 1px rgba(0, 0, 0, 0.5);
	background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8) 32px);
}

.SyllabusStorefrontSet__SyllabusStorefrontSet___rkkwi > .SyllabusStorefrontSet__cover___KGGmN > .SyllabusStorefrontSet__info___y86v0 > h2 {
	margin: 0;
	padding: 0;
	font-size: var(--large-text);
	font-weight: normal;
	color: #fff;
}

.SyllabusStorefrontSet__SyllabusStorefrontSet___rkkwi > .SyllabusStorefrontSet__cover___KGGmN > .SyllabusStorefrontSet__info___y86v0 > p {
	margin: 0;
	font-size: var(--small-text);
}

.SyllabusStorefrontSet__SyllabusStorefrontSet___rkkwi > .SyllabusStorefrontSet__cover___KGGmN > .SyllabusStorefrontSet__info___y86v0 > p.SyllabusStorefrontSet__copyright___cjk4z {
}

.SyllabusStorefrontSet__SyllabusStorefrontSet___rkkwi > .SyllabusStorefrontSet__cover___KGGmN > .SyllabusStorefrontSet__info___y86v0 > .SyllabusStorefrontSet__basic___WOZpU > span {
	margin: 0 1ex 0 0;
}

.SyllabusStorefrontSet__SyllabusStorefrontSet___rkkwi > .SyllabusStorefrontSet__cover___KGGmN > .SyllabusStorefrontSet__info___y86v0 > .SyllabusStorefrontSet__basic___WOZpU > em {
	font-style: normal;
	font-weight: normal;
}

.SyllabusStorefrontSet__SyllabusStorefrontSet___rkkwi > .SyllabusStorefrontSet__actions____A3DF {
	position: absolute;
	top: calc(240px - 32px - 8px);
	right: 8px;
	display: flex;
	justify-content: flex-end;
}

.SyllabusStorefrontSet__SyllabusStorefrontSet___rkkwi > .SyllabusStorefrontSet__actions____A3DF > button {
	background: var(--theme-button-bg);
}

.SyllabusStorefrontSet__SyllabusStorefrontSet___rkkwi > .SyllabusStorefrontSet__actions____A3DF > button > svg {
	width: 16px;
}

.SyllabusStorefrontSet__SyllabusStorefrontSet___rkkwi > .SyllabusStorefrontSet__versions___wfmPe {
	background: rgb(var(--theme-bg-parts));
	z-index: 1;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-05-17
 */

.SyllabusStorefrontVersion__SyllabusStorefrontVersion___EyjrX {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--theme-offset-bg);
	padding: 4px;
	position: relative;
}

.SyllabusStorefrontVersion__SyllabusStorefrontVersion___EyjrX > .SyllabusStorefrontVersion__name___Abegq {
	flex: 1;
	padding: 4px;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by simon on 2018-07-23
 */

html {
	font-family: 'Roboto', sans-serif;
	font-size: 10pt;
	overflow: hidden;
	height: 100%;

	--background-colour: #1b315e;
	--background-image: none;

	background-color: var(--background-colour);
	background-image: var(--background-image);
	background-size: cover;
	background-position: center;

	transition: background-color 0.2s;

	/* Colours */
	--navy: #1b315e;
	--green: #8cc63e;
	--orange: #f36f21;
	--yellow: #ffc20e;
	--blue: #25b3fd;
	--red: #f44336;

	/* Theme colours */
	--theme-bg-parts: 255, 255, 255;
	--theme-bg-alt-parts: 200, 200, 200;
	--theme-fg-parts: 0, 0, 0;

	--theme-bg-warning-message: rgba(255, 255, 191, 0.8);

	--theme-button-bg: rgb(var(--theme-bg-parts));
	--theme-button-fg: rgb(var(--theme-fg-parts));
	--theme-button-border: rgba(var(--theme-fg-parts), 0.1);

	--theme-offset-bg: rgba(var(--theme-fg-parts), 0.1);
	--theme-offset-bg-more: rgba(var(--theme-fg-parts), 0.2);
	--theme-table-headers: rgb(var(--theme-bg-parts));

	--theme-sel-bg-parts: 27, 49, 95;
	--theme-sel-fg-parts: 255, 255, 255;

	--nav-level-zero: #1b315e;
	--nav-level-zero-fg: #fff;
	--nav-level-one: #2b417e;
	--nav-level-one-fg: #fff;
	--nav-level-two: #3b518e;
	--nav-level-two-fg: #fff;
	--nav-level-three: #eceef3;
	--nav-level-three-opaque: #eceef3;
	--nav-level-three-fg: #1b315e;

	--small-text: 0.8rem;
	--large-text: 1.5rem;
	--huge-text: 2rem;
}

@media (max-height: 800px), (max-width: 1400px) {
	html {
		font-size: 9pt;
		--small-text: 0.9rem;
		--huge-text: 1.5rem;
		--large-text: 1.2rem;
	}
}

/* document.documentElement.dataset.theme = document.documentElement.dataset.theme === 'light' ? 'dark' : 'light'; */
html[data-theme='dark'] {
	--theme-bg-parts: 10, 20, 40;
	--theme-bg-alt-parts: 12, 25, 50;
	--theme-fg-parts: 255, 255, 255;

	/* In dark mode, the border should be more opaque so it's visible */
	--theme-button-border: rgba(var(--theme-fg-parts), 0.5);

	--theme-bg-warning-message: rgb(45, 45, 0);

	--nav-level-zero: rgb(27, 49, 94);
	--nav-level-zero-fg: #fff;
	--nav-level-one: rgb(21, 39, 75);
	--nav-level-one-fg: #fff;
	--nav-level-two: rgb(16, 29, 56);
	--nav-level-two-fg: #fff;
	--nav-level-three: rgb(10, 19, 37);
	--nav-level-three-opaque: rgb(10, 19, 37);
	--nav-level-three-fg: #fff;
}

body {
	position: initial !important; /* Fix for Zendesk popup causing issues on iPad TA-10775 */
	align-items: stretch;
	color: rgb(var(--theme-fg-parts));
	padding: 0;
	margin: 0;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

body > #root {
	align-items: stretch;
	display: flex;
	flex: 1;
	overflow: hidden;
	position: relative; /* Z-index ignored if not pos:abs or rel in iOS Safari */
	height: 100vh;
}

h1,
h2,
h3,
h4 {
	font-size: 1rem;
}

textarea {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
}

button:focus {
	outline: 0;
}

.spacer {
	flex: 1;
}

.Chrome__Chrome___AyWT1 {
	align-items: stretch;
	display: flex;
	flex: 1;
	overflow: hidden;
	padding-right: 32px;
}

/*TODO These styles belong in the actual components (e.g. spine, sip etc)*/
.Chrome__Chrome___AyWT1 > main {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

/*TODO These styles belong in the actual components (e.g. spine, sip etc)*/
.Chrome__Chrome___AyWT1 > section {
	background: var(--orange);
}

.Chrome__Chrome___AyWT1 main > header {
	display: flex;
	align-items: center;
	background: var(--nav-level-one);
	color: var(--nav-level-one-fg);
	padding: 0 16px 0 20px;
	position: relative;
	height: 56px; /* Temp style */
}

.Chrome__Chrome___AyWT1 main > header > h1 {
	font-size: var(--huge-text);
}

.Chrome__Chrome___AyWT1 main > header a {
	color: inherit;
}

.Chrome__Chrome___AyWT1 main > header .Chrome__actionButton___vk0PF {
	width: 48px;
	height: 48px;
	color: var(--nav-level-one-fg);
	background: transparent;
	border: 0;
}

@media (max-height: 800px), (max-width: 1400px) {
	.Chrome__Chrome___AyWT1 main > header {
		height: 48px;
	}

	.Chrome__Chrome___AyWT1 main > header .Chrome__actionButton___vk0PF {
		width: 40px;
		height: 40px;
	}
}

.Chrome__Chrome___AyWT1 main .Chrome__content___Ey7Sh {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	color: rgb(var(--theme-fg-parts));
}

.Chrome__unknownPage___FOQZM,
.Chrome__pending___MSWEQ {
	background: rgba(var(--theme-bg-parts), 0.8);
}

.Chrome__pending___MSWEQ {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	width: 100%;
	height: 100%;
	color: rgb(var(--theme-fg-parts));
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-07-25
 */

.Spine__Spine___zYUJ6 {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 48px;
	position: relative;
	transition: width 200ms;
	background: var(--nav-level-zero);
	color: var(--nav-level-zero-fg);
	padding: 8px 0;
}

@media (max-width: 1366px) {
	/* nav is always collapsed at 1366px or below */
	.Spine__Spine___zYUJ6 {
		width: 32px;
	}
}

.Spine__Spine___zYUJ6.Spine__collapsed___TFNG7 {
	width: 32px;
}

.Spine__Spine___zYUJ6 a {
	background: transparent;
	border: none;
	box-shadow: none;
	border-radius: 0;
	color: inherit;
	transition: background 0.2s, color 0.2s;
}

.Spine__Spine___zYUJ6 > .Spine__spacer___gzJ7V {
	flex: 1;
}

.Spine__Spine___zYUJ6 > .Spine__q___vhZqf,
.Spine__Spine___zYUJ6 > .Spine__logout___oeVyd {
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	width: 100%;
	height: 48px;
	padding: 0;
}

.Spine__Spine___zYUJ6 > .Spine__q___vhZqf:hover,
.Spine__Spine___zYUJ6 > .Spine__logout___oeVyd:hover {
	background: transparent;
}

.Spine__Spine___zYUJ6 > .Spine__q___vhZqf > svg,
.Spine__Spine___zYUJ6 > .Spine__logout___oeVyd > svg {
	width: 16px;
}

.Spine__Spine___zYUJ6 > .Spine__workspace___p5Sul {
	cursor: pointer;
	padding: 16px 0;
	flex: 1;
	max-height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	box-sizing: initial;
	color: inherit;
	position: relative;
}

.Spine__Spine___zYUJ6 > .Spine__workspace___p5Sul::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 2px;
	opacity: 0.2;
	background: currentColor;
	transition: transform 0.2s, opacity 0.2s;
	transform-origin: center;
	transform: scaleY(0);
}

.Spine__Spine___zYUJ6 > .Spine__workspace___p5Sul:hover::after {
	transform: scaleY(0.5);
	opacity: 0.5;
}

.Spine__Spine___zYUJ6 > .Spine__workspace___p5Sul.Spine__active___yLSqc::after {
	transform: none;
	opacity: 1;
}

.Spine__Spine___zYUJ6 > a.Spine__workspace___p5Sul:hover,
.Spine__Spine___zYUJ6 > a.Spine__workspace___p5Sul.Spine__active___yLSqc {
	background: var(--nav-level-one);
}

.Spine__Spine___zYUJ6 > a.Spine__workspace___p5Sul.Spine__active___yLSqc {
	color: var(--nav-level-one-fg);
}

.Spine__Spine___zYUJ6 > a.Spine__workspace___p5Sul > svg {
	color: inherit;
	width: 24px;
}

.Spine__Spine___zYUJ6 > a.Spine__workspace___p5Sul.Spine__active___yLSqc > svg {
	opacity: 1;
}

.Spine__Spine___zYUJ6 > .Spine__help___ibEy2 {
	font: inherit;
	overflow: hidden;
	background: transparent;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: bold;
	font-size: var(--small-text);
	border-radius: 4px;
	transition: box-shadow 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	width: 100%;
	height: 48px;
	padding: 0;
	color: var(--nav-level-zero-fg);
}

.Spine__Spine___zYUJ6 > .Spine__help___ibEy2 > svg {
	width: 16px;
}

.Spine__Spine___zYUJ6 > .Spine__logout___oeVyd {
	color: var(--nav-level-zero-fg);
	background: transparent;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by simon on 2018-07-25
 */

.LegacyPage__LegacyPage___t2gIt {
	align-items: stretch;
	display: flex;
	flex: 1;
	flex-direction: column;
	margin: 0;
	padding: 0;
	cursor: default;
	text-rendering: optimizeLegibility;
	min-height: 0; /*workaround for Edge to get the scrollbar working*/
}

.LegacyPage__LegacyPage___t2gIt .LegacyPage__toolbar___xRVAN {
	display: flex;
	align-items: center;
}

.LegacyPage__LegacyPage___t2gIt .LegacyPage__body___IxT9e {
	display: flex;
	flex: 1;
	position: relative;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background: var(--nav-level-three);
	color: rgb(var(--theme-fg-parts));
}

.LegacyPage__LegacyPage___t2gIt .LegacyPage__body___IxT9e > .tabset {
	display: none;
}

.Viewer__Viewer___v_Oz4 {
	flex: 1;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	background: var(--nav-level-three);
}

.Viewer__organisation___IEhgZ {
	display: flex;
	align-items: stretch;
	width: 512px;
}

.Viewer__sidebar___C7MXP {
	width: 192px;
	flex-shrink: 0;
	border-right: 1px solid var(--theme-offset-bg);
	background: var(--theme-offset-bg);
	display: flex;
	flex-direction: column;
}

.Viewer__sidebar___C7MXP > header {
	padding: 8px;
	display: flex;
	flex-direction: column;
	font-size: var(--small-text);
	background: var(--nav-level-two);
	color: var(--nav-level-two-fg);
}

.Viewer__newMessage___qIP6H {
	min-height: 42px;
}

@media (max-width: 1200px) {
	.Viewer__organisation___IEhgZ {
		flex-direction: column;
		max-width: 384px;
	}

	.Viewer__sidebar___C7MXP {
		width: auto;
	}
}

@media (max-width: 1000px) {
	.Viewer__Viewer___v_Oz4 {
		flex-direction: column;
	}

	.Viewer__organisation___IEhgZ {
		max-width: none;
		height: 50%;
		width: auto;
	}
}

.LabelList__LabelList___mf4Xm {
	list-style: none;
	padding: 0 !important; /* Fighting with coneqt styling */
	margin: 0 0 4px 0;
	color: var(--nav-level-three-fg);
	flex: 1;
	overflow: auto;
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
}

.LabelList__LabelList___mf4Xm > li {
	padding: 8px;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.LabelList__LabelList___mf4Xm > li:hover {
	background: var(--theme-offset-bg);
}

.LabelList__LabelList___mf4Xm > li.LabelList__selected___XkknV {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.LabelList__LabelList___mf4Xm > li .LabelList__name___ZEYy3 {
	flex: 1;
}

.LabelList__LabelList___mf4Xm > li .LabelList__unread___C8TRo {
	font-weight: bold;
	font-size: var(--small-text);
}

.LabelList__LabelMaker___Uz0Kr {
	display: flex;
	padding: 8px;
}

.LabelList__LabelMaker___Uz0Kr button:only-child {
	font-size: var(--small-text);
	flex: 1;
}

.LabelList__LabelMaker___Uz0Kr label {
	flex: 1;
	margin: 0 8px 0 0;
}

.LabelList__LabelMaker___Uz0Kr input {
	border: none;
}

.LabelList__LabelMakerError___vBydo {
	margin: 0 8px;
	color: var(--red);
}

@media (max-width: 1000px) {
	.LabelList__LabelList___mf4Xm {
		display: flex;
		flex-wrap: wrap;
	}

	.LabelList__LabelList___mf4Xm > li {
		border-radius: 4px;
		margin: 4px 0 0 4px;
		flex: 1;
		max-width: 10em;
	}

	.LabelList__LabelList___mf4Xm > li .LabelList__name___ZEYy3 {
		text-align: center;
	}
}

.MessageList__MessageList___r3jbD {
	border-right: 1px solid var(--theme-offset-bg);
	display: flex;
	flex-direction: column;
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	flex: 1;
	overflow: hidden;
	background: rgb(var(--theme-bg-parts));
}

.MessageList__MessageList___r3jbD > header {
	padding: 8px;
	border-bottom: 1px solid var(--theme-offset-bg);
}

.MessageList__MessageList___r3jbD > header label {
	padding: 0;
}

.MessageList__MessageList___r3jbD > footer {
	padding: 8px;
	border-top: 1px solid var(--theme-offset-bg);
	display: flex;
	font-size: var(--small-text);
}

.MessageList__MessageList___r3jbD > footer .MessageList__sortKey___rTIIj {
	flex: 1;
}

.MessageList__MessageList___r3jbD > footer .MessageList__sortOrder___Wbg0K {
	margin: 0 0 0 8px;
}

.MessageList__MessageList___r3jbD > ol {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
	overflow: auto;
}

.MessageList__MessageList___r3jbD > ol.MessageList__empty___o2XV2 {
	display: flex;
}

.MessageList__MessageList___r3jbD > ol > li {
	border-bottom: 1px solid var(--theme-offset-bg);
	padding: 8px;
	display: flex;
	cursor: pointer;
	overflow: hidden;
}

.MessageList__MessageList___r3jbD > ol > li:hover {
	background: var(--theme-offset-bg);
}

.MessageList__MessageList___r3jbD > ol > li.MessageList__read___D98fb {
	font-weight: initial;
}

.MessageList__MessageList___r3jbD > ol > li.MessageList__selected___Dh1vF {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
	font-weight: bold;
}

.MessageList__MessageList___r3jbD > ol > li.MessageList__unread___BHkD0 {
	font-weight: bold;
	box-shadow: inset 4px 0 rgb(var(--theme-fg-parts));
}

.MessageList__MessageList___r3jbD > ol > li.MessageList__selected___Dh1vF.MessageList__unread___BHkD0 {
	box-shadow: inset 4px 0 rgb(var(--theme-sel-fg-parts));
}

.MessageList__MessageList___r3jbD > ol > li .MessageList__avatar___Ja5FO {
	width: 32px;
	height: 32px;
	margin: 0 8px 0 0;
}

.MessageList__MessageList___r3jbD > ol > li .MessageList__primary___qEy2j {
	flex: 1;
	overflow: hidden;
}

.MessageList__MessageList___r3jbD > ol > li .MessageList__subject___FtmdL {
	margin: 0 0 8px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	max-height: 2.2em;
	display: block;
	line-clamp: 2;
}

.MessageList__MessageList___r3jbD > ol > li.MessageList__starred___CbKex .MessageList__subject___FtmdL {
	font-weight: bold;
}

.MessageList__MessageList___r3jbD > ol > li .MessageList__sender___gKlPp,
.MessageList__MessageList___r3jbD > ol > li .MessageList__recipients___djUGZ {
	font-size: var(--small-text);
	text-transform: uppercase;
	display: flex;
}

.MessageList__MessageList___r3jbD > ol > li .MessageList__label___gOxeY {
	opacity: 0.5;
}

.MessageList__MessageList___r3jbD > ol > li .MessageList__value___kP5Pe {
	margin: 0 0 0 1ex;
}

.MessageList__MessageList___r3jbD > ol > li .MessageList__secondary___WzsPD {
	font-size: var(--small-text);
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
}

.MessageList__MessageList___r3jbD > ol > li .MessageList__flags___Yk87J {
	text-align: right;
	flex: 1;
}

.MessageList__MessageList___r3jbD > ol > li .MessageList__flags___Yk87J > svg {
	width: 16px;
	height: 16px;
}

.MessageList__MessageList___r3jbD > ol > li .MessageList__date___w9xYo {
}

.MessageList__MessageList___r3jbD > ol > button {
	margin: 8px auto;
	font-size: var(--small-text);
}

.ReadingPane__ReadingPane___ebtPW {
	flex: 1;
	overflow: auto;
}

.Message__Message___Aqpql {
	margin: 16px;
	background: rgb(var(--theme-bg-parts));
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	border-radius: 4px;
	overflow: hidden;
}

.Message__Message___Aqpql.Message__loading___fYMlZ {
}

.Message__Message___Aqpql.Message__starred___hDwzZ {
}

.Message__Message___Aqpql.Message__unread___oRB0_ {
}

.Message__Message___Aqpql > header {
	border-bottom: 1px solid var(--theme-offset-bg);
	display: flex;
	padding: 16px;
	flex-wrap: wrap;
}

.Message__Message___Aqpql.Message__unread___oRB0_ > header {
	box-shadow: inset 4px 0 rgb(var(--theme-sel-bg-parts));
}

.Message__Message___Aqpql > header > .Message__avatar___ArL_S {
	margin: 0 16px 0 0;
	width: 64px;
	height: 64px;
}

.Message__Message___Aqpql > header > .Message__meta___ikuGU {
	flex: 1;
}

.Message__Message___Aqpql > header .Message__subject___tj04l {
	font-weight: bold;
	font-size: var(--large-text);
}

.Message__Message___Aqpql > header .Message__date___tPPGy {
	margin: 8px 0;
	font-size: var(--small-text);
	opacity: 0.5;
}

.Message__Message___Aqpql > header .Message__sender___eYRbr {
}

.Message__Message___Aqpql > header .Message__blind___Iy4RR {
	font-size: var(--small-text);
	opacity: 0.5;
	font-weight: bold;
	text-transform: uppercase;
	margin: 8px 0 0;
}

.Message__Message___Aqpql > header .Message__actions___XNRhe {
	display: flex;
	align-content: flex-start;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.Message__Message___Aqpql > header .Message__actions___XNRhe > button,
.Message__Message___Aqpql > header .Message__actions___XNRhe .Message__more___TJEQv {
	margin-left: 8px;
}

.Message__Message___Aqpql > header .Message__actions___XNRhe > button svg {
	width: 16px;
	height: 16px;
}

.Message__Message___Aqpql > .Message__recipients___E_oQd {
	list-style: none;
	margin: 0;
	padding: 16px 16px 8px;
	display: flex;
	border-bottom: 1px solid var(--theme-offset-bg);
	flex-wrap: wrap;
	max-height: 20vh;
	overflow: auto;
}

.Message__Message___Aqpql > .Message__recipients___E_oQd .Message__expander___Hn60J {
	padding: 4px 16px;
	font-size: var(--small-text);
	margin: 0 16px 8px 0;
}

.Message__Message___Aqpql > .Message__recipients___E_oQd.Message__expanded___tyus4 {
}

.Message__Message___Aqpql > .Message__recipients___E_oQd > li {
	margin: 0 16px 8px 0;
	--colour: rgb(var(--theme-sel-bg-parts));
	display: flex;
	align-items: center;
}

.Message__Message___Aqpql > .Message__recipients___E_oQd > li.Message__read___QiBJS {
	opacity: 0.5;
}

.Message__Message___Aqpql > .Message__recipients___E_oQd > li.Message__staff___Zr3wu {
	--colour: #00aeef;
}

.Message__Message___Aqpql > .Message__recipients___E_oQd > li.Message__student___BHMRw {
	--colour: #4db848;
}

.Message__Message___Aqpql > .Message__recipients___E_oQd > li.Message__contact___I1jY_ {
	--colour: #f36f21;
}

.Message__Message___Aqpql > .Message__recipients___E_oQd > li.Message__tutor___yV5bu {
	--colour: #7b5aa6;
}

.Message__Message___Aqpql > .Message__recipients___E_oQd > li::before {
	content: '';
	width: 1em;
	height: 1em;
	margin: 0 1ex 0 0;
	background: var(--colour);
	border-radius: 100%;
	flex-shrink: 0;
}

.Message__Message___Aqpql > .Message__recipients___E_oQd .Message__name___FxGAl {
	white-space: nowrap;
	flex-shrink: 0;
}

.Message__Message___Aqpql > .Message__recipients___E_oQd .Message__name___FxGAl + svg {
	width: 1em;
	height: 1em;
	margin: 0 0 0 0.5ex;
	flex-shrink: 0;
}

.Message__Message___Aqpql > .uiFrameWrapper .iframeWrapper {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	background: #fff;
}

.Message__Message___Aqpql > .uiFrameWrapper .iframeWrapper > .body {
	display: block;
	box-sizing: border-box;
	background: rgba(var(--theme-bg-parts), 0.5);
}

.Message__Message___Aqpql .Message__files___bUjJU {
}

.MessageActions__MessageActions___POVnv {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.MessageActions__MessageActions___POVnv .MessageActions__count___F_ccM {
	text-transform: uppercase;
	font-weight: bold;
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
	padding: 8px 16px;
}

.MessageActions__MessageActions___POVnv .MessageActions__actions___fdMtm {
}

.MessageActions__MessageActions___POVnv .MessageActions__actions___fdMtm .MessageActions__primary___w0Xrx,
.MessageActions__MessageActions___POVnv .MessageActions__actions___fdMtm .MessageActions__secondary___N_CFQ {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--small-text);
	margin: 16px 0;
}

.MessageActions__MessageActions___POVnv .MessageActions__actions___fdMtm button {
	margin: 0 4px;
}

.MessageActions__MessageActions___POVnv .MessageActions__actions___fdMtm .MessageActions__secondary___N_CFQ button {
	padding: 8px 12px;
}

.MessageActions__MessageActions___POVnv .MessageActions__actions___fdMtm button svg {
	width: 16px;
	height: 16px;
}

.AssessmentManager__AssessmentManager___F_zDS {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.AssessmentManager__AssessmentManager___F_zDS .AssessmentManager__container___SNwet {
	overflow: auto;
	background: var(--nav-level-three);
}

.AssessmentManager__AssessmentManager___F_zDS .AssessmentManager__main___jtnog {
	--gap-size: 32px;
	flex: 1;
	display: grid;
	grid-template-columns: calc(50% - (var(--gap-size) / 2)) calc(
			50% - (var(--gap-size) / 2)
		);
	grid-gap: var(--gap-size);
	padding: var(--gap-size);
	align-items: start;
	max-width: 1000px;
	margin: auto;
}

@media (max-width: 1600px) {
	.AssessmentManager__AssessmentManager___F_zDS .AssessmentManager__main___jtnog {
		grid-template-columns: 100%;
	}
}

@media (max-width: 1200px) {
	.AssessmentManager__AssessmentManager___F_zDS .AssessmentManager__main___jtnog {
		--gap-size: 16px;
	}
}

@media (max-width: 1000px) {
	.AssessmentManager__AssessmentManager___F_zDS .AssessmentManager__main___jtnog {
		--gap-size: 8px;
	}
}

.AssessmentManager__AssessmentManager___F_zDS .AssessmentManager__main___jtnog > div {
	margin: 0;
}

.AssessmentManager__AssessmentManager___F_zDS .AssessmentManager__empty___YeOBh {
	background: var(--nav-level-three);
}

/**
 *
 * common styles used by assessment manager's blocks
 *
 */

.AssessmentManager__AssessmentManager___F_zDS .AssessmentManager__Block___B0WtW ol > li > label {
	width: 100%;
}

.AssessmentManager__AssessmentManager___F_zDS .AssessmentManager__Block___B0WtW ol > li > label > div:first-child {
	font-size: var(--small-text);
	width: 120px;
}

.AssessmentManager__AssessmentManager___F_zDS .AssessmentManager__readOnly___JmDrU {
	opacity: 0.5;
}

.AssessmentManager__noProgramme___mXjWr {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--nav-level-three);
}

.AssessmentManager__AssessmentManager___F_zDS .AssessmentManager__Block___B0WtW ol > li > .AssessmentManager__item___aGPdl {
	width: 100%;
}

.AssessmentManager__spanTwoColumns___ITyGi {
	grid-column: span 2;
}

@media (max-width: 1600px) {
	.AssessmentManager__spanTwoColumns___ITyGi {
		grid-column: span 1;
	}
}

.AssessmentManager__spacer___mOom_ {
	flex: 1;
}

.AssessableCriteria__smallGap___pDw7L {
	margin-left: 8px;
}

.AssessableCriteria__helpHeader___Sub0T {
	margin: 0 0 1ex;
	text-transform: uppercase;
	border-bottom: 1px solid var(--theme-offset-bg-more);
}

.AssessableCriteria__criterion___T2L7k:nth-child(4n) {
	border-bottom-width: 4px;
}

.AssessableCriteria__criterion___T2L7k > .AssessableCriteria__flexedOutcome___fe9vS button {
	text-align: left;
}

.AssessableCriteria__flexed___mqqwa {
	flex: 1;
}

.AssessableCriteria__flexedOutcome___fe9vS {
	flex: 7;
}

.AssessableCriteria__button___RTf2j {
	padding: 8px 12px;
	flex: 1;
}

.AssessableCriteria__checkbox___mrfhN {
	flex: none;
	margin-left: 8px;
}

label.AssessableCriteria__flexed___mqqwa.AssessableCriteria__smallGap___pDw7L.AssessableCriteria__typeLength___Z1x1a > div:first-child {
	width: 40px;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by huili on 2018-12-27
 */

.RubricEditor__RubricEditor___fi6Pn {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	height: 100%;
	width: 100%;
	position: relative;
}

.RubricEditor__RubricEditor___fi6Pn > .RubricEditor__toolbar___D9dEi {
	display: flex;
	flex-wrap: wrap;
	background: rgba(var(--theme-fg-parts), 0.1);
	position: relative;
	padding: 8px;
	align-items: center;
	font-size: var(--small-text);
}

.RubricEditor__RubricEditor___fi6Pn > .RubricEditor__toolbar___D9dEi .RubricEditor__rubricMode___HMdGt {
	margin: 0 32px 0 0;
}

.RubricEditor__RubricEditor___fi6Pn > .RubricEditor__toolbar___D9dEi .RubricEditor__rubricStructure___YduaA {
	margin: 0 8px 0 0;
}

.RubricEditor__RubricEditor___fi6Pn > .RubricEditor__toolbar___D9dEi .RubricEditor__structureHelp___slyEF {
	margin: 0 32px 0 0;
	color: rgba(var(--theme-fg-parts), 0.5);
}

.RubricEditor__RubricEditor___fi6Pn > .RubricEditor__toolbar___D9dEi .RubricEditor__publish___VjUSj {
	padding: 8px 24px;
}

.RubricEditor__RubricEditor___fi6Pn .RubricEditor__dropArea___DxEy0 {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	flex: 1;
	position: relative;
	min-height: 0;
}

.RubricEditor__RubricEditor___fi6Pn .RubricEditor__addLine___snutH {
	margin: 16px;
}

.RubricPublishPanel__PublishPanel___qlUDX {
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	width: 480px;
	position: absolute;
	background: rgb(var(--theme-bg-parts));
	color: rgb(var(--theme-fg-parts));
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
	z-index: 2;
	margin: 4px -240px;
	overflow: auto;
	max-height: 65vh;
}

.RubricPublishPanel__PublishPanel___qlUDX::before {
	content: '';
	border: 12px solid transparent;
	border-color: rgba(var(--theme-bg-parts), 0);
	border-bottom-color: rgb(var(--theme-bg-parts));
	top: -24px;
	display: block;
	position: absolute;
	left: 50%;
	margin: 0 0 0 -12px;
}

.RubricPublishPanel__PublishPanel___qlUDX.RubricPublishPanel__closed___SVDZQ {
	display: none;
}

.RubricPublishPanel__PublishPanel___qlUDX .RubricPublishPanel__title___Ax1Kp,
.RubricPublishPanel__PublishPanel___qlUDX .RubricPublishPanel__departments___dHCK0,
.RubricPublishPanel__PublishPanel___qlUDX .RubricPublishPanel__years___tGaL9,
.RubricPublishPanel__PublishPanel___qlUDX .RubricPublishPanel__isPublic___VCvt4,
.RubricPublishPanel__PublishPanel___qlUDX .RubricPublishPanel__tags___eWIap,
.RubricPublishPanel__PublishPanel___qlUDX .RubricPublishPanel__syllabus___sf26e {
	display: flex;
	padding: 8px;
	flex: 1;
	border-bottom: 1px solid var(--theme-offset-bg);
	font-size: var(--small-text);
}

.RubricPublishPanel__PublishPanel___qlUDX label {
	min-width: 8em;
}

.RubricPublishPanel__PublishPanel___qlUDX .RubricPublishPanel__publish___Q4c4h {
	margin: 8px;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by huili on 2019-01-16
 */

.RubricEditorTable__RubricEditorTable___cD2ae {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
	width: 100%;
}

.RubricEditorTable__RubricEditorTable___cD2ae > .RubricEditorTable__body___vINBR {
	flex: 1;
	overflow: auto;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.RubricEditorTable__row___TdA4T {
	display: flex;
	align-items: stretch;
	margin: 16px 0;
	padding: 0;
	counter-increment: rubric-line;
	border: 1px solid var(--theme-offset-bg);
	border-radius: 0 2px 2px 0;
	position: relative;
}

.RubricEditorTable__cells___lvS5i {
	list-style-type: none;
	padding: 0;
	margin: 0;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: stretch;
	overflow: auto;
	flex: 1;
}

.RubricEditorTable__cells___lvS5i > .RubricEditorTable__cell___YzcUx {
	display: flex;
	flex: 1;
	padding: 8px;
	margin: 0;
	min-width: 12rem;
	border-right: 1px solid var(--theme-offset-bg);
	pointer-events: all;
}

.RubricEditorTable__cells___lvS5i > .RubricEditorTable__cell___YzcUx:last-of-type {
	border-right: 0;
}

.RubricEditorTable__body___vINBR > ol {
	list-style: none;
	padding: 0;
	margin: 0;
	overflow: visible;
}

.RubricEditorTable__body___vINBR .RubricEditorTable__row___TdA4T {
	height: 10rem;
}

.RubricEditorTable__body___vINBR .RubricEditorTable__row___TdA4T.RubricEditorTable__larger___lRGc8 {
	height: 14rem;
}

.RubricEditorTable__body___vINBR > ol:first-child > .RubricEditorTable__row___TdA4T {
	margin-left: 24px;
	border-radius: 2px 0 0 2px;
}

.RubricEditorTable__body___vINBR > ol:nth-child(2) > .RubricEditorTable__row___TdA4T {
	border-left: 0;
	border-right: 0;
	border-radius: 0;
}

.RubricEditorTable__body___vINBR > ol:last-child > .RubricEditorTable__row___TdA4T {
	margin-right: 24px;
}

.RubricEditorTable__lines___ETIJ2 {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: rubric-line;
	pointer-events: all;
}

.RubricEditorTable__lines___ETIJ2 > .RubricEditorTable__row___TdA4T::before,
.RubricEditorTable__linesAction___cOTpz > .RubricEditorTable__row___TdA4T .RubricEditorTable__removeLine___J2Bxs,
.RubricEditorTable__header___jU8_o > .RubricEditorTable__row___TdA4T .RubricEditorTable__addDescriptor___ulzsx {
	--size: 32px;
	content: counter(rubric-line);
	width: var(--size);
	height: var(--size);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--theme-offset-bg);
	background: rgb(var(--theme-bg-parts));
	border-radius: var(--size);
	font-size: var(--small-text);
	font-weight: bold;
	flex-shrink: 0;
	margin: 0 calc(0px - var(--size) / 2);
	z-index: 1;
	align-self: center;
}

.RubricEditorTable__addDescriptor___ulzsx {
	border: none;
}

.RubricEditorTable__Line___EnWhJ {
	width: 12rem;
	display: flex;
	flex-direction: column;
	padding: 0 0 0 16px;
	background: rgba(var(--theme-fg-parts), 0.05);
}

.RubricEditorTable__Line___EnWhJ > .RubricEditorTable__title___AOQIg {
	flex: initial;
	font-size: var(--large-text);
}

.RubricEditorTable__Line___EnWhJ .RubricEditorTable__title___AOQIg input,
.RubricEditorTable__Line___EnWhJ .RubricEditorTable__description___xoA7S {
	border: none;
	background: none;
	text-overflow: ellipsis;
}

.RubricEditorTable__Line___EnWhJ > label:nth-of-type(2) {
	flex: 1;
}

.RubricEditorTable__Line___EnWhJ > label:nth-of-type(2) > textarea {
	padding: 8px 8px 0 8px;
}

.RubricEditorTable__descriptors___VhQOd {
	flex: 1;
	min-width: 0;
	position: relative;
}

.RubricEditorTable__Descriptor___U5mKw {
	flex-direction: column;
	position: relative;
}

.RubricEditorTable__Descriptor___U5mKw > .RubricEditorTable__description___xoA7S {
	display: flex;
	flex: 1;
	margin-right: 24px;
}

.RubricEditorTable__Descriptor___U5mKw > .RubricEditorTable__description___xoA7S .RubricEditorTable__content___HwpGi {
	flex: 1;
	border: none;
	padding: 0;
}

.RubricEditorTable__Descriptor___U5mKw > label > .RubricEditorTable__menu___RILEj {
	width: 100%;
}

.RubricEditorTable__Descriptor___U5mKw > .RubricEditorTable__removeDescriptor___HzjOz {
	--size: 24px;
	padding: 0;
	width: var(--size);
	height: var(--size);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: absolute;
	top: 4px;
	right: 4px;
	z-index: 1;
}

.RubricEditorTable__RubricEditorTable___cD2ae > .RubricEditorTable__header___jU8_o {
	margin-left: calc(12rem + 42px);
	margin-right: calc(24px + (var(--scroll-width)));
}

.RubricEditorTable__RubricEditorTable___cD2ae > .RubricEditorTable__header___jU8_o > .RubricEditorTable__row___TdA4T .RubricEditorTable__cells___lvS5i {
	overflow: hidden;
}

.RubricEditorTable__RubricEditorTable___cD2ae > .RubricEditorTable__header___jU8_o > .RubricEditorTable__row___TdA4T .RubricEditorTable__cell___YzcUx {
	justify-content: center;
}

.RubricEditorTable__RubricEditorTable___cD2ae > .RubricEditorTable__header___jU8_o + .RubricEditorTable__body___vINBR {
	position: relative;
	overflow: scroll;
	overflow-x: hidden;
}

.RubricEditorTable__RubricEditorTable___cD2ae > .RubricEditorTable__header___jU8_o + .RubricEditorTable__body___vINBR .RubricEditorTable__row___TdA4T:first-child {
	margin-top: 0;
}

.RubricEditorTable__RubricEditorTable___cD2ae > .RubricEditorTable__header___jU8_o + .RubricEditorTable__body___vINBR .RubricEditorTable__descriptors___VhQOd {
	position: absolute;
	left: calc(12rem + 44px);
	right: 26px;
	top: 0;
	height: 100%;
	overflow-y: hidden;
	overflow-x: auto;
}

.RubricEditorTable__RubricEditorTable___cD2ae > .RubricEditorTable__header___jU8_o + .RubricEditorTable__body___vINBR .RubricEditorTable__descriptors___VhQOd .RubricEditorTable__cells___lvS5i {
	position: absolute;
	overflow: visible;
}

.RubricEditorTable__deleted___TSQo_ {
	opacity: 0.25;
}

/**
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2018.
 *
 * Created by Arie on 2018-12-11
 */

.RubricLibrary__RubricLibrary___f8Dlt {
	position: absolute;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.RubricLibrary__RubricLibrary___f8Dlt > header {
	position: relative;
}

.RubricLibrary__RubricLibrary___f8Dlt > main {
	overflow: auto;
	display: flex;
	flex: 1;
	background-image: url("data:image/svg+xml,%3Csvg width=%276%27 height=%276%27 viewBox=%270 0 6 6%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27%23000000%27 fill-opacity=%270.05%27 fill-rule=%27evenodd%27%3E%3Cpath d=%27M5 0h1L0 6V5zM6 5v1H5z%27/%3E%3C/g%3E%3C/svg%3E");
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by huili on 2019-01-02
 */

.RubricLibrary-filters__LibraryFilters___mdGly {
	border-bottom: 1px solid var(--theme-offset-bg);
}

.RubricLibrary-filters__LibraryFilters___mdGly > .RubricLibrary-filters__group___V0ufS {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 8px 4px;
}

.RubricLibrary-filters__LibraryFilters___mdGly .RubricLibrary-filters__department___XhkR1,
.RubricLibrary-filters__LibraryFilters___mdGly .RubricLibrary-filters__schoolyear___wUO6O,
.RubricLibrary-filters__LibraryFilters___mdGly .RubricLibrary-filters__staff___OMtv5 {
	flex: 1;
	margin: 0 4px;
	font-size: var(--small-text);
}

.RubricLibrary-filters__LibraryFilters___mdGly .RubricLibrary-filters__favourite___YN_Jd,
.RubricLibrary-filters__LibraryFilters___mdGly .RubricLibrary-filters__official___el62E {
	margin: 0 4px;
	font-size: var(--small-text);
}

.RubricLibrary-filters__LibraryFilters___mdGly .RubricLibrary-filters__search___HEOLv {
	margin: 0 4px;
	flex: 1;
}

.RubricLibrary-filters__LibraryFilters___mdGly .RubricLibrary-filters__tags___ceeOP,
.RubricLibrary-filters__LibraryFilters___mdGly .RubricLibrary-filters__syllabus___amJF9 {
	padding: 0 0 0 8px;
	border-top: 1px solid var(--theme-offset-bg);
}

/**
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2018.
 *
 * Created by Arie on 2018-12-11
 */

.RubricLibrary-list__RubricLibraryList___wjvEx > ol {
	list-style: none;
	padding: 0;
	margin: 0;
	overflow: auto;
	flex: 1;
}

.RubricLibrary-list__fragment___I4U9r {
	position: relative;
	cursor: pointer;
	margin: 32px 24px;
	border-radius: 4px;
	transition: box-shadow 0.2s;
	will-change: box-shadow;
	background: rgb(var(--theme-bg-parts));
}

.RubricLibrary-list__fragment___I4U9r:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.RubricLibrary-list__fragment___I4U9r .RubricLibrary-list__add___iUQej {
	position: absolute;
	top: calc(50% - 8px);
	z-index: 1;
	color: var(--theme-button-fg);
	background: var(--theme-button-bg);
	left: -16px;
}

.RubricLibrary-list__fragment___I4U9r .RubricLibrary-list__fave___X1BgW {
	position: absolute;
	top: calc(50% - 8px);
	z-index: 1;
	color: var(--theme-button-fg);
	background: var(--theme-button-bg);
	right: -16px;
}

.RubricLibrary-list__fragment___I4U9r .RubricLibrary-list__fave___X1BgW.RubricLibrary-list__active___XrZGu {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
	border: none;
}

.RubricLibrary-list__fragment___I4U9r .RubricLibrary-list__remove___fWXRP svg {
	width: 16px;
	height: 16px;
}

.RubricLibrary-list__fragment___I4U9r > .RubricLibrary-list__header___FHWtd {
	border: 1px solid var(--theme-offset-bg-more);
	border-bottom: none;
	display: flex;
	padding: 4px 8px;
	align-items: center;
	border-radius: 4px 4px 0 0;
}

.RubricLibrary-list__fragment___I4U9r > .RubricLibrary-list__header___FHWtd .RubricLibrary-list__mode___v6k9b {
	margin: 0 8px 0 0;
	opacity: 0.5;
}

.RubricLibrary-list__fragment___I4U9r > .RubricLibrary-list__header___FHWtd > .RubricLibrary-list__title___YWW6g {
	flex: 1;
	text-overflow: ellipsis;
	overflow: hidden;
	margin: 0;
}

.RubricLibrary-list__fragment___I4U9r > .RubricLibrary-list__header___FHWtd > .RubricLibrary-list__author___bYTgA {
	text-align: right;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 50%;
	padding: 0 8px;
	opacity: 0.5;
	font-size: var(--small-text);
	text-transform: uppercase;
}

.RubricLibrary-list__fragment___I4U9r > .RubricLibrary-list__header___FHWtd > .RubricLibrary-list__author___bYTgA.RubricLibrary-list__owner___jy3UW {
	opacity: 1;
}

.RubricLibrary-list__fragment___I4U9r > .RubricLibrary-list__rubric___Wo576 {
}

.RubricLibrary-list__fragment___I4U9r > .RubricLibrary-list__tags___cdofg {
	border-radius: 0 0 4px 4px;
	border: 1px solid var(--theme-offset-bg-more);
	border-top: none;
}

/**
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2018.
 *
 * Created by Arie on 2019-02-04
 */

.Availability__Availability___hn4C7 {
}

.Availability__Availability___hn4C7 .Availability__metaclass___pXK7W {
	display: inline-flex;
	width: 100%;
}

.Availability__Availability___hn4C7 .Availability__metaclass___pXK7W > .Availability__label___T42I1 {
	flex-shrink: 0;
	width: auto;
}

.Availability__Availability___hn4C7 .Availability__metaclass___pXK7W > .Availability__slider___XgT7q {
	flex-grow: 1;
}

.Availability__Availability___hn4C7 .Availability__metaclass___pXK7W > .Availability__dateSelector___GiUfH {
	width: 120px;
	flex-shrink: 0;
}

.Availability__Availability___hn4C7 .Availability__metaclass___pXK7W > .Availability__slider___XgT7q.Availability__orangeSlider___VW2JD {
	--container-accent: orange;
}

.Availability__Availability___hn4C7 .Availability__metaclass___pXK7W > .Availability__currentClass___SW5C6 > div:first-child,
.Availability__Availability___hn4C7 .Availability__metaclass___pXK7W > .Availability__currentClass___SW5C6 > div:last-child {
	color: var(--orange);
}

.Availability__Availability___hn4C7 .Availability__noClasses___g5Cij {
	padding: 16px;
	font-style: italic;
	opacity: 0.5;
}

.Availability__MarksbookAvailability___zKYi9 {
	margin: 2px 0;
	background: rgb(var(--theme-bg-parts));
	max-width: 800px;
	max-height: 350px;
}

.Availability__AvailabilityInPortal___qNZKM {
}

.Availability__AvailabilityInPortal___qNZKM > .Availability__configure___SNlvc {
	position: absolute;
	right: 4px;
	top: 4px;
	opacity: 0.5;
	margin: 0;
	border: 1px solid rgb(var(--theme-bg-parts));
	color: rgb(var(--theme-bg-parts));
	background: none;
	height: 24px;
	width: 32px;
	border-radius: 32px;
	padding: 0;
}

.Availability__AvailabilityInPortal___qNZKM > .Availability__configure___SNlvc.Availability__depressed___JPllJ {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
	border-color: rgb(var(--theme-sel-fg-parts));
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by bernadette on 2019-04-16
 */

.BasicDetails__MenuButton___dnOk5 {
	flex: 1;
}

.BasicDetails__MenuButton___dnOk5 > button {
	padding: 8px 12px;
}

.BasicDetails__MenuButton___dnOk5 > button > .BasicDetails__swatch___ij77x {
	width: 1.2em;
	height: 1.2em;
	margin: 0px 8px 0px 0px;
	border-radius: 100%;
	flex: none;
}

.BasicDetails__MenuButton___dnOk5 > button > .BasicDetails__swatch___ij77x + div {
	text-align: left;
	text-transform: capitalize;
}

/*weird safari issue where colour was not coming through so had to split up the border settings :( */
.BasicDetails__border___sVEHw {
	border-width: 2px;
	border-style: solid;
	border-color: rgb(var(--theme-sel-bg-parts));
}

.ChecklistItems__ChecklistItems___gExjy ol {
	max-height: 256px;
}

.Cutoffs__Cutoffs___R1qKK {
}

.Cutoffs__Cutoffs___R1qKK > article {
	flex-direction: row;
	align-items: center;
	padding: 8px;
}

.Cutoffs__Cutoffs___R1qKK .Cutoffs__bar___lbylV {
	flex: 1;
	margin-right: 8px;
}

.Cutoffs__Cutoffs___R1qKK .Cutoffs__button___Iglce {
	padding: 8px 12px;
}

.Forums__name___ml11M {
	flex: 1;
}

.Forums__details___DB0FW {
	text-transform: uppercase;
	font-size: var(--small-text);
	color: rgba(var(--theme-fg-parts), 0.5);
}

.Overview__OverviewEditor___ozvMc {
	align-items: stretch;
	background: #fff; /** Legacy module should not inherit themes. **/
	display: flex;
	flex-direction: column;
	min-height: 400px;
	width: 100%;
	font-family: 'Roboto', sans-serif;
}

.Overview__OverviewEditor___ozvMc > .formattedText {
	flex: 1;
}

.Overview__OverviewEditor___ozvMc > .formattedText iframe {
	width: 100% !important; /* Enforce 100% width so that this overrides inline width. */
}

.Overview__OverviewEditor___ozvMc iframe body {
	overflow: visible;
}

.Overview__OverviewEditor___ozvMc > .formattedText .pillbox {
	color: #000;
	display: block;
	float: right;
}

/* TA-11145: Only for Edge browser*/
@supports (-ms-ime-align: auto) {
	.Overview__OverviewEditor___ozvMc > .userHTML {
		height: 400px !important; /* Enforce 400px height to override autosize height that causes problem in Edge. */
	}
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by huili on 2019-05-20
 */

.ExternalAssessmentNotice__app___yqSli {
	margin: 0 4px;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by bryn on 2019-03-21
 */

.Reflection__Reflection___x7KO4 {
	grid-row: span 3;
}

.Reflection__Reflection___x7KO4 > ol {
	overflow: hidden;
}

.Reflection__Reflection___x7KO4 > ol > li.Reflection__noBorder___lBd1K {
	border-bottom: none;
}

.Reflection__Reflection___x7KO4 .Reflection__menu___h0vQn {
}

.Reflection__Reflection___x7KO4 .Reflection__menu___h0vQn > button {
	border: none;
}

.Reflection__Reflection___x7KO4 .Reflection__headerRow___pBHAK {
	background: rgba(var(--theme-fg-parts), 0.04);
}

.Reflection__Reflection___x7KO4 .Reflection__headerRow___pBHAK > label > div:first-child {
	opacity: 1;
	margin: 0;
	width: unset !important;
}

.Reflection__Reflection___x7KO4 .Reflection__ReflectionCheckbox___HTK0s {
	justify-content: flex-end;
}

.Reflection__Reflection___x7KO4 textarea {
	border: none;
	justify-content: flex-end;
	margin: 8px 0;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by bernadette on 2019-04-16
 */

.Reporting__Reporting___u3Ujj > ol {
	overflow: hidden;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by bernadette on 2019-04-24
 */

.Resources__resourceList___qKes3 {
	grid-row: span 2;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by huili on 2019-03-22
 */

.SubmissionSettings__lateSubmissionDays___kcWBL {
	margin-left: 48px;
	margin-right: 12px;
}

.SubmissionSettings__lateSubmissionDaysInputWrapper___klsp5 {
	box-sizing: border-box;
	display: flex;
	width: 100%;
}

.SubmissionSettings__additionalMargin___czixw {
	margin-top: 5px;
}

.SubmissionSettings__lateSubmissionWrapper___Lt1HE {
	flex-direction: column;
}

.SubmissionSettings__configure___zJSSp {
	position: absolute;
	right: 100px;
	padding: 8px;
}

.SubmissionSettings__disabled___iMXch {
	opacity: 0.5;
}

.SubmissionSettings__warningMessage___WETKB {
	font-size: var(--small-text);
	color: #c00;
	margin-left: 80px;
	width: 100%;
}

.AssessmentManagerMenu__AssessmentManagerMenu____8AoO {
}

.AssessmentManagerMenu__AssessmentManagerMenu____8AoO .AssessmentManagerMenu__search___VZPAh {
}

.AssessmentManagerMenu__AssessmentManagerMenu____8AoO .AssessmentManagerMenu__search___VZPAh > input {
	border: none;
	height: 100%;
	box-sizing: border-box;
}

.AssessmentManagerMenu__AssessmentManagerMenu____8AoO .AssessmentManagerMenu__add___kikNU {
	margin: 4px;
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.AssessmentManagerMenu__deletePopup___jXtTD {
	padding: 2em;
	text-align: center;
}

.AcademicSummary__AcademicSummary___MEcTt {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.AcademicSummary__pageArea___znOUo {
	flex: 1;
	background: var(--nav-level-three);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

/* Flexbox collapses margins and padding. This circumvents that behaviour. */
.AcademicSummary__body___spQSl::after {
	content: '';
	width: 100%;
	height: 1px;
}

.AcademicSummary__empty___BdB_H {
	flex: 1;
}

.AcademicSummary__body___spQSl {
	flex: 1;
	overflow: auto;
	display: grid;
	align-items: flex-start;
	grid-template-columns: repeat(var(--cols), 1fr);
	grid-column-gap: var(--gap-size);
	grid-row-gap: var(--gap-size);
	grid-auto-rows: max-content;
	padding: var(--gap-size) var(--gap-size) 0;
	margin-bottom: var(--gap-size);
	--gap-size: 16px;
	--cols: 3;
}

.AcademicSummary__body___spQSl > :nth-child(3n + 1) {
	grid-column: 1;
}

.AcademicSummary__body___spQSl > :nth-child(3n + 2) {
	grid-column: 2;
}

.AcademicSummary__body___spQSl > :nth-child(3n + 3) {
	grid-column: 3;
}

@media (max-width: 1800px) {
	.AcademicSummary__body___spQSl {
		--cols: 2;
	}

	.AcademicSummary__body___spQSl > :nth-child(2n + 1) {
		grid-column: 1;
	}

	.AcademicSummary__body___spQSl > :nth-child(2n + 2) {
		grid-column: 2;
	}
}

@media (max-width: 1000px) {
	.AcademicSummary__body___spQSl {
		--gap-size: 16px;
		--cols: 1;
		grid-template-columns: 100%;
	}

	.AcademicSummary__body___spQSl > :nth-child(n) {
		grid-column: 1;
	}
}

.Toolbar__Toolbar___ECiXG {
}

.Toolbar__navigator___dEQvk {
	width: auto;
	flex: 1;
}

.Toolbar__terms___wz7yu {
	white-space: nowrap;
	flex: initial;
}

.Toolbar__values___XQfLp {
	align-self: center;
}

.Actions__Actions___hbdy8 {
	display: flex;
	align-items: stretch;
	padding: 16px 16px 0;
}

.Actions__toggle___lCkR7 {
	font-size: var(--small-text);
}

.Actions__departments___gEU2c {
	font-size: var(--small-text);
	align-items: stretch;
	margin: 0 8px 0 0;
}

.Actions__search___qSw6x {
	flex: 1;
	min-width: 12em;
	align-items: stretch;
}

.Actions__spacer___BB56c {
	flex: 1;
}

.Actions__shadow___vwF2N {
	position: relative;
}

.Actions__shadow___vwF2N::after {
	content: '';
	width: 100%;
	height: 16px;
	background: linear-gradient(
		180deg,
		var(--nav-level-three) 0%,
		rgba(240, 240, 240, 0) 100%
	);
	position: absolute;
	bottom: -16px;
	left: 0;
	z-index: 5;
}

.SubjectBlock__Subject___vPjHg {
	margin: 0;
}

.SubjectBlock__Subject___vPjHg .SubjectBlock__reportIndicator___GMJty {
	background: var(--container-accent);
	color: var(--container-accent-contrast);
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	margin: 0 8px 0 0;
}

.SubjectBlock__Subject___vPjHg .SubjectBlock__colourPicker___B6jud {
	background: var(--container-accent);
	color: var(--container-accent-contrast);
}

.SubjectBlock__Subject___vPjHg .SubjectBlock__reportIndicator___GMJty svg,
.SubjectBlock__Subject___vPjHg .SubjectBlock__colourPicker___B6jud svg {
	width: 16px;
	height: 16px;
}

.SubjectBlock__Subject___vPjHg article {
	max-height: 50vh;
	overflow: auto;
}

.SubjectBlock__Subject___vPjHg .SubjectBlock__current___Zbcj1 {
}

.SubjectBlock__Subject___vPjHg .SubjectBlock__assessment___epE3d {
}

.SubjectBlock__Subject___vPjHg .SubjectBlock__report___lsAWv {
}

.SubjectBlock__Subject___vPjHg .SubjectBlock__groups___x0p6h {
	flex: 1;
	overflow: auto;
	list-style: none;
	padding: 0;
	margin: 0;
}

.SubjectBlock__Subject___vPjHg .SubjectBlock__groups___x0p6h > .SubjectBlock__group___lgrQR {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--theme-offset-bg);
}

.SubjectBlock__Subject___vPjHg .SubjectBlock__groups___x0p6h > .SubjectBlock__group___lgrQR + .SubjectBlock__group___lgrQR {
	border-top: none;
}

.SubjectBlock__Subject___vPjHg .SubjectBlock__group___lgrQR > h3 {
	padding: 8px;
	margin: 0;
	border-bottom: 1px solid var(--theme-offset-bg);
	background: rgb(var(--theme-bg-parts));
	color: rgba(var(--theme-fg-parts), 0.5);
	text-transform: uppercase;
	font-size: var(--small-text);
	position: sticky;
	top: 0;
	z-index: 4;
}

.SubjectBlock__Subject___vPjHg .SubjectBlock__groups___x0p6h > .SubjectBlock__group___lgrQR > h3 > svg {
	width: 16px;
	height: 16px;
	margin: 0 8px 0 0;
}

.SubjectBlock__Subject___vPjHg .SubjectBlock__groups___x0p6h > .SubjectBlock__group___lgrQR > li {
	padding: 8px;
	border-bottom: 1px solid var(--theme-offset-bg);
	display: flex;
	align-items: flex-end;
	cursor: pointer;
	transition: box-shadow 0.2s;
}

.SubjectBlock__Subject___vPjHg .SubjectBlock__groups___x0p6h > .SubjectBlock__group___lgrQR > li:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.SubjectBlock__result___zw0Kb {
	list-style: none;
	padding: 8px;
}

.SubjectBlock__result___zw0Kb .SubjectBlock__primary___ZG85m {
	flex: 1;
	align-self: center;
}

.SubjectBlock__result___zw0Kb .SubjectBlock__primary___ZG85m h3 {
	margin: 0;
}

.SubjectBlock__result___zw0Kb .SubjectBlock__primary___ZG85m .SubjectBlock__achievement___pIstq {
	flex: 1;
	display: flex;
	align-items: center;
	margin: 4px 0 0;
}

.SubjectBlock__result___zw0Kb .SubjectBlock__primary___ZG85m .SubjectBlock__achievement___pIstq .SubjectBlock__thermoscore___KESAz {
	flex: 1;
}

/* Two things side by side need a bit of spacing */
.SubjectBlock__result___zw0Kb .SubjectBlock__primary___ZG85m .SubjectBlock__achievement___pIstq > * + * {
	margin: 0 0 0 8px;
}

.SubjectBlock__result___zw0Kb .SubjectBlock__cohort___RGEk9 {
	list-style: none;
	padding: 0;
	margin: 0 0 0 8px;
	display: flex;
	flex-direction: column;
}

.SubjectBlock__result___zw0Kb .SubjectBlock__cohort___RGEk9 li {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: var(--small-text);
	--indicator-colour: transparent;
}

.SubjectBlock__result___zw0Kb .SubjectBlock__cohort___RGEk9 li.SubjectBlock__minimum___cvpkf {
	--indicator-colour: var(--yellow);
}

.SubjectBlock__result___zw0Kb .SubjectBlock__cohort___RGEk9 li.SubjectBlock__maximum___FuVWI {
	--indicator-colour: var(--green);
}

.SubjectBlock__result___zw0Kb .SubjectBlock__cohort___RGEk9 li.SubjectBlock__average____h9Gr {
	--indicator-colour: var(--blue);
}

.SubjectBlock__result___zw0Kb .SubjectBlock__cohort___RGEk9 li::before {
	content: '';
	border: 1ex solid transparent;
	border-left-color: var(--indicator-colour);
}

.SubjectBlock__result___zw0Kb .SubjectBlock__cohort___RGEk9 li .SubjectBlock__label___IWaYn {
	text-transform: uppercase;
	flex: 1;
	color: rgb(var(--theme-fg-parts), 0.5);
}

.SubjectBlock__result___zw0Kb .SubjectBlock__cohort___RGEk9 li .SubjectBlock__value___MiWNZ {
	margin: 0 0 0 1ex;
	min-width: 3ex;
	text-align: right;
	font-family: 'Roboto Mono', 'Roboto', monospace;
}

.SubjectBlock__result___zw0Kb .SubjectBlock__popup___cmgQa {
	align-self: center;
	margin: 0 0 0 8px;
}

.SubjectBlock__result___zw0Kb .SubjectBlock__popup___cmgQa svg {
	width: 16px;
	height: 16px;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by Arie on 2019-05-13
 */

.Overview__Overview___UcVuY {
	padding: 0 16px;
	height: 100%;
	overflow-y: auto;
}

.Overview__Overview___UcVuY > h1 {
	margin: 0;
	padding: 8px 0;
	font-weight: normal;
	font-size: var(--large-text);
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
}

.Overview__Overview___UcVuY > h1:not(:first-of-type) {
	margin-top: 32px;
	border-top: 2px solid var(--theme-offset-bg);
}

.Overview__Overview___UcVuY .Overview__details___VaA2O {
}

.Overview__Overview___UcVuY > label.Overview__checklistMsg___dShUp > div {
	text-transform: none;
}

.Overview__orangeSlider___llhTu {
	--container-accent: var(--orange);
}

.Overview__currentClass___xv4Ph > div:first-child,
.Overview__currentClass___xv4Ph > div:last-child {
	color: var(--orange);
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by Arie on 2019-05-22
 */

.Submissions__Submissions___UzPaK {
	padding: 0 16px;
	height: 100%;
}

.Submissions__Submissions___UzPaK > h1 {
	margin: 0;
	padding: 8px 0;
	font-weight: normal;
	font-size: var(--large-text);
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
}

.Submissions__Submissions___UzPaK > h1:not(:first-of-type) {
	margin-top: 32px;
	border-top: 2px solid var(--theme-offset-bg);
}

.Submissions__Submissions___UzPaK > .Submissions__locked___kGaOm {
	display: flex;
	padding: 16px;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by Arie on 2019-06-06
 */

.WispSubmission__WispSubmission___SsxRJ {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.WispSubmission__WispSubmission___SsxRJ > .WispSubmission__controller___gcT86 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 40px;
	padding: 4px;
	border-top: 1px solid var(--theme-offset-bg);
}

.WispSubmission__WispSubmission___SsxRJ > .uiFrameWrapper {
	flex: 1;
	display: flex;
}

.WispSubmission__WispSubmission___SsxRJ .WispSubmission__content___AAGcQ {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	flex: 1;
}

.WispSubmission__WispSubmission___SsxRJ .WispSubmission__content___AAGcQ > iframe {
	height: 100%;
}

.WispSubmission__annotatorCheckbox___tRcl5 {
	max-width: 130px;
	display: inline-flex;
}

.WispSubmission__annotatorCheckbox___tRcl5 + div {
	margin-left: 4px;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by Arie on 2019-05-10
 */

.OverviewContainer__OverviewContainer___BF7Ul {
	background: rgb(var(--theme-bg-parts));
}

/*
 * Copyright (c) SEQTA Software 2020.
 *
 * Created by huili on 2020-01-16
 */

.FocusedAssessmentDetails__FocusedAssessmentDetails___Vqk9_ {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
}

.FocusedAssessmentDetails__FocusedAssessmentDetails___Vqk9_ > .FocusedAssessmentDetails__criteria___CTUJ4 {
	flex: 1;
	overflow: auto;
}

.FocusedAssessmentDetails__FocusedAssessmentDetails___Vqk9_ > .FocusedAssessmentDetails__criteria___CTUJ4 > h2 {
	padding: 8px 16px;
	font-size: var(--large-text);
	font-weight: normal;
}

.ReportData__ReportData___OqRRC {
}

.ReportData__ReportData___OqRRC > .ReportData__comment___vySgD {
	padding: 16px;
	line-height: 1.5;
	border-top: 2px solid var(--theme-offset-bg);
	border-bottom: 1px solid var(--theme-offset-bg);
	white-space: pre-wrap;
}

.ReportData__ReportData___OqRRC > .ReportData__section___szSU7 {
	border-top: 1px solid var(--theme-offset-bg);
	padding: 8px 16px;
}

.ReportData__ReportData___OqRRC > .ReportData__section___szSU7 > .ReportData__row___XbHWJ {
	display: flex;
	align-items: baseline;
}

.ReportData__ReportData___OqRRC > .ReportData__section___szSU7 > .ReportData__row___XbHWJ > .ReportData__label___tpd_z {
	flex: 1;
}

.ReportData__ReportData___OqRRC > .ReportData__section___szSU7 > .ReportData__row___XbHWJ > .ReportData__value___kXGyK {
	width: 4em;
	font-weight: bold;
}

.ReportData__ReportData___OqRRC > .ReportData__section___szSU7 > .ReportData__explanation___iMdJZ {
	font-size: var(--small-text);
	opacity: 0.5;
	margin-top: 8px;
}

.ReportAssets__ReportAssets___vfRfO {
	flex: 1;
	display: flex;
	height: 100%;
	background-color: var(--nav-level-three);
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__sidebar___dGbfO {
	width: 256px;
	display: flex;
	flex-direction: column;
	background: rgb(var(--theme-bg-parts));
	box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.3);
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__sidebar___dGbfO > .ReportAssets__selector___fbZYU {
	padding: 8px;
	display: flex;
	align-items: center;
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__sidebar___dGbfO > .ReportAssets__selector___fbZYU .ReportAssets__add___JneBw {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__sidebar___dGbfO > .ReportAssets__selector___fbZYU > div {
	flex: 1;
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__sidebar___dGbfO > .ReportAssets__selector___fbZYU > div > input {
	width: calc(100% - 8px);
	height: 100%;
	padding: 8px;
	box-sizing: border-box;
	cursor: default;
	border-radius: 4px;
	border: 2px solid rgb(var(--theme-sel-bg-parts));
}

.ReportAssets__ReportAssets___vfRfO .ReportAssets__search___j5kxu > input {
	border-radius: 0;
	border-right: 0;
	border-left: 0;
	margin: 0;
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__sidebar___dGbfO > .ReportAssets__list___GCXqQ {
	flex: auto;
	overflow-y: auto;
	height: 0;
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__sidebar___dGbfO > .ReportAssets__list___GCXqQ > .ReportAssets__item___QF0Xx {
	cursor: pointer;
	padding: 8px;
	font-size: 1.2em;
	border-bottom: 1px solid var(--theme-offset-bg);
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__sidebar___dGbfO > .ReportAssets__list___GCXqQ > .ReportAssets__item___QF0Xx:hover {
	background-color: var(--theme-offset-bg);
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__sidebar___dGbfO > .ReportAssets__list___GCXqQ > .ReportAssets__item___QF0Xx.ReportAssets__selected___LOyCb,
.ReportAssets__ReportAssets___vfRfO > .ReportAssets__sidebar___dGbfO > .ReportAssets__list___GCXqQ > .ReportAssets__item___QF0Xx.ReportAssets__selected___LOyCb:hover {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__sidebar___dGbfO > .ReportAssets__list___GCXqQ > .ReportAssets__item___QF0Xx > .ReportAssets__coordinator___NYal9 {
	opacity: 0.5;
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__sidebar___dGbfO > .ReportAssets__list___GCXqQ > .ReportAssets__item___QF0Xx > .ReportAssets__code___esIa1 {
	opacity: 0.5;
	font-size: 0.8em;
	padding-top: 2px;
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__content___ZZzGV {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__content___ZZzGV > .ReportAssets__instructions___ZbKiO {
	text-align: center;
	padding: 16px 0;
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__content___ZZzGV > .ReportAssets__instructions___ZbKiO > .ReportAssets__delete___KdDve {
	position: absolute;
	right: 8px;
	top: 8px;
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__content___ZZzGV > .ReportAssets__preview___h84ma {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__content___ZZzGV > .ReportAssets__preview___h84ma > img {
	max-width: 100%;
	max-height: 100%;
	padding: 0 16px;
	box-sizing: border-box;
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__content___ZZzGV > .ReportAssets__fileHandler___UsimC {
	margin: 0 8px;
	text-align: center;
}

.ReportAssets__ReportAssets___vfRfO > .ReportAssets__content___ZZzGV > .ReportAssets__fileHandler___UsimC > .ReportAssets__imageName___eX9Cx {
	margin: 8px 0;
	opacity: 0.5;
	color: rgb(var(--theme-fg-parts));
}

.ReportAssets__ReportAssets___vfRfO .ReportAssets__confirmDelete___PHOPe {
	padding: 16px;
	text-align: center;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by bernadette on 2020-4-23
 *
 */

.ReportAssetsImport__ReportAssetsImport___Khuit {
	padding: 8px;
}

.ReportAssetsImport__ReportAssetsImport___Khuit > .ReportAssetsImport__info___Dz396 {
	padding-bottom: 16px;
	opacity: 0.8;
}

.ReportAssetsImport__ReportAssetsImport___Khuit > label {
	width: 100%;
	padding-bottom: 8px;
}

.ReportAssetsImport__ReportAssetsImport___Khuit > .ReportAssetsImport__result___rKMay > .ReportAssetsImport__summary___mPic6 .ReportAssetsImport__success___yuV1y ul {
	color: var(--green);
	max-height: 100px;
	overflow: auto;
}

.ReportAssetsImport__ReportAssetsImport___Khuit > .ReportAssetsImport__result___rKMay > .ReportAssetsImport__summary___mPic6 .ReportAssetsImport__failed___q9b25 ul {
	color: var(--red);
	max-height: 100px;
	overflow: auto;
}

.ReportAssetsImport__MenuButton___GN6V8 {
	flex: 1;
}

.CustomReports__CustomReports___yllyO {
	flex: 1;
	display: flex;
	flex-direction: column;
	background-color: var(--nav-level-three);
	overflow: hidden;
}

.CustomReports__CustomReports___yllyO > .CustomReports__main___Oevjs {
	flex: 1;
	display: flex;
	overflow: hidden;
}

.CustomReports__CustomReports___yllyO > .CustomReports__main___Oevjs > .CustomReports__container___msg1i {
	flex: 4 4;
	display: flex;
	overflow: hidden;
}

.CustomReports__CustomReports___yllyO > .CustomReports__main___Oevjs > .CustomReports__container___msg1i > .CustomReports__selections___PURFv {
	flex: 3 3;
	display: flex;
	flex-direction: column;
	overflow: auto;
}

.CustomReports__CustomReports___yllyO > .CustomReports__main___Oevjs > .CustomReports__empty___wY4Wq {
	flex: 4 4;
	display: flex;
	align-items: center;
	justify-content: center;
}

.CustomReports__CustomReports___yllyO .CustomReports__confirm___lEivP {
	padding: 16px;
	text-align: center;
}

.CustomReports__CustomReports___yllyO .CustomReports__printContainer___Hba3S {
	display: flex;
	position: relative;
}

.CustomReports__CustomReports___yllyO .CustomReports__printContainer___Hba3S > .CustomReports__print___okpJK {
	margin-right: 0 !important;
	border-radius: 4px 0 0 4px !important;
	border-right: none !important;
}

.CustomReports__CustomReports___yllyO .CustomReports__printContainer___Hba3S > .CustomReports__toggle___QLqiW {
	border-radius: 0 4px 4px 0 !important;
	padding: 0 4px !important;
}

.CustomReports__CustomReports___yllyO .CustomReports__printContainer___Hba3S > .CustomReports__popup___x1P1R {
	background: rgb(var(--theme-bg-parts));
	color: rgb(var(--theme-fg-parts));
	position: absolute;
	top: calc(100% - 8px);
	left: 0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	border-radius: 4px;
	z-index: 100;
	width: 256px;
}

.CustomReports__CustomReports___yllyO .CustomReports__printContainer___Hba3S > .CustomReports__popup___x1P1R > div {
	margin: 0;
}

.CustomReports__CustomReports___yllyO .CustomReports__printContainer___Hba3S > .CustomReports__popup___x1P1R .CustomReports__row___RHZb4 {
	display: flex;
	padding-left: 4px;
}

.CustomReports__CustomReports___yllyO .CustomReports__printContainer___Hba3S > .CustomReports__popup___x1P1R .CustomReports__row___RHZb4 button {
	border: 1px solid rgba(var(--theme-fg-parts), 0.1);
}

.CustomReports__CustomReports___yllyO .CustomReports__printContainer___Hba3S > .CustomReports__popup___x1P1R .CustomReports__row___RHZb4 > *:first-child {
	flex: 1;
}

.CustomReports__CustomReports___yllyO .CustomReports__printContainer___Hba3S > .CustomReports__popup___x1P1R .CustomReports__row___RHZb4 > *:last-child {
	flex: 3;
}

.CustomReportsMenu__CustomReportsMenu___vwNm0 {
	flex: 1 1;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
	display: flex;
	flex-direction: column;
	background: rgb(var(--theme-bg-parts));
}

.CustomReportsMenu__CustomReportsMenu___vwNm0 > .CustomReportsMenu__header___oCxza {
	display: flex;
	justify-content: center;
	color: rgb(var(--theme-fg-parts));
	padding: 4px 8px 4px 0;
	border-bottom: 1px solid var(--theme-offset-bg);
}

.CustomReportsMenu__CustomReportsMenu___vwNm0 > .CustomReportsMenu__header___oCxza > .CustomReportsMenu__input___H81VP {
	flex: 1;
}

.CustomReportsMenu__CustomReportsMenu___vwNm0 > .CustomReportsMenu__header___oCxza > .CustomReportsMenu__input___H81VP > input {
	border-radius: 0;
	border: none;
}

.CustomReportsMenu__CustomReportsMenu___vwNm0 > .CustomReportsMenu__header___oCxza > Button.CustomReportsMenu__add___mZCk_ {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}


.CustomReportsMenu__CustomReportsMenu___vwNm0 > .CustomReportsMenu__list___LQL2B {
	flex: 1;
	overflow: auto;
}

.CustomReportsMenu__CustomReportsMenu___vwNm0 > .CustomReportsMenu__list___LQL2B > .CustomReportsMenu__MenuItem___mHSNY {
	border-bottom: 1px solid var(--theme-offset-bg);
	padding: 8px;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.CustomReportsMenu__CustomReportsMenu___vwNm0 > .CustomReportsMenu__list___LQL2B > .CustomReportsMenu__MenuItem___mHSNY > .CustomReportsMenu__copy___zxovP {
	margin-right: 2px;
}

.CustomReportsMenu__CustomReportsMenu___vwNm0 > .CustomReportsMenu__list___LQL2B > .CustomReportsMenu__MenuItem___mHSNY > button > svg {
	width: 16px;
}

.CustomReportsMenu__CustomReportsMenu___vwNm0 > .CustomReportsMenu__list___LQL2B > .CustomReportsMenu__MenuItem___mHSNY:hover {
	background-color: var(--theme-offset-bg);
}

.CustomReportsMenu__CustomReportsMenu___vwNm0 > .CustomReportsMenu__list___LQL2B > .CustomReportsMenu__MenuItem___mHSNY.CustomReportsMenu__selected___jk4Uq {
	background-color: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.CustomReportsMenu__CustomReportsMenu___vwNm0 > .CustomReportsMenu__list___LQL2B > .CustomReportsMenu__MenuItem___mHSNY > .CustomReportsMenu__container___yjfsU {
	flex: 1;
}

.CustomReportsMenu__CustomReportsMenu___vwNm0 > .CustomReportsMenu__list___LQL2B > .CustomReportsMenu__MenuItem___mHSNY > .CustomReportsMenu__container___yjfsU > .CustomReportsMenu__pill___qHmtH {
	margin: 2px 0;
}

.CustomReportsMenu__CustomReportsMenu___vwNm0 .CustomReportsMenu__confirm___x29QG {
	padding: 16px;
	text-align: center;
}

.CustomReportsSections__CustomReportsSections___Q_VkG {
	flex: 1 1;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
	padding: 16px;
	overflow: auto;
	z-index: 1;
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq {
	margin-top: 16px;
	position: relative;
	border-radius: 4px;
	background-color: var(--theme-offset-bg);
	overflow: hidden;
}

.CustomReportsSections__CustomReportsSections___Q_VkG > .CustomReportsSections__section___fv4Uq:last-child {
	margin-bottom: 16px;
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq.CustomReportsSections__disabled___jpSbU {
	opacity: 0.5;
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq > .CustomReportsSections__label___H4ZJj,
.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq > .CustomReportsSections__collapseContainer___Vf8Ms > .CustomReportsSections__layout___gAoxt {
	--size: 24px; /* For the buttons */
	padding: 4px 8px;
	cursor: pointer;
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq > .CustomReportsSections__label___H4ZJj {
	display: flex;
	align-items: center;
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq button {
	margin-left: 2px;
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq .CustomReportsSections__collapseButton___qnzmv + button {
	margin-left: 8px;
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq button > svg {
	width: 16px;
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq > .CustomReportsSections__label___H4ZJj {
	font-weight: bold;
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq > .CustomReportsSections__collapseContainer___Vf8Ms > .CustomReportsSections__layout___gAoxt {
	border-top: 1px solid var(--theme-offset-bg-more);
	display: flex;
	align-items: center;
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq > .CustomReportsSections__label___H4ZJj:hover,
.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq > .CustomReportsSections__collapseContainer___Vf8Ms > .CustomReportsSections__layout___gAoxt:hover {
	background-color: var(--theme-offset-bg-more);
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq > .CustomReportsSections__collapseContainer___Vf8Ms > .CustomReportsSections__layout___gAoxt > .CustomReportsSections__labels___D3nV8 {
	flex: 1;
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq > .CustomReportsSections__collapseContainer___Vf8Ms > .CustomReportsSections__layout___gAoxt > .CustomReportsSections__labels___D3nV8 > .CustomReportsSections__text___D4IQH {
	padding: 2px 0;
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq > .CustomReportsSections__collapseContainer___Vf8Ms > .CustomReportsSections__layout___gAoxt > .CustomReportsSections__labels___D3nV8 > .CustomReportsSections__text___D4IQH > span {
	padding: 2px;
	border-radius: 2px;
	background: rgba(var(--theme-fg-parts), 0.1);
	color: rgb(var(--theme-fg-parts));
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq > .CustomReportsSections__collapseContainer___Vf8Ms > .CustomReportsSections__layout___gAoxt.CustomReportsSections__selected___DeP4U > .CustomReportsSections__labels___D3nV8 > .CustomReportsSections__text___D4IQH > span {
	background: rgba(var(--theme-fg-parts), 0.1);
	color: rgb(var(--theme-bg-parts));
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq > .CustomReportsSections__collapseContainer___Vf8Ms > .CustomReportsSections__layout___gAoxt > .CustomReportsSections__labels___D3nV8 > .CustomReportsSections__name___M8zkw {
	opacity: 0.5;
	font-size: var(--small-text);
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq > .CustomReportsSections__collapseContainer___Vf8Ms > .CustomReportsSections__layout___gAoxt > .CustomReportsSections__buttons___fs9yD > .CustomReportsSections__row___DGYgj {
	display: flex;
	align-items: center;
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq .CustomReportsSections__collapseContainer___Vf8Ms .CustomReportsSections__layout___gAoxt > .CustomReportsSections__buttons___fs9yD > .CustomReportsSections__row___DGYgj:first-child > button {
	margin-bottom: 2px;
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq > .CustomReportsSections__label___H4ZJj > .CustomReportsSections__text___D4IQH {
	flex: 1;
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq.CustomReportsSections__selected___DeP4U > .CustomReportsSections__label___H4ZJj,
.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__section___fv4Uq > .CustomReportsSections__collapseContainer___Vf8Ms > .CustomReportsSections__layout___gAoxt.CustomReportsSections__selected___DeP4U {
	background-color: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__subsection___xhRoY {
	background-color: var(--theme-offset-bg-more);
	padding: 8px 8px 16px;
	border-radius: 0 0 4px 4px;
}

.CustomReportsSections__CustomReportsSections___Q_VkG .CustomReportsSections__subsection___xhRoY > .CustomReportsSections__section___fv4Uq {
	margin-top: 8px;
}

.CustomReportsSections__collapseContainer___Vf8Ms.CustomReportsSections__exitActive___c9rlK {
	animation-name: CustomReportsSections__collapsible-collapsing___EzDet;
	animation-duration: 400ms;
}

.CustomReportsSections__collapseContainer___Vf8Ms.CustomReportsSections__enterActive___odLHN {
	animation-name: CustomReportsSections__collapsible-expanding___QB9vu;
	animation-duration: 400ms;
}

@keyframes CustomReportsSections__collapsible-collapsing___EzDet {
	0% {
		max-height: 100vh;
	}

	100% {
		max-height: 0;
	}
}

@keyframes CustomReportsSections__collapsible-expanding___QB9vu {
	0% {
		max-height: 0;
	}

	100% {
		max-height: 100vh;
	}
}



.CustomReportsLayouts__CustomReportsLayouts___gpA9y {
	background-color: var(--theme-offset-bg-more);
}

.CustomReportsLayouts__CustomReportsLayouts___gpA9y > .CustomReportsLayouts__header___T6OZe {
	padding: 16px;
	display: flex;
	align-items: center;
}

.CustomReportsLayouts__CustomReportsLayouts___gpA9y > .CustomReportsLayouts__header___T6OZe > .CustomReportsLayouts__title___jMc6X {
	font-size: var(--large-text);
	flex: 1;
}

.CustomReportsLayouts__CustomReportsLayouts___gpA9y > .CustomReportsLayouts__header___T6OZe > .CustomReportsLayouts__toggle___ngdso {
	margin-left: 4px;
}

.CustomReportsLayouts__CustomReportsLayouts___gpA9y > .CustomReportsLayouts__carousel___zn55m {
	display: flex;
	padding: 0 16px 16px;
	overflow: auto;
}

.CustomReportsLayouts__CustomReportsLayouts___gpA9y > .CustomReportsLayouts__carousel___zn55m > .CustomReportsLayouts__layout___w94wz {
	padding: 4px;
	margin-right: 8px;
	cursor: pointer;
	position: relative;
	width: 109px;
}

.CustomReportsLayouts__CustomReportsLayouts___gpA9y > .CustomReportsLayouts__carousel___zn55m > .CustomReportsLayouts__layout___w94wz > img {
	--paper-colour: #fff;
	--paper-text-colour: rgba(0, 0, 0, 0.5);
	--paper-width: 105px;
	--paper-height: 148px;
	width: var(--paper-width);
	height: var(--paper-height);
	border-radius: 8px;
	border: 2px solid transparent;
	display: flex;
	align-items: center;
	text-align: center;
	background: var(--paper-colour);
	color: var(--paper-text-colour);
	font-style: italic;
}

.CustomReportsLayouts__CustomReportsLayouts___gpA9y > .CustomReportsLayouts__carousel___zn55m > .CustomReportsLayouts__layout___w94wz.CustomReportsLayouts__selected___NyG8B > img {
	border-color: rgb(var(--theme-sel-bg-parts));
}

.CustomReportsLayouts__CustomReportsLayouts___gpA9y > .CustomReportsLayouts__carousel___zn55m > .CustomReportsLayouts__layout___w94wz > .CustomReportsLayouts__name___UxhHh {
	font-weight: bold;
	padding: 4px;
}

.CustomReportsLayouts__CustomReportsLayouts___gpA9y > .CustomReportsLayouts__carousel___zn55m > .CustomReportsLayouts__layout___w94wz > .CustomReportsLayouts__check___Go9ps {
	display: none;
	position: absolute;
	top: 12px;
	right: 12px;
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
	padding: 4px;
	border-radius: 100%;
}

.CustomReportsLayouts__CustomReportsLayouts___gpA9y > .CustomReportsLayouts__carousel___zn55m > .CustomReportsLayouts__layout___w94wz.CustomReportsLayouts__selected___NyG8B > .CustomReportsLayouts__check___Go9ps {
	display: block;
}

.CustomReportsOptions__CustomReportsOptions___O6Swm {
	flex: 1;
	overflow: auto;
}

.CustomReportsOptions__CustomReportsOptions___O6Swm > .CustomReportsOptions__header___eLBei {
	padding: 16px 16px 0 16px;
	display: flex;
	align-items: center;
}

.CustomReportsOptions__CustomReportsOptions___O6Swm > .CustomReportsOptions__header___eLBei > .CustomReportsOptions__title___KjOap {
	font-size: var(--large-text);
	flex: 1;
}

.CustomReportsOptions__CustomReportsOptions___O6Swm > .CustomReportsOptions__container___LOoKm .CustomReportsOptions__toggle___NO9A1 {
	margin: 8px;
}

.CustomReportsOptions__CustomReportsOptions___O6Swm > .CustomReportsOptions__container___LOoKm .CustomReportsOptions__options___dZgKw {
	--gap-size: 16px;
	padding: 8px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: var(--gap-size);
	grid-row-gap: 16px;
	align-items: start;
}

.CustomReportsOptions__CustomReportsOptions___O6Swm > .CustomReportsOptions__container___LOoKm .CustomReportsOptions__options___dZgKw.CustomReportsOptions__hidden___Xk588 {
	display: none;
}

.CustomReportsOptions__CustomReportsOptions___O6Swm > .CustomReportsOptions__container___LOoKm .CustomReportsOptions__options___dZgKw > .CustomReportsOptions__option___aYJ4q {
}

.CustomReportsOptions__CustomReportsOptions___O6Swm > .CustomReportsOptions__container___LOoKm .CustomReportsOptions__options___dZgKw > .CustomReportsOptions__optionRich___qtcEz {
	grid-column: span 3;
}

.CustomReportsOptions__CustomReportsOptions___O6Swm > .CustomReportsOptions__container___LOoKm .CustomReportsOptions__options___dZgKw > .CustomReportsOptions__substitute___ygNoa {
	grid-column: span 2;
}

.CustomReportsOptions__CustomReportsOptions___O6Swm
	.uiFormattedTextWrapper
	> .formattedText {
	min-height: 400px;
	border: 2px solid rgb(var(--theme-bg-alt-parts));
}

@media (max-width: 1600px) {
	.CustomReportsOptions__CustomReportsOptions___O6Swm > .CustomReportsOptions__container___LOoKm .CustomReportsOptions__options___dZgKw {
		grid-template-columns: 1fr 1fr;
	}

	.CustomReportsOptions__CustomReportsOptions___O6Swm > .CustomReportsOptions__container___LOoKm .CustomReportsOptions__options___dZgKw > .CustomReportsOptions__optionRich___qtcEz {
		grid-column: span 2;
	}

	.CustomReportsOptions__CustomReportsOptions___O6Swm > .CustomReportsOptions__container___LOoKm .CustomReportsOptions__options___dZgKw > .CustomReportsOptions__substitute___ygNoa {
		grid-column: span 1;
	}
}

@media (max-width: 1200px) {
	.CustomReportsOptions__CustomReportsOptions___O6Swm > .CustomReportsOptions__container___LOoKm .CustomReportsOptions__options___dZgKw {
		--gap-size: 12px;
	}
}

@media (max-width: 1000px) {
	.CustomReportsOptions__CustomReportsOptions___O6Swm > .CustomReportsOptions__container___LOoKm .CustomReportsOptions__options___dZgKw {
		--gap-size: 8px;
		grid-template-columns: 1fr;
	}

	.CustomReportsOptions__CustomReportsOptions___O6Swm > .CustomReportsOptions__container___LOoKm .CustomReportsOptions__options___dZgKw > .CustomReportsOptions__optionRich___qtcEz {
		grid-column: span 1;
	}
}

.CustomReportsOptions__CustomReportsOptions___O6Swm > .CustomReportsOptions__container___LOoKm .CustomReportsOptions__options___dZgKw .CustomReportsOptions__title___KjOap {
	display: flex;
	align-items: center;
	margin-bottom: 4px;
}

.CustomReportsOptions__CustomReportsOptions___O6Swm > .CustomReportsOptions__container___LOoKm .CustomReportsOptions__options___dZgKw .CustomReportsOptions__title___KjOap > .CustomReportsOptions__label___oWeHt {
	display: block;
}

.CustomReportsOptions__CustomReportsOptions___O6Swm .uiColourButtonWrapper > button {
	display: flex;
	align-items: center;
}

.CustomReportsOptions__noLayout___qbY5j {
	flex: 1;
	overflow: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.SyncManager__SyncManager___nBuGp {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.SyncManager__SyncManager___nBuGp .SyncManager__container___f2SQH {
	overflow: auto;
}

.SyncManager__SyncManager___nBuGp .SyncManager__tabSet____sqp7 {
	background: var(--nav-level-three);
	position: absolute;
	height: 100%;
	width: 100%;
}

.SyncManager__SyncManager___nBuGp .SyncManager__empty___HfKKh {
	background: var(--nav-level-three);
	position: absolute;
	height: 100%;
	width: 100%;
}

.SyncManager__SyncManager___nBuGp .SyncManager__Block___hOBhu ol > li > label {
	width: 100%;
}

.SyncManager__SyncManager___nBuGp .SyncManager__Block___hOBhu ol > li > label > div:first-child {
	font-size: var(--small-text);
	width: 120px;
}

.SyncManager__SyncManager___nBuGp .SyncManager__readOnly___awmJo {
	opacity: 0.5;
}

.SyncManager__SyncManager___nBuGp .SyncManager__Block___hOBhu ol > li > .SyncManager__item___cPFDf {
	width: 100%;
}

.SyncManager__SyncManager___nBuGp .SyncManager__Popup___jFov7 {
	padding: 2em;
	text-align: center;
}

.SyncManager__spacer___zvbRM {
	flex: 1;
}

.SyncManagerMenu__SyncManagerMenu___FA3qA {
}

.SyncManagerMenu__SyncManagerMenu___FA3qA .SyncManagerMenu__search___cc9Nz {
}

.SyncManagerMenu__SyncManagerMenu___FA3qA .SyncManagerMenu__search___cc9Nz > input {
	border: none;
	height: 100%;
	box-sizing: border-box;
}

.SyncManagerMenu__SyncManagerMenu___FA3qA .SyncManagerMenu__add___BqNm_ {
	margin: 4px;
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.SyncManagerMenu__SyncManagerMenu___FA3qA .SyncManagerMenu__syncInfoContainer___EKRXv {
	display: flex;
	align-items: flex-end;
	margin: 14px 0;
}

.SyncManagerMenu__SyncManagerMenu___FA3qA .SyncManagerMenu__SplitButton___ZcHPT {
	flex-grow: 1;
	max-width: 58px;
	margin-right: 4px;
}

.SyncManagerMenu__SyncManagerMenu___FA3qA .SyncManagerMenu__statusContainer___bga5M {
	flex-grow: 1;
	text-align: right;
}

.SyncManagerMenu__SyncManagerMenu___FA3qA .SyncManagerMenu__statusTab___WlyxF {
	display: inline-block;
	background-color: rgba(var(--theme-fg-parts), 0.1);
	font-size: var(--small-text);
	padding: 4px 6px;
	border-radius: 2px;
	box-sizing: border-box;
}

.SyncManagerMenu__SyncManagerMenu___FA3qA span.SyncManagerMenu__success___fi9SE {
	background-color: var(--green);
}

.SyncManagerMenu__SyncManagerMenu___FA3qA span.SyncManagerMenu__failed___shsuI {
	background-color: var(--orange);
}

.SyncManagerMenu__SyncManagerMenu___FA3qA span.SyncManagerMenu__unsaved___GkHRZ {
	font-style: italic;
}

.SyncManagerMenu__SyncManagerMenu___FA3qA span.SyncManagerMenu__disabled___Cq91y {
	font-weight: 700;
}

.SyncManagerMenu__deletePopup___s9LHF {
	padding: 2em;
	text-align: center;
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 {
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__main___nLd19 {
	overflow: auto;
	--gap-size: 32px;
	max-width: 1000px;
	margin: auto;
	padding: var(--gap-size);
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__gridContainer___iILWf {
	flex: 1;
	display: grid;
	grid-template-columns: calc(50% - (var(--gap-size) / 2)) calc(
			50% - (var(--gap-size) / 2)
		);
	grid-gap: var(--gap-size);
	align-items: start;
	padding-top: calc(var(--gap-size) / 2);
}

@media (max-width: 1600px) {
	.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__gridContainer___iILWf {
		grid-template-columns: 100%;
	}
}

@media (max-width: 1200px) {
	.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__gridContainer___iILWf {
		--gap-size: 16px;
	}
}

@media (max-width: 1000px) {
	.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__gridContainer___iILWf {
		--gap-size: 8px;
	}
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 > .SyncManagerOptions__gridContainer___iILWf div {
	margin: 0;
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__pageDisabled___VpT6D {
	pointer-events: none;
	opacity: 0.5;
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__pageEnabled___IBDax {
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__basicPanel___KNMv1 {
	margin: 0;
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__basicPanel___KNMv1 .SyncManagerOptions__Label___o6_Yb {
	flex: 1;
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__basicPanel___KNMv1 .SyncManagerOptions__enabled___XUmCn {
	margin-left: 8px;
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__taskListItem___lM4x0 {
	min-height: 50px;
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__subTaskListItem___ezkzE {
	background-color: var(--nav-level-three);
	padding-left: 24px;
	animation-name: SyncManagerOptions__fadeIn___AlWJp;
	animation-duration: 1s;
}

@keyframes SyncManagerOptions__fadeIn___AlWJp {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@media (min-height: 800px) {
	.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__taskListItem___lM4x0,
	.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__subTaskListItem___ezkzE {
		min-height: 54px;
	}
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__hiddenTask___yPIFG {
	display: none;
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__enabled___XUmCn {
	flex: none;
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__enabled___XUmCn label {
	flex: none;
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__basicPanel___KNMv1 label {
	flex: auto;
}

.SyncManagerOptions__spanTwoColumns___BPCfx {
	grid-column: span 2;
}

@media (max-width: 1600px) {
	.SyncManagerOptions__spanTwoColumns___BPCfx {
		grid-column: span 1;
	}
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__labelWithHelp___sikOT {
	margin-bottom: 4px;
}

.SyncManagerOptions__MenuButton___hZKof {
	flex: 1;
}

.SyncManagerOptions__MenuButton___hZKof > button {
	padding: 8px 12px;
	text-align: left;
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__Input___wKn7f {
	display: block;
}

.SyncManagerOptions__SyncManagerOptions___J_PX7 .SyncManagerOptions__Input___wKn7f > input {
	display: block;
	width: calc(100% - (var(--gap-size) / 2));
	margin-top: 4px;
}

.SyncManagerLogs__SyncManagerLogs___k0v8i {
	overflow: auto;
}

.SyncManagerLogs__SyncManagerLogs___k0v8i .SyncManagerLogs__main___eXxfL {
	--gap-size: 32px;
	flex: 1;
	padding: var(--gap-size);
	margin: auto;
}

@media (max-width: 1200px) {
	.SyncManagerLogs__SyncManagerLogs___k0v8i .SyncManagerLogs__main___eXxfL {
		--gap-size: 16px;
	}
}

@media (max-width: 1000px) {
	.SyncManagerLogs__SyncManagerLogs___k0v8i .SyncManagerLogs__main___eXxfL {
		--gap-size: 8px;
	}
}

.SyncManagerLogs__SyncManagerLogs___k0v8i > .SyncManagerLogs__main___eXxfL div {
	margin: 0;
}

.SyncManagerLogs__SyncManagerLogs___k0v8i .SyncManagerLogs__Label___LPrVb {
	width: 100%;
}

.Absences__absences___pHr_r {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.Absences__absences___pHr_r > .Absences__absencesToolbar___xWeHk {
	display: flex;
	justify-content: flex-end;
}

.Absences__absences___pHr_r > .Absences__absencesToolbar___xWeHk > .Absences__spacer___H3fMC,
.Absences__absences___pHr_r > .Absences__pageArea___xbt5w > div > div > div > .Absences__tabArea___oYx6T > div > .Absences__actions___DTp9x > .Absences__spacer___H3fMC {
	flex: 1;
}

.Absences__absences___pHr_r > .Absences__absencesToolbar___xWeHk > .Absences__absencesEmergency___EhIvz {
	background-color: red;
	color: white;
}

.Absences__absences___pHr_r > .Absences__pageArea___xbt5w {
	flex: 1;
	background: rgb(var(--theme-bg-parts));
	display: flex;
	overflow: hidden;
	padding: 16px 16px 0;
}

.Absences__absences___pHr_r > .Absences__pageArea___xbt5w > div > div > div > .Absences__tabArea___oYx6T {
	padding: 16px 16px 0;
}

.Absences__processedTab___CLa18 {
	overflow-y: hidden;
}

.Absences__absenceRequestTable___w0OGN {
	padding-top: 10px;
}

.Absences__absenceRequestTable___w0OGN .Absences__processedRequestTable___snmdI {
	display: flex;
	flex-direction: column;
}

.Absences__processedRequestTable___snmdI {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding-bottom: 16px;
	box-sizing: border-box;
}

.Absences__processedSelectStatus___Y0xDN {
	margin-left: auto;
	width: 164px;
	padding: 0 0 16px 0;
}

.Absences__processedTable___EJQtw > .Absences__heading___EYTdB {
	flex-shrink: 0;
}

.Absences__absenceRequestTable___w0OGN .Absences__processedTable___EJQtw {
	flex-grow: 1;
	max-height: 100vh;
}

.Absences__absences___pHr_r > .Absences__pageArea___xbt5w > div > div > div > .Absences__tabArea___oYx6T > div > .Absences__heading___EYTdB {
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.Absences__absences___pHr_r > .Absences__pageArea___xbt5w > div > div > div > .Absences__tabArea___oYx6T > div > .Absences__actions___DTp9x {
	display: flex;
	padding: 16px 0px;
	align-items: center;
}

.Absences__absences___pHr_r > .Absences__pageArea___xbt5w > div > div > div > .Absences__tabArea___oYx6T > div > .Absences__actions___DTp9x > .Absences__selectStatus___JuevX {
	width: 164px;
}

.Absences__absences___pHr_r > .Absences__pageArea___xbt5w > div > div > div > .Absences__tabArea___oYx6T > div > .Absences__actions___DTp9x > .Absences__selectStatus___JuevX > div > input {
	border-radius: 5px;
	border: 0.9px solid #9f9f9f;
	display: flex;
	padding: 8px 13.5px;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
}

.Absences__absences___pHr_r button.Absences__flag___PBfvW {
	border: none;
}

.Absences__absences___pHr_r button.Absences__flag___PBfvW:hover {
	border: none;
	box-shadow: none;
}

.Absences__fullPageEmpty___ec7MW {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.Absences__loadingSpinner___fwj6U {
	margin: auto auto;
}

.Absences__absences___pHr_r .Absences__tableArea___zpkqy td:first-of-type,
.Absences__absences___pHr_r .Absences__tableArea___zpkqy th:first-of-type,
.Absences__absences___pHr_r .Absences__tableArea___zpkqy td:last-of-type,
.Absences__absences___pHr_r .Absences__tableArea___zpkqy th:last-of-type {
	border-bottom: none !important;
}

.Absences__contactDetails___XmBek {
	display: flex;
	flex-direction: column;
}

.Absences__contactDetails___XmBek > .Absences__name___GtRRK {
	margin: 0;
}

.Absences__contactDetails___XmBek > .Absences__relationship___Sylu2 {
	color: rgba(var(--theme-fg-parts), 0.7);
	font-size: var(--small-text);
	font-weight: bold;
	opacity: 0.5;
	margin: 3px 0;
	text-transform: uppercase;
}

.Absences__time___YPi4V {
	text-transform: uppercase;
}

.Absences__actionDropdown___PD9LT {
	padding-left: 10px;
}

.Absences__splitButton___w0P1p {
	width: 115px;
}

.Absences__popupBody___fxonV {
	padding: 8px 16px;
}

.Absences__editingPopupBody___Cr0kL > p {
	font-weight: bold;
}

.Absences__editingPopupBody___Cr0kL > .Absences__notificationRow___fhxg8 {
	display: flex;
	justify-content: space-between;
	background-color: rgb(var(--theme-bg-parts));
	padding: 4px 8px;
	align-items: flex-start;
	border-bottom: 1px solid rgba(var(--theme-fg-parts), 0.1);
}

.Absences__editingPopupBody___Cr0kL > .Absences__notificationRow___fhxg8 > p {
	flex: 1;
	margin: 0;
}

.Absences__editingPopupBody___Cr0kL > .Absences__notificationRow___fhxg8 > .Absences__date___H8cHg {
	text-transform: uppercase;
}

.Absences__editingPopupBody___Cr0kL > .Absences__attendanceMenu___v_7J3 {
	width: 50%;
}

.Absences__editingPopupBody___Cr0kL > .Absences__popUpButtons___TxQAH {
	display: flex;
	flex-direction: row-reverse;
	margin: 15px 0;
}

.Absences__editingPopupBody___Cr0kL > .Absences__popUpButtons___TxQAH > .Absences__process___rmfyd {
	color: white;
	background-color: #616161;
}

.Absences__editingPopupBody___Cr0kL > .Absences__popUpButtons___TxQAH > .Absences__cancel___TcMmV {
	margin-right: 20px;
}

.Absences__absences___pHr_r > .Absences__absencesToolbar___xWeHk > .Absences__absencesEmergencyMenuButton___mLUwx {
	color: white;
}

.Absences__absences___pHr_r > .Absences__absencesToolbar___xWeHk > .Absences__absencesEmergencyMenuButton___mLUwx > button {
	background-color: red;
}

.Absences__emergencyPopup___XMKKJ {
	color: rgb(var(--theme-fg-parts));
}

.Absences__emergencyPopupContent___YGIhE {
	display: block;
	font-size: var(--large-text);
	color: #f57900;
	padding: 24px 80px 24px;
	margin: 60px 24px 80px;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.Student__details___phFa5 > .Student__name___WNwBj {
	margin: 0;
}

.Student__details___phFa5 > .Student__demographics___h1HZF {
	color: rgba(var(--theme-fg-parts), 0.7);
	font-size: var(--small-text);
	font-weight: bold;
	opacity: 0.5;
	margin: 3px 0;
}

.Student__details___phFa5 > .Student__alerts___RSl_K {
	margin-top: 5px;
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
}

.Student__details___phFa5 > .Student__alerts___RSl_K > .Student__alertIcon___GRGfL > svg {
	width: 16px;
	height: 16px;
	cursor: pointer;
	transition: width 0.2s, height 0.2s;
}

.Datacube__datacube___NjKvC {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: rgb(var(--theme-bg-parts));
}

.Datacube__datacube___NjKvC .Datacube__downloadHeader___Klvqp,
.Datacube__datacube___NjKvC .Datacube__lastDownload___XwokY {
	display: flex;
	align-items: center;
	margin: 4em 20px 1em;
}

.Datacube__datacube___NjKvC .Datacube__downloadHeader___Klvqp > .Datacube__header___io4D6 {
	font-size: 24px;
	width: 250px;
}

.Datacube__datacube___NjKvC .Datacube__downloadHeader___Klvqp .Datacube__button___LFY_D {
	background: rgb(var(--theme-sel-bg-parts));
	color: rgb(var(--theme-sel-fg-parts));
}

.Datacube__datacube___NjKvC .Datacube__downloadHeader___Klvqp .Datacube__button___LFY_D.Datacube__disabled___Qesfh {
}

.Datacube__datacube___NjKvC .Datacube__lastDownload___XwokY {
	margin: 2em 20px 1em;
}

.Datacube__datacube___NjKvC .Datacube__lastDownload___XwokY > .Datacube__downloadStatus___PQ1p8 {
	min-width: 70px;
	padding: 0 4px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	border-radius: 2px;
	text-transform: uppercase;
}

.Datacube__datacube___NjKvC .Datacube__lastDownload___XwokY > .Datacube__downloadStatus___PQ1p8.Datacube__success___EUZAx {
	background-color: #8fd14f;
}

.Datacube__datacube___NjKvC .Datacube__lastDownload___XwokY > .Datacube__downloadStatus___PQ1p8.Datacube__failed___mbLmd {
	background-color: #f24726;
}

.Datacube__datacube___NjKvC .Datacube__lastDownload___XwokY > .Datacube__downloadStatus___PQ1p8.Datacube__pending___WIQAt {
	background-color: #9f9f9f;
}

.Datacube__datacube___NjKvC .Datacube__lastDownload___XwokY > .Datacube__downloadDate___vXKMB {
	padding: 0 10px 0;
	font-size: 14px;
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-07-25
 */

.PageList__PageList___ZCu9s {
	background: var(--nav-level-one);
	color: var(--nav-level-one-fg);
	width: calc(128px + 64px);
	position: relative;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (max-width: 1366px) {
	.PageList__PageList___ZCu9s {
		width: 164px;
	}
}

.PageList__PageList___ZCu9s.PageList__collapsed___wBl6V.PageList__scrollPadding____x2yI {
	width: calc(32px + 16px);
}

.PageList__PageList___ZCu9s.PageList__collapsed___wBl6V {
	width: 32px;
}

.PageList__PageList___ZCu9s > .PageList__pageContainer___tGHa4 {
	display: flex;
	flex-direction: column;
	overflow: auto;
}

.PageList__PageList___ZCu9s.PageList__collapsed___wBl6V > .PageList__pageContainer___tGHa4.PageList__scrollPaddingContainer___w7Rf6 {
	padding-right: 16px;
}

.PageList__PageList___ZCu9s::after,
.PageList__PageList___ZCu9s::before /* shadow on pages */ {
	content: '';
	pointer-events: none;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 8px;
	opacity: 0.5;
}

.PageList__PageList___ZCu9s::after {
	/* shadow on spine */
	left: -8px;
	background-image: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent);
	background-image: linear-gradient(
		to left,
		rgba(0, 0, 0, 0.4),
		15%,
		transparent
	);
}

.PageList__PageList___ZCu9s::before {
	/* shadow on pages */
	right: 0;
	background-image: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent);
	background-image: linear-gradient(
		to left,
		rgba(0, 0, 0, 0.4),
		15%,
		transparent
	);
}

.PageList__PageList___ZCu9s a {
	padding: 0 16px;
	color: inherit;
	text-decoration: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	font-size: var(--small-text);
	border: none;
	box-sizing: border-box;
	text-transform: uppercase;
	height: 96px;
	max-height: 96px;
	min-height: 64px;
	overflow: hidden;
	background: transparent;
	box-shadow: none;
	border-radius: 0;
	position: relative;
}

@media (max-height: 1000px) {
	.PageList__PageList___ZCu9s a {
		min-height: 48px;
	}
}

@media (max-height: 800px) {
	.PageList__PageList___ZCu9s a {
		min-height: 44px;
	}
}

@media (max-width: 1366px) {
	.PageList__PageList___ZCu9s a {
		padding: 0 16px 0 8px;
	}
}

.PageList__PageList___ZCu9s.PageList__collapsed___wBl6V a {
	padding: 0 8px;
	width: 32px;
	justify-content: center;
}

@media (max-height: 800px) {
	.PageList__PageList___ZCu9s.PageList__collapsed___wBl6V a {
		min-height: 32px;
	}
}

.PageList__PageList___ZCu9s a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 2px;
	opacity: 0.2;
	background: currentColor;
	transition: transform 0.2s, opacity 0.2s;
	transform-origin: center;
	transform: scaleY(0);
}

.PageList__PageList___ZCu9s a:hover::after {
	transform: scaleY(0.5);
	opacity: 0.5;
}

.PageList__PageList___ZCu9s a.active::after {
	transform: none;
	opacity: 1;
}

.PageList__PageList___ZCu9s a:hover,
.PageList__PageList___ZCu9s a.active {
	background: var(--nav-level-two);
}

.PageList__PageList___ZCu9s a.active {
	color: var(--nav-level-two-fg);
	font-weight: bold;
}

.PageList__PageList___ZCu9s a > svg {
	width: 24px;
	opacity: 0.8;
	flex-shrink: 0;
}

.PageList__PageList___ZCu9s a.active > svg {
	opacity: 1;
}

.PageList__PageList___ZCu9s a > span {
	flex: 1;
	margin: 0 0 0 8px;
	min-width: 80px;
}

.PageList__PageList___ZCu9s.PageList__collapsed___wBl6V a > span {
	display: none;
}

.PageList__PageList___ZCu9s button.PageList__toggle___zfEVA {
	background: var(--theme-button-bg);
	color: var(--theme-button-fg);
	z-index: 1;
	position: absolute;
	top: 12px;
	right: -16px;
	width: 32px;
	height: 32px;
	box-sizing: border-box;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}

@media (max-width: 1366px) {
	.PageList__PageList___ZCu9s button.PageList__toggle___zfEVA {
		display: none;
	}

	.PageList__PageList___ZCu9s button.PageList__toggle___zfEVA.PageList__visible___uf4qm {
		display: flex;
	}
}

.PageList__PageList___ZCu9s button.PageList__toggle___zfEVA > svg {
	opacity: 0.5;
	transition: transform 0.2s 0.4s;
}

.PageList__PageList___ZCu9s.PageList__collapsed___wBl6V button.PageList__toggle___zfEVA > svg {
	transform: rotate(180deg);
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by simon on 2018-07-30
 */

.SubpageList__SubpageList___Z9OKg {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 128px;
	background: var(--nav-level-two);
	color: var(--nav-level-two-fg);
	overflow: hidden;
	position: relative;
}

@media (max-width: 1366px) {
	.SubpageList__SubpageList___Z9OKg {
		max-width: 96px;
	}
}

.SubpageList__SubpageList___Z9OKg::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 8px;
	background-image: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent);
	background-image: linear-gradient(
		to left,
		rgba(0, 0, 0, 0.4),
		15%,
		transparent
	);
	pointer-events: none;
	opacity: 0.5;
}

.SubpageList__SubpageList___Z9OKg > a {
	text-decoration: none;
	font-size: var(--small-text);
	text-align: left;
	color: inherit;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 16px;
	box-sizing: border-box;
	text-transform: uppercase;
	background: transparent;
	border: none;
	box-shadow: none;
	border-radius: 0;
	position: relative;
	transition: background 0.2s, color 0.2s;
}

.SubpageList__SubpageList___Z9OKg > a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 2px;
	opacity: 0.2;
	background: currentColor;
	transition: transform 0.2s, opacity 0.2s;
	transform-origin: center;
	transform: scaleY(0);
}

.SubpageList__SubpageList___Z9OKg > a:hover::after {
	transform: scaleY(0.5);
	opacity: 0.5;
}

.SubpageList__SubpageList___Z9OKg > a.active::after {
	transform: none;
	opacity: 1;
}

.SubpageList__SubpageList___Z9OKg > a:hover,
.SubpageList__SubpageList___Z9OKg > a.active {
	background: var(--nav-level-three);
	color: var(--nav-level-three-fg);
}

.SubpageList__SubpageList___Z9OKg > a.active {
	font-weight: bold;
}
@media (max-width: 1366px) {
	.SubpageList__SubpageList___Z9OKg {
		overflow: visible;
	}

	.SubpageList__SubpageList___Z9OKg > a {
		padding: 16px 8px;
	}

	.SubpageList__SubpageList___Z9OKg.SubpageList__collapsed___JAl3r {
		max-width: 32px;
	}

	.SubpageList__SubpageList___Z9OKg.SubpageList__collapsed___JAl3r > a {
		white-space: nowrap;
		overflow: hidden;
		display: block;
		min-width: 32px;
	}

	.SubpageList__SubpageList___Z9OKg.SubpageList__collapsed___JAl3r > a:hover {
		z-index: 8;
		text-overflow: ellipsis;
		min-width: 132px;
		border-radius: 4px;
		box-shadow: var(--theme-offset-bg-more) 0 0 4px;
	}

	.SubpageList__SubpageList___Z9OKg.SubpageList__collapsed___JAl3r::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent);
		opacity: 0.5;
		pointer-events: none;
	}
}

.SubpageList__SubpageList___Z9OKg > .SubpageList__menuToggle___g0Mri {
	cursor: pointer;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	box-sizing: initial;
	color: inherit;
	position: absolute;
	background: var(--theme-button-bg);
	border-radius: 100%;
	border: 1px solid rgba(var(--theme-fg-parts), 0.1);
	z-index: 1;
	top: 12px;
	right: -16px;
	width: 30px;
	height: 30px;
	--size: 30px;
}

.SubpageList__SubpageList___Z9OKg > .SubpageList__menuToggle___g0Mri > svg {
	color: var(--theme-button-fg);
	opacity: 0.5;
}

.SubpageList__SubpageList___Z9OKg .SubpageList__spinLeft___O93TZ {
	transition: transform 0.2s 0.4s;
}

.SubpageList__SubpageList___Z9OKg .SubpageList__spinRight___ZHziG {
	transition: transform 0.2s 0.4s;
	transform: rotate(180deg);
}

@media (min-width: 1367px) {
	.SubpageList__SubpageList___Z9OKg > .SubpageList__menuToggle___g0Mri {
		display: none;
	}
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-07-25
 */

.SIP__SIP___gclvX {
	--border-colour: var(--background-colour);
	--border-width: 4px;
	display: flex;
	position: relative;
	box-sizing: border-box;
	border-left: var(--border-width) solid var(--border-colour);
	margin-right: -32px;
	width: 320px;
}

.SIP__SIP___gclvX.SIP__collapsed___iVmNt {
	width: 32px;
	transition: width 0s 0.2s;
}

.SIP__SIP___gclvX > .SIP__content___RZMhx {
	width: calc(320px - 32px);
	display: flex;
	flex-direction: column;
	background: var(--nav-level-three);
	color: var(--nav-level-three-fg);
	overflow: hidden;
	box-sizing: border-box;
	transition: transform 0.2s, opacity 0.4s;
}

.SIP__SIP___gclvX.SIP__collapsed___iVmNt > .SIP__content___RZMhx {
	transform: translateX(100%);
	opacity: 0;
	width: 0;
	transition: transform 0.2s, opacity 0.2s, width 0s 0.2s;
}

@media (max-width: 1400px) {
	.SIP__SIP___gclvX {
		position: absolute;
		top: 0;
		right: 32px;
		bottom: 0;
	}

	.SIP__SIP___gclvX:not(.SIP__collapsed___iVmNt)::after {
		content: '';
		position: absolute;
		top: 0;
		left: calc(0px - 16px - var(--border-width));
		bottom: 0;
		width: 16px;
		background: linear-gradient(
			to left,
			rgba(0, 0, 0, 0.4),
			rgba(0, 0, 0, 0.2) 20%,
			rgba(0, 0, 0, 0.1) 50%,
			transparent
		);
		background: linear-gradient(to left, rgba(0, 0, 0, 0.4), 30%, transparent);
	}

	.SIP__SIP___gclvX > .SIP__content___RZMhx {
		background: var(--nav-level-three-opaque);
	}
}

.SIP__SIP___gclvX > .SIP__nav___tsK53 {
	width: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	z-index: 2;
	position: relative;
	background: var(--nav-level-zero);
}

.SIP__SIP___gclvX > .SIP__nav___tsK53::before /* shadow on panes */ {
	content: '';
	pointer-events: none;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 8px;
	opacity: 0.5;
	left: 0;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
	background-image: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.4),
		15%,
		transparent
	);
}

.SIP__SIP___gclvX > .SIP__nav___tsK53 > a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	box-sizing: border-box;
	flex: 1;
	width: 32px;
	max-height: 64px;
	cursor: pointer;
	color: var(--nav-level-zero-fg);
	transition: background 0.2s, color 0.2s;
}

.SIP__SIP___gclvX > .SIP__nav___tsK53 > a:hover {
	background: var(--nav-level-one);
}

.SIP__SIP___gclvX > .SIP__nav___tsK53 > a.SIP__active___l7g0m {
	opacity: 1;
	background: var(--nav-level-three);
	color: var(--nav-level-three-fg);
}

.SIP__SIP___gclvX > button.SIP__toggle___D06YZ {
	background: var(--theme-button-bg);
	color: var(--theme-button-fg);
	position: absolute;
	top: 11px;
	left: -18px;
	width: 32px;
	height: 32px;
	box-sizing: border-box;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	z-index: 6;
}

.SIP__SIP___gclvX > button.SIP__toggle___D06YZ > svg {
	opacity: 0.5;
	transition: transform 0.2s 0.4s;
}

.SIP__SIP___gclvX.SIP__collapsed___iVmNt > button.SIP__toggle___D06YZ > svg {
	transform: rotate(180deg);
}

.SIP__SIP___gclvX .SIP__news___NHWM_,
.SIP__SIP___gclvX iframe {
	height: 100%;
	border: none;
	width: 100%;
}

/*
	* Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2018.
	*
	* Created by Bernadette on 2018-11-19
	*/

.General__General___W0EVC {
	overflow: auto;
	flex: 1;
}

.General__General___W0EVC > .General__notes___YWNvm {
	max-height: 30%;
	min-height: 64px;
}

.General__General___W0EVC > .General__notes___YWNvm textarea {
	height: 8em;
	resize: none;
	color: rgb(var(--theme-fg-parts));
	font: inherit;
	border: none;
	background: transparent;
	box-sizing: border-box;
	width: calc(100% - 32px);
}

.General__General___W0EVC > .General__notes___YWNvm .General__menu___jGCdg,
.General__General___W0EVC > .General__notes___YWNvm .General__save___aZ4mm {
	position: absolute;
	top: 4px;
	right: 4px;
}

.General__General___W0EVC > .General__notes___YWNvm .General__menu___jGCdg svg,
.General__General___W0EVC > .General__notes___YWNvm .General__save___aZ4mm svg {
	width: 16px;
	height: 16px;
}

.General__General___W0EVC > .General__contacts___DLenQ > .General__contact___g3L9u {
}

.General__General___W0EVC > .General__contacts___DLenQ header h2 {
	display: flex;
}

.General__General___W0EVC > .General__contacts___DLenQ .General__salutation___EXRuD {
	flex: 1;
	text-transform: initial;
}

.General__General___W0EVC > .General__contacts___DLenQ .General__type___D6HTb {
	opacity: 0.8;
}

.General__General___W0EVC > .General__contacts___DLenQ .General__flags___LX3Gb {
	display: flex;
	align-items: center;
	padding: 4px;
}

.General__General___W0EVC > .General__contacts___DLenQ .General__flags___LX3Gb span {
	margin: 4px;
}

.General__General___W0EVC > .General__contacts___DLenQ .General__flags___LX3Gb button {
	padding: 1px 8px;
	font-size: var(--small-text);
	background: var(--orange);
	color: #fff;
	margin: 0 4px;
}

.General__General___W0EVC > .General__contacts___DLenQ ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.General__General___W0EVC > .General__contacts___DLenQ ul > li {
	display: flex;
	align-items: center;
	overflow: hidden;
}

.General__General___W0EVC > .General__contacts___DLenQ ul > li .General__label___luZk3 {
	font-size: var(--small-text);
	text-transform: uppercase;
	opacity: 0.5;
	flex: 2;
	padding: 0 0 0 8px;
}

.General__General___W0EVC > .General__contacts___DLenQ ul > li .General__value___NCG1V {
	flex: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}

.General__General___W0EVC > .General__contacts___DLenQ .General__footer___ARMHi {
	display: flex;
	padding: 0 8px 8px;
}

.General__General___W0EVC > .General__contacts___DLenQ .General__address___wJ8AX {
	flex: 1;
}

.General__General___W0EVC > .General__contacts___DLenQ .General__footer___ARMHi .General__avatar___nbsS1 {
	margin: 8px 0;
}

.General__General___W0EVC > .General__stdTest___J_ua6 {
	display: flex;
	padding: 8px;
}

.General__General___W0EVC > .General__stdTest___J_ua6 > button {
	flex: 1;
	justify-content: space-around;
}

.General__General___W0EVC > .General__stdTest___J_ua6 > button svg {
	width: 16px;
	height: 16px;
}

.General__noteContents___P6vtn {
	white-space: pre-wrap;
	padding-right: 32px;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2016.
 *
 * Created by Arie on 2018-10-22
 */

.Medical__Medical___oPzGG {
	overflow: auto;
	display: flex;
	flex: 1;
	flex-direction: column;
}

.Medical__Medical___oPzGG > .Medical__consent2Go___iexFC {
	padding: 0;
	margin: 0;
	height: 100%;
}

.Medical__Medical___oPzGG > .Medical__notes___HAtai {
}

.Medical__Medical___oPzGG > .Medical__notes___HAtai ol > li {
	padding-right: 4px;
}

.Medical__noteContents___vg6T5 {
	white-space: pre-wrap;
}

.Attendance__Attendance___qBDnw {
	overflow: auto;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding-top: 8px;
}

.Attendance__Attendance___qBDnw .Attendance__controls___AIBvv {
	padding: 8px;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	justify-content: space-between;
}

.Attendance__Attendance___qBDnw .Attendance__controls___AIBvv button {
	font-size: var(--small-text);
}

.Attendance__Attendance___qBDnw .Attendance__controls___AIBvv .Attendance__mode___HSfz6,
.Attendance__Attendance___qBDnw .Attendance__controls___AIBvv .Attendance__more___tT7oO {
	flex: none;
}

.Attendance__Attendance___qBDnw .Attendance__controls___AIBvv .Attendance__range___X3FTb {
	width: 100%;
	margin: 8px 0 0;
}

.Attendance__Attendance___qBDnw .Attendance__periodBased___WhpUu,
.Attendance__Attendance___qBDnw .Attendance__timeBased___Nv9oj {
	display: flex;
	flex: 1;
	position: relative;
}

.Attendance__Attendance___qBDnw .Attendance__periodBased___WhpUu > div,
.Attendance__Attendance___qBDnw .Attendance__timeBased___Nv9oj > div {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-bottom: 1px solid var(--theme-offset-bg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.Attendance__Attendance___qBDnw .Attendance__addSolution___Pru2U {
	padding: 8px;
}

.Attendance__Attendance___qBDnw .Attendance__addSolution___Pru2U button {
	padding: 8px;
	text-align: center;
	display: flex;
	justify-content: space-around;
	max-width: 320px;
	margin: 0 auto;
}

.Timetable__Timetable___pqPwO {
	overflow: auto;
	display: flex;
	flex: 1;
	flex-direction: column;
}

.Timetable__header___eFWfZ {
	display: flex;
	flex-wrap: wrap;
	padding: 18px 8px 8px;
}

.Timetable__header___eFWfZ .Timetable__datePicker___CZirN {
	flex: 1;
}

.Timetable__header___eFWfZ .Timetable__embiggenator___eoirD,
.Timetable__header___eFWfZ .Timetable__printer___b2mvH {
	--size: 40px;
	margin: 0 0 0 8px;
}

.Timetable__WeekPopup___Md1CN {
	height: calc(100vh - 128px);
}

.Timetable__Timetable___pqPwO > .uiDailyCalendar {
	flex: 1;
}

.Timetable__WeekPopup___Md1CN .uiDailyCalendar,
.Timetable__Timetable___pqPwO .SIPTimetable,
.Timetable__Timetable___pqPwO .SIPTimetable .timetableContainer,
.Timetable__Timetable___pqPwO .SIPTimetable .dailycal {
	height: 100%;
}

.Timetable__Timetable___pqPwO .SIPTimetable .timetableControls {
	display: none;
}

.Timetable__Timetable___pqPwO
	.SIPTimetable
	.dailycal
	> .content
	> .wrapper
	> .days,
.Timetable__Timetable___pqPwO
	.SIPTimetable
	.dailycal
	> .content
	> .wrapper
	> .days
	> tbody
	> tr
	> td
	> .entriesWrapper {
	width: 100%;
}

.Timetable__Timetable___pqPwO
	.Timetable__WeekPopup___Md1CN
	.SIPTimetable
	.dailycal
	> .content
	> .wrapper
	> .days {
	width: auto;
}

.Timetable__Timetable___pqPwO
	.Timetable__WeekPopup___Md1CN
	.SIPTimetable
	.dailycal
	> .content
	> .wrapper
	> .days
	> tbody
	> tr
	> td
	> .entriesWrapper {
	width: 150px;
}

.StudentFiles__StudentFiles___gadMf {
	overflow: auto;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding-top: 12px;
}

.StudentFiles__StudentFiles___gadMf > .StudentFiles__restricted___Degz9 {
	padding: 8px;
	margin: 8px 0 0;
	border-top: 1px solid var(--theme-offset-bg);
	border-bottom: 1px solid var(--theme-offset-bg);
	flex: 0;
}

.StudentFiles__StudentFiles___gadMf .uiFileListWrapper {
	flex: 1;
	display: flex;
}

.StudentFiles__StudentFiles___gadMf .uiFileListWrapper > .uiFileList {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.StudentFiles__StudentFiles___gadMf
	.uiFileListWrapper
	> .uiFileList
	> .list.rows {
	top: 60px;
}

.StudentFiles__StudentFiles___gadMf
	.uiFileListWrapper
	> .uiFileList
	> .controls {
	flex-wrap: wrap;
}

.StudentFiles__StudentFiles___gadMf
	.uiFileListWrapper
	> .uiFileList
	> .controls
	> select {
	flex: 1;
}

.StudentFiles__StudentFiles___gadMf
	.uiFileListWrapper
	> .uiFileList
	> .controls
	> .checkbox {
	width: 100%;
	margin-top: 4px;
}

.StudentFiles__StudentFiles___gadMf
	.uiFileListWrapper
	> .uiFileList
	.uiFile.rows {
	margin: 0 0 8px;
	min-height: 34px;
}

.StudentFiles__StudentFiles___gadMf
	.uiFileListWrapper
	> .uiFileList
	.uiFile.rows
	> .name {
	padding: 0 4px;
	margin-top: -12px;
}

.StudentFiles__StudentFiles___gadMf
	.uiFileListWrapper
	> .uiFileList
	.uiFile.rows
	> .meta {
	padding: 0 4px;
	width: 160px;
	bottom: 2px;
	left: 32px;
}

.StudentFiles__StudentFiles___gadMf
	.uiFileListWrapper
	> .uiFileList
	.uiFile.rows
	> .thumbnail {
	height: unset;
	width: 32px;
}

.StudentFiles__StudentFiles___gadMf .uiFileHandlerWrapper > .uiFileHandler {
	margin: 0;
}

.Header__Header___HcPDg {
	display: flex;
	align-items: center;
	min-height: 40px;
	padding: 8px;
}

.Header__Header___HcPDg > .Header__selector___IR4b4 {
	display: flex;
	align-items: stretch;
	flex: 1;
	align-self: stretch;
	overflow: hidden;
}

.Header__Header___HcPDg > .Header__selector___IR4b4 > .Header__student___S2v10 {
	overflow: hidden;
}

.Header__Header___HcPDg > .Header__selector___IR4b4 button {
	padding-top: 4px;
	padding-bottom: 4px;
	height: 100%;
	border: none;
	font-size: var(--large-text);
	font-weight: bold;
}

.Header__Header___HcPDg .Header__menu____UnAT > button,
.Header__Header___HcPDg button.Header__clear___Qn4Ke {
	margin: 4px;
	flex-shrink: 0;
}

.Header__panel___w8mI5 {
	width: calc(320px - 32px - 16px);
}

.StudentInfo__StudentInfo___N7Vot {
	border-bottom: 2px solid var(--theme-offset-bg);
	display: flex;
	flex-wrap: wrap;
	padding: 0 8px 8px;
	position: relative;
}

.StudentInfo__StudentInfo___N7Vot.StudentInfo__hidden___k32Hy {
	display: none;
}

.StudentInfo__StudentInfo___N7Vot.StudentInfo__expanded___Myosa {
	/* No explicit styles here; styles are applied on children. */
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__details___OtsXW {
	flex: 1;
	overflow: hidden;
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__details___OtsXW > .StudentInfo__name___QQKfR {
	margin: 0 0 8px;
	opacity: 0.7;
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__details___OtsXW > .StudentInfo__name___QQKfR > .StudentInfo__firstname___L_cNo,
.StudentInfo__StudentInfo___N7Vot > .StudentInfo__details___OtsXW > .StudentInfo__name___QQKfR > .StudentInfo__prefname___tgoHc {
	margin: 0 1ex 0 0;
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__details___OtsXW > .StudentInfo__name___QQKfR > .StudentInfo__surname___md4KV {
	font-weight: bold;
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__details___OtsXW > .StudentInfo__demographics___xPeEe {
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__details___OtsXW > .StudentInfo__age___XHJEu {
	opacity: 0.7;
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__details___OtsXW > .StudentInfo__sex___IApQ0 {
	margin-bottom: 8px;
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__details___OtsXW > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__extraDetails___nYX7X {
	transition: max-height 0.2s, opacity 0.2s;
	width: 100%;
	padding: 8px 0 0;
	list-style: none;
	max-height: 0;
	opacity: 0;
}

.StudentInfo__StudentInfo___N7Vot.StudentInfo__expanded___Myosa > .StudentInfo__extraDetails___nYX7X {
	max-height: 12em; /* add some buffer, too */
	opacity: 1;
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__extraDetails___nYX7X > li {
	font-size: var(--small-text);
	display: flex;
	align-items: center;
	margin: 0 0 4px;
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__extraDetails___nYX7X > li > .StudentInfo__label___orOpd {
	text-transform: uppercase;
	font-weight: bold;
	opacity: 0.5;
	margin: 0 1ex 0 0;
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__extraDetails___nYX7X > li > .StudentInfo__value___l4aY_ {
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__glance___PyW1p {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 96px;
	transition: width 0.2s;
}

.StudentInfo__StudentInfo___N7Vot.StudentInfo__expanded___Myosa > .StudentInfo__glance___PyW1p {
	width: 64px;
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__glance___PyW1p > .StudentInfo__avatar___LIUVY {
	width: 96px;
	height: 96px;
	transition: width 0.2s, height 0.2s;
}

.StudentInfo__StudentInfo___N7Vot.StudentInfo__expanded___Myosa > .StudentInfo__glance___PyW1p > .StudentInfo__avatar___LIUVY {
	width: 64px;
	height: 64px;
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__glance___PyW1p > .StudentInfo__alerts___OWpwd {
	margin-top: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__glance___PyW1p > .StudentInfo__alerts___OWpwd > svg {
	width: 16px;
	height: 16px;
	cursor: pointer;
	transition: width 0.2s, height 0.2s;
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__glance___PyW1p > .StudentInfo__alerts___OWpwd > svg.StudentInfo__dimmed___jOZDE > g > g > path {
	fill: #a7aab0;
}

.StudentInfo__StudentInfo___N7Vot.StudentInfo__expanded___Myosa > .StudentInfo__glance___PyW1p > .StudentInfo__alerts___OWpwd > svg {
	width: 12px;
	height: 12px;
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__toggle___AuBnh {
	position: absolute;
	bottom: calc(0px - var(--size, 32px) / 2 - 1px);
	background: rgb(var(--theme-bg-parts));
	left: calc(50% - var(--size, 32px) / 2);
}

.StudentInfo__StudentInfo___N7Vot > .StudentInfo__toggle___AuBnh svg {
	transition: transform 0.2s 0.4s;
}

.StudentInfo__StudentInfo___N7Vot.StudentInfo__expanded___Myosa > .StudentInfo__toggle___AuBnh svg {
	transform: rotate(180deg);
}

.StudentPhoto__StudentPhoto___g3nOL {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.StudentPhoto__StudentPhoto___g3nOL > img {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	max-width: 60vw;
	max-height: 70vh;
}

.StudentPhoto__StudentPhoto___g3nOL > .StudentPhoto__empty___RwQsk {
	background-color: rgb(var(--theme-bg-parts));
	padding: 128px 64px;
}

.StudentPhoto__StudentPhoto___g3nOL > .StudentPhoto__navigator___XGAtW {
	margin: 16px 0 0 0;
	width: 100%;
}

.StudentPhoto__StudentPhoto___g3nOL > .StudentPhoto__navigator___XGAtW > button,
.StudentPhoto__StudentPhoto___g3nOL > .StudentPhoto__navigator___XGAtW > div {
	background-color: rgb(var(--theme-bg-parts));
}

.StandardTests__StandardTests___c8z0f {
	display: flex;
	flex-direction: column;
	padding: 8px;
}

.StandardTests__StandardTests___c8z0f > .StandardTests__studentSelector___wpfZS {
	flex: 1;
	display: flex;
	align-items: stretch;
	justify-content: center;
	margin-bottom: 8px;
}

.StandardTests__StandardTests___c8z0f > .StandardTests__studentSelector___wpfZS > .StandardTests__button___pqLoX {
	padding: 8px;
}

.StandardTests__StandardTests___c8z0f > .StandardTests__studentSelector___wpfZS > .StandardTests__button___pqLoX:first-child {
	border-radius: 50% 0 0 50%;
	border-right: none;
}

.StandardTests__StandardTests___c8z0f > .StandardTests__studentSelector___wpfZS > .StandardTests__button___pqLoX:last-child {
	border-radius: 0 50% 50% 0;
	border-left: none;
}

.StandardTests__StandardTests___c8z0f > .StandardTests__studentSelector___wpfZS > .StandardTests__name___ucJp0 {
	flex: 1;
	background-color: rgb(var(--theme-bg-parts));
	padding: 0 12px;
	border: 1px solid rgba(var(--theme-fg-parts), 0.1);
	border-color: rgba(
		var(--theme-fg-parts),
		0.1
	); /* Workaround for Safari bug -- https://codepen.io/finnhvman/post/theming-with-css-variables-in-rgba#browser-support-4 */
	display: flex;
	align-items: center;
}

/*
 * Copyright (c) SEQTA Software (a division of Saron Education Ltd.) 2018.
 *  
 * Created by huili on 2018-08-22
 */

.QuickLinks__QuickLinks___Bf9xQ {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.QuickLinks__QuickLinks___Bf9xQ > .QuickLinks__links___qjo9J {
	position: absolute;
	top: calc(100% + 8px);
	z-index: 10;
	animation-name: QuickLinks__quicklinks-appear___SrTMZ;
	animation-duration: 0.2s;
	animation-iteration-count: 1;
	width: 200px;

	color: rgb(var(--theme-fg-parts));
	text-shadow: none;
}

.QuickLinks__QuickLinks___Bf9xQ > .QuickLinks__links___qjo9J > .QuickLinks__panel___kLKqv {
	margin: 0;
	background: rgb(var(--theme-bg-parts));
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.QuickLinks__QuickLinks___Bf9xQ > .QuickLinks__links___qjo9J > .QuickLinks__panel___kLKqv::before {
	content: '';
	border: 12px solid transparent;
	border-color: rgba(var(--theme-bg-parts), 0);
	border-bottom-color: rgb(var(--theme-bg-parts));
	display: block;
	position: absolute;
	left: 50%;
	top: -24px;
	margin: 0 0 0 -12px;
}

.QuickLinks__QuickLinks___Bf9xQ > .QuickLinks__links___qjo9J > .QuickLinks__panel___kLKqv li {
	cursor: pointer;
}

.QuickLinks__QuickLinks___Bf9xQ > .QuickLinks__links___qjo9J > .QuickLinks__panel___kLKqv li:hover {
	background: var(--theme-offset-bg);
}

@keyframes QuickLinks__quicklinks-appear___SrTMZ {
	0% {
		opacity: 0;
		transform: translateY(-8px);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

/*
 * Copyright (c) SEQTA Software 2018.
 *
 * Created by stevenlaidlaw on 2018-08-02
 */

.Tour__Tour___RxwDM {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 50;
	display: flex;
	justify-content: center;
	align-items: center;
}

.Tour__Tour___RxwDM > .Tour__shadow____LmtU,
.Tour__Tour___RxwDM > .Tour__knockout___nk_6s {
	position: absolute;
	background-color: rgba(var(--theme-fg-parts), 0.5);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: all 0.3s ease-in-out;
}

.Tour__Tour___RxwDM > .Tour__knockout___nk_6s {
	background-color: transparent;
	box-sizing: border-box;
	box-shadow: inset 0 0 0 2px rgb(var(--theme-sel-bg-parts));
}

.Tour__Tour___RxwDM > .Tour__panel___u9jgs {
	z-index: 51;
	border-radius: 2px;
	background-color: rgb(var(--theme-bg-parts));
	color: rgb(var(--theme-fg-parts));
	display: flex;
	flex-direction: column;
	width: 384px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	position: relative;
}

.Tour__Tour___RxwDM > .Tour__panel___u9jgs > .Tour__content___BHQRV {
	padding: 32px;
	min-height: 160px;
}

.Tour__Tour___RxwDM > .Tour__panel___u9jgs > .Tour__content___BHQRV svg {
	width: 16px;
	height: 16px;
	vertical-align: middle;
	background: rgb(var(--theme-sel-bg-parts));
	padding: 4px;
	border-radius: 4px;
	color: rgb(var(--theme-sel-fg-parts));
}

.Tour__Tour___RxwDM > .Tour__panel___u9jgs > .Tour__content___BHQRV h1 {
	margin: 0 32px 0 0;
	font-size: var(--large-text);
}

.Tour__Tour___RxwDM > .Tour__panel___u9jgs > .Tour__done___kPbjR {
	display: flex;
	justify-content: center;
	align-items: center;
}

.Tour__Tour___RxwDM > .Tour__panel___u9jgs > .Tour__controls___H4HRe {
	display: flex;
	padding: 0 16px 16px;
	align-items: center;
}

.Tour__Tour___RxwDM > .Tour__panel___u9jgs > .Tour__controls___H4HRe > .Tour__dots___heCCJ {
	flex: 1;
	display: flex;
	justify-content: space-around;
	margin: 0 16px;
}

.Tour__Tour___RxwDM > .Tour__panel___u9jgs > .Tour__controls___H4HRe > .Tour__dots___heCCJ > svg {
	width: 8px;
	height: 8px;
}

.Tour__Tour___RxwDM > .Tour__panel___u9jgs > .Tour__quit___Oa4Z7 {
	position: absolute;
	top: 16px;
	right: 16px;
}

.TeamsActivation__Teams___PrvJ6 {
	position: absolute;
	background-color: rgba(var(--theme-fg-parts), 0.5);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 50;
	display: flex;
	justify-content: center;
	align-items: center;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn {
	z-index: 51;
	border-radius: 2px;
	background-color: rgb(var(--theme-bg-parts));
	color: rgb(var(--theme-fg-parts));
	display: flex;
	flex-direction: column;
	width: 415px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	position: relative;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK {
	padding: 32px;
	min-height: 160px;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK input {
	margin-top: 5px;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK > .TeamsActivation__inputDiv____FdzE {
	margin-bottom: 15px;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK > .TeamsActivation__inputDiv____FdzE > .TeamsActivation__label___qqfAs:after {
	content: '*';
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__quit___KJ6wd {
	position: absolute;
	top: 16px;
	right: 16px;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK > .TeamsActivation__icon___gvedp {
	margin: auto;
	width: 100%;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK h1 {
	margin: 0 32px 0 0;
	font-size: var(--large-text);
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK > .TeamsActivation__controls___X9SpR {
	display: flex;
	justify-content: space-between;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK > .TeamsActivation__footer___Vq6e1 {
	text-align: center;
	font-size: 11px;
	padding: 18px 0 0 0;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK > .TeamsActivation__footer___Vq6e1 span {
	text-decoration: underline;
	cursor: pointer;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK > .TeamsActivation__controls___X9SpR > .TeamsActivation__underline___pwjEQ {
	text-decoration: underline;
	cursor: pointer;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK > .TeamsActivation__controls___X9SpR > .TeamsActivation__icon___gvedp {
	width: 100%;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK > .TeamsActivation__controls___X9SpR > .TeamsActivation__btn___KOSdY {
	margin: auto;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK > .TeamsActivation__empty___ldmIP {
	height: 15px;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK > .TeamsActivation__enableTeamsEmpty___pdZPs {
	height: 30px;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK > .TeamsActivation__dots___wjFx3 {
	display: flex;
	justify-content: center;
	height: 35px;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK > .TeamsActivation__center___rAnhr {
	margin: auto;
}

.TeamsActivation__Teams___PrvJ6 > .TeamsActivation__panel___XmDPn > .TeamsActivation__content___vybbK > .TeamsActivation__heading___I1m26 {
	text-align: center;
}

.HelpSalesForce__helpContainer___NBDUl {
	width: 350px;
	max-height: calc(100vh - 32px);
	position: fixed;
	opacity: 1;
	border: 0;
	transition-duration: 250ms;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	transition-property: opacity, top, bottom;
	z-index: 999999;
	right: 40px;
	bottom: 12px;
	padding: 1rem;
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__header___w4tk8 {
	background: rgb(37, 179, 253);
	color: rgb(15, 62, 87);
	display: flex;
	justify-content: space-between;
	text-align: center;
	padding: 3px 5px;
	border-radius: 10px 10px 0 0;
	box-shadow: rgb(0 0 0 / 20%) 0 0 0.428571rem 0;
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__header___w4tk8 > .HelpSalesForce__icon___VYrLR {
	width: 30px;
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__header___w4tk8 > .HelpSalesForce__icon___VYrLR > .HelpSalesForce__back___Qg8W4 {
	border: 0;
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__header___w4tk8 > .HelpSalesForce__title___UWYBN {
	font-size: 1.1rem;
	letter-spacing: 0.03rem;
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__header___w4tk8 > .HelpSalesForce__button___ey3EP {
	border: 0;
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__body___sXbev {
	background: rgb(255, 255, 255);
	min-height: 5rem;
	box-shadow: rgb(0 0 0 / 20%) 0 0 0.428571rem 0;
	padding: 1.5rem 1rem 0 1.5rem;
	max-height: 30rem;
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__body___sXbev > .HelpSalesForce__content___HAdwC {
	height: 30rem;
	overflow-y: auto;
	padding-right: 10px;
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__body___sXbev > .HelpSalesForce__content___HAdwC > .HelpSalesForce__title___UWYBN {
	display: flex;
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__body___sXbev > .HelpSalesForce__content___HAdwC > .HelpSalesForce__title___UWYBN > h2 {
	font-size: 1.5rem;
	margin: 0;
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__body___sXbev > .HelpSalesForce__content___HAdwC > .HelpSalesForce__articleList___IPbUp > p {
	font-weight: 700;
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__body___sXbev > .HelpSalesForce__content___HAdwC > .HelpSalesForce__articleList___IPbUp > ul > li {
	font-size: 1rem;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: rgb(15, 62, 87);
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__body___sXbev > .HelpSalesForce__content___HAdwC > .HelpSalesForce__articleList___IPbUp > ul > li:hover {
	cursor: pointer;
	text-decoration: underline;
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__body___sXbev > .HelpSalesForce__content___HAdwC > .HelpSalesForce__warning___ZhyVt {
	height: 80%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-weight: 500;
	font-size: 1rem;
	text-align: center;
	font-size: 1.2rem;
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__body___sXbev > .HelpSalesForce__content___HAdwC > .HelpSalesForce__warning___ZhyVt > .HelpSalesForce__message___Rtugu {
	color: rgb(104, 115, 125);
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__footer___GFn3q {
	height: 6rem;
	background: rgb(255, 255, 255);
	border-top: 0.0785714rem solid rgb(233, 235, 237);
	box-shadow: rgb(0 0 0 / 8%) 0 -0.0714286rem 0.857143rem;
	border-radius: 0 0 10px 10px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-evenly;
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__footer___GFn3q > button {
	font: inherit;
	overflow: hidden;
	background: transparent;
	border: 1px solid rgba(var(--theme-fg-parts), 0.1);
	border-color: rgba(var(--theme-fg-parts), 0.1);
	padding: 12px 24px;
	cursor: pointer;
	font-weight: bold;
	border-radius: 4px;
	transition: box-shadow 0.2s, background 0.2s;
	position: relative;
	background-color: rgb(52, 63, 72);
	color: white;
	box-shadow: 0 2px 4px 1px rgb(0 0 0 / 10%);
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__footer___GFn3q > button:focus {
	outline: none;
}

.HelpSalesForce__helpContainer___NBDUl > .HelpSalesForce__footer___GFn3q > button:hover {
	box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
}

.HelpSalesForce__helpContainer___NBDUl .HelpSalesForce__spinContainer___xgH6z {
	max-height: 25rem;
	height: 25rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.FocusMode__FocusMode___wIdf3 {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgb(var(--theme-bg-parts));
	z-index: 7; /* Hard-coded z-index to prevent issues with popups and the SIP */
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.FocusMode__FocusMode___wIdf3 .FocusMode__students___bA_6e {
	flex: 2;
	display: flex;
}

.FocusMode__FocusMode___wIdf3 .FocusMode__assessmentNames___B8eO3 > div {
	max-width: 250px; /* truncate assessments with long names to avoid toolbar wrapping */
}

.FocusMode__FocusMode___wIdf3 .FocusMode__assessments___LBe3T,
.FocusMode__FocusMode___wIdf3 .FocusMode__syllabus___ZnsmJ {
	flex: 1;
	display: flex;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by bryn on 2019-05-03
 */

.Achievement__Achievement___hdtne {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	height: 100%;
}

.Achievement__Achievement___hdtne div.Achievement__main___FoyvS {
	overflow: auto;
	flex: 1;
}

.Achievement__Achievement___hdtne div.Achievement__main___FoyvS > .Achievement__marking____fNyX {
	display: flex;
	flex-direction: column;
}

.Achievement__Achievement___hdtne div.Achievement__main___FoyvS > .Achievement__marking____fNyX > h2 {
	margin: 0;
	padding: 8px 16px;
	font-weight: normal;
	font-size: 125%;
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
}

.Achievement__Achievement___hdtne div.Achievement__main___FoyvS > .Achievement__marking____fNyX > ol {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	flex-wrap: wrap;
}

.Achievement__Achievement___hdtne div.Achievement__main___FoyvS > .Achievement__marking____fNyX > ol > li {
	padding: 0 0 32px;
	display: block;
	margin: 0;
	align-items: center;
}

/*
 * Copyright (c) SEQTA Software 2019.
 *
 * Created by huili on 2019-05-07
 */

.SummarisedAssessmentFeedback__SummarisedAssessmentFeedback___kkptX {
	border-bottom: 1px solid var(--theme-offset-bg);
	padding-bottom: 8px;
	margin-bottom: 8px;
}

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

.SummarisedAssessmentFeedback__SummarisedAssessmentFeedback___kkptX > .SummarisedAssessmentFeedback__title___ePb9J {
	padding: 8px;
}

.SummarisedAssessmentFeedback__SummarisedAssessmentFeedback___kkptX > .SummarisedAssessmentFeedback__overall___aZHbb {
}

.SummarisedAssessmentFeedback__SummarisedAssessmentFeedback___kkptX > .SummarisedAssessmentFeedback__criteria___RN6st {
}

.SummarisedAssessmentFeedback__SummarisedAssessmentFeedback___kkptX > .SummarisedAssessmentFeedback__criteria___RN6st > .SummarisedAssessmentFeedback__criterion___PseMO {
	padding: 16px 8px;
	margin-bottom: 8px;
	border-bottom: 1px solid rgba(var(--theme-sel-bg-parts), 0.4);
}

.SummarisedAssessmentFeedback__SummarisedAssessmentFeedback___kkptX > .SummarisedAssessmentFeedback__criteria___RN6st > .SummarisedAssessmentFeedback__criterion___PseMO:last-child {
	border-bottom: none;
}

.SummarisedAssessmentFeedback__SummarisedAssessmentFeedback___kkptX > .SummarisedAssessmentFeedback__criteria___RN6st > .SummarisedAssessmentFeedback__criterion___PseMO > .SummarisedAssessmentFeedback__results___hrb0h {
	display: flex;
}

.SummarisedAssessmentFeedback__SummarisedAssessmentFeedback___kkptX > .SummarisedAssessmentFeedback__criteria___RN6st > .SummarisedAssessmentFeedback__criterion___PseMO > .SummarisedAssessmentFeedback__results___hrb0h > .SummarisedAssessmentFeedback__label___wWDBF {
	flex: 1;
}

.SummarisedAssessmentFeedback__SummarisedAssessmentFeedback___kkptX > .SummarisedAssessmentFeedback__criteria___RN6st > .SummarisedAssessmentFeedback__criterion___PseMO > .SummarisedAssessmentFeedback__results___hrb0h > .SummarisedAssessmentFeedback__score___FjsSo {
	width: 50%;
	margin-right: 8px;
}

.SummarisedAssessmentFeedback__SummarisedAssessmentFeedback___kkptX
	> .SummarisedAssessmentFeedback__criteria___RN6st
	> .SummarisedAssessmentFeedback__criterion___PseMO
	> .SummarisedAssessmentFeedback__results___hrb0h
	> .SummarisedAssessmentFeedback__score___FjsSo:last-child {
	margin: 0;
}

.SummarisedAssessmentFeedback__SummarisedAssessmentFeedback___kkptX > .SummarisedAssessmentFeedback__criteria___RN6st > .SummarisedAssessmentFeedback__criterion___PseMO > .SummarisedAssessmentFeedback__results___hrb0h.SummarisedAssessmentFeedback__invalid___o95Uc {
}

.SummarisedAssessmentFeedback__SummarisedAssessmentFeedback___kkptX > .SummarisedAssessmentFeedback__criteria___RN6st > .SummarisedAssessmentFeedback__criterion___PseMO > .SummarisedAssessmentFeedback__Engagement___lf2LT {
}

.SummarisedAssessmentFeedback__SummarisedAssessmentFeedback___kkptX
	> .SummarisedAssessmentFeedback__criteria___RN6st
	> .SummarisedAssessmentFeedback__criterion___PseMO:last-child
	> .SummarisedAssessmentFeedback__Engagement___lf2LT {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.SummarisedAssessmentFeedback__Engagement___lf2LT > .SummarisedAssessmentFeedback__teacher____4yaY.SummarisedAssessmentFeedback__feedback___ZgxuS > .SummarisedAssessmentFeedback__public___MPQjM > h2,
.SummarisedAssessmentFeedback__Engagement___lf2LT > .SummarisedAssessmentFeedback__teacher____4yaY.SummarisedAssessmentFeedback__feedback___ZgxuS > .SummarisedAssessmentFeedback__private___e6bHV {
	opacity: 0.5;
}

.SummarisedAssessmentFeedback__Engagement___lf2LT > .SummarisedAssessmentFeedback__student___gynlp.SummarisedAssessmentFeedback__feedback___ZgxuS > .SummarisedAssessmentFeedback__prompt____o1_r {
	font-weight: bold;
	margin-top: 8px;
	opacity: 0.5;
}

.SummarisedAssessmentFeedback__Engagement___lf2LT > .SummarisedAssessmentFeedback__student___gynlp.SummarisedAssessmentFeedback__feedback___ZgxuS > .SummarisedAssessmentFeedback__predicted___SUPyU {
	display: flex;
	flex-direction: column;
}

.SummarisedAssessmentFeedback__SummarisedAssessmentFeedback___kkptX label {
	padding-left: 0;
}

.AIValidationMessage__redTextStyling___Xw5QP {
  color: #B3261E!important;
}

.AIValidationMessage__redBorderStyling___ULdFO {
  border-color: #B3261E!important;
}

.AIValidationMessage__aiValidationMessage___PqKUL {
  position: absolute;
  color: #B3261E!important;
}
.AILessonInformation__aiLessonInformation___RiMGk {
  display: flex;
  flex-direction: column;

  margin-bottom: 2rem;
}

.AILessonInformation__aiLessonInformationTop___IMYbV {
  margin-bottom: 2rem;
}

.AILessonInformation__aiLessonInformationSubject___VFf47 {

}

.AILessonInformation__aiLessonInformationBottom___O0kZf {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.AILessonInformation__aiLessonInformationYearLevel___JyKjO {
  position: relative;
  width: 48%;
}

.AILessonInformation__aiLessonInformationYearLevel___JyKjO select {
  border: none!important;
  padding: 0!important;
}

.AILessonInformation__aiLessonInformationYearLevelSelect___bxfpv {
  display: inline-block;
  color: rgb(var(--theme-fg-parts));
  background: rgb(var(--theme-bg-parts));
  border-radius: 4px;
  border: 1px solid var(--theme-offset-bg);
  padding: 7px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.AILessonInformation__aiLessonInformationLessonLength___lyr92 {
  position: relative;
  width: 48%;
}

.AILessonInformation__aiLessonInformationYearLevel___JyKjO p,
.AILessonInformation__aiLessonInformationLessonLength___lyr92 p,
.AILessonInformation__aiLessonInformationSubject___VFf47 p {
  color: gray;
  padding-left: 0!important;
  margin-bottom: 0!important;
}

.AILessonInformation__redTextStyling___d8ZeB {
  color: #B3261E!important;
}

.AILessonInformation__redBorderStyling___op7qt {
  border-color: #B3261E!important;
}

.AILessonInformation__aiLessonInformationValidationMessage___qtboe {
  position: absolute;
  color: #B3261E!important;
}
.AICurriculumLinks__aiCurriculumLinks___TcgX1 {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.AICurriculumLinks__aiCurriculumLinks___TcgX1 input[type='checkbox'] {
  margin: 0;
  margin-right: 0.8rem!important;
}

.AICurriculumLinks__aiCurriculumLinksHeader___oAJ6k {
  display: flex;
  align-items: flex-start;
  padding-left: 0.5rem;
  margin-bottom: 0.4rem;
}

.AICurriculumLinks__aiCurriculumLinksTitle___XDzar {
  color: gray;
  margin-bottom: 0!important;
  margin-right: 0.3rem;
}

.AICurriculumLinks__aiCurriculumLinksList___ccztb {
  display: flex;
  flex-direction: column;
  height: 160px;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  padding: 0.5rem;
  overflow-y: scroll;
}

.AICurriculumLinks__aiCurriculumLinkItem___e20HN {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.AICurriculumLinks__aiCurriculumLinkItemCode___pNi9Y {
  font-weight: 900;
}

.AICurriculumLinks__aiCurriculumLinkItemCheckbox___xEkbk,
.AICurriculumLinks__aiCurriculumLinksHeaderCheckbox___DhXGq {
  margin-right: 1rem!important;
}

.AICurriculumLinks__aiCurriculumLinkItemDetails___JPMMZ {
  display: flex;
  flex-direction: column;
}

.AIEssentialLearning__aiEssentialLearning___dm5MG {
  position: relative;
  display: flex;
  flex-direction: column;

  margin-bottom: 2rem;
}

.AIEssentialLearning__aiEssentialLearningHeader___cR6d5 {
  display: flex;
  align-items: flex-end;
}

.AIEssentialLearning__aiEssentialLearningHeader___cR6d5 p {
  color: gray;
  margin-bottom: 0!important;
  margin-right: 0.4rem;
}

.AIEssentialLearning__aiEssentialLearning___dm5MG textarea {
  height: 100px;
}

.AIEssentialLearning__aiEssentialLearning___dm5MG label {
  padding-left: 0!important;
}

.AIEssentialLearning__aiEssentialLearningValidationContainer___IpAoi {
  bottom: 200px;
}

.AIAdditionalRequirements__aiAdditionalRequirements___aQPSU {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 2rem;
}

.AIAdditionalRequirements__aiAdditionalRequirementsHeader___qKJyE {
  display: flex;
  align-items: flex-end;
}

.AIAdditionalRequirements__aiAdditionalRequirementsHeader___qKJyE p {
  color: gray;
  margin-bottom: 0!important;
  margin-right: 0.4rem;
}

.AIAdditionalRequirements__aiAdditionalRequirements___aQPSU textarea {
  height: 100px;
}

.AIAdditionalRequirements__aiAdditionalRequirements___aQPSU label {
  padding-left: 0!important;
}

.AIAdditionalRequirements__aiAdditionalRequirementsExamples___btVdf {
  margin-top: 1rem;
  color: gray;
  font-style: italic;
}

.AIAdditionalRequirements__aiAdditionalRequirementsExamples___btVdf > .AIAdditionalRequirements__examplesHeader___oX0kw {
  font-weight: 600;
}

.AIAdditionalRequirements__examplesBody___XEvYD p {
  margin-bottom: 0.3rem;
}
.AISubmission__aiSubmission___RQ4yj {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 20px;
}

.AISubmission__aiSubmission___RQ4yj > .AISubmission__aiSubmissionButton___Ci3hg {
	padding: 0;
	background-color: #6040b0;
	color: #ffffff;
	width: 180px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.AISubmission__aiSubmission___RQ4yj > .AISubmission__aiSubmissionButton___Ci3hg > svg {
	margin: 0;
	padding-top: 4px;
}

.AIPromptModal__aiPromptModal___AHpxk {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  padding: 40px 27px;
  height: 550px;
}

.AIPromptModal__aiPromptModalLeft___pfTap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.AIPromptModal__aiPromptModalRight___NtX99 {
  display: flex;
  flex-direction: column;
  padding-left: 52px;
  width: 100%;
  height: 100%;
}

.AIPromptModal__aiCurriculumLinksWarning___hLqGL {
  display: flex;
  align-items: flex-start;
}

.AIPromptModal__aiCurriculumLinksWarning___hLqGL p {
  margin-left: 8px;
}

.AIPromptModal__aiPromptModalRight___NtX99 > .AIPromptModal__aiResultChecking___wqM25 {
  color: #868686;
  align-self: flex-end;
  margin-top: auto;
}

.AISubmissionLoadingModal__aiSubmissionLoadingModal___EtODS {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 550px;
}

.AISubmissionLoadingModal__aiSubmissionLoadingModalDraftingLessonPlan___zeThB {
  font-weight: 900;
}

.AISubmissionLoadingModal__aiSubmissionLoadingModalSpinner___TVhZS {
  margin-top: 20px;
  flex: initial!important;
}

.AISubmissionLoadingModal__aiSubmissionLoadingModal___EtODS > .AISubmissionLoadingModal__aiSubmissionErrorContainer___E2IaJ > p {
  font-size: 13px;
}

.AISubmissionLoadingModal__aiSubmissionLoadingModal___EtODS > .AISubmissionLoadingModal__aiSubmissionErrorContainer___E2IaJ > .AISubmissionLoadingModal__onOkButton___ONlLL {
  margin: 20px auto 0;
  width: 70px;
  height: 40px;
  background-color: #112846;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.AICreditCount__aiCreditCount___m3kIL {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 176px;
	height: 40px;
	padding: 12px;
	background-color: #f2f2f2;
	border-radius: 4px;
	text-align: center;
}

.AICreditCount__aiSpinner___O86Cv {
	margin-top: 16px;
}

.AICreditCount__aiCreditCount___m3kIL > .AICreditCount__aiCreditCountPrimary___jbYFW {
	margin: 0;
	font-weight: normal;
	color: #911606;
	font-size: 12px;
}
.AICreditCount__aiCreditCount___m3kIL > .AICreditCount__aiCreditCountSecondary___o99jc {
	font-size: 0.8rem;
	color: #868686;
	margin: 0;
	font-size: 10px;
	padding-top: 2px;
}

.AILessonPlanner__aiLessonPlanner___l3bvw {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.AILessonPlanner__aiLessonPlanner___l3bvw a {
  padding: 0;
  border: none;
  color: #006BCC !important;
  text-decoration: underline;
}

.AILessonPlanner__aiLessonPlannerWarningContainer___ZhxLs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  margin-top: 16px;
}

.AILessonPlanner__noSubjectWarningDisable___vCDMv {
  display: none;
}

.AILessonPlanner__noSubjectWarningAvailable___qX7Bf {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 176px;
  height: 54px;
  padding: 12px;
  background-color: #f2f2f2;
  border-radius: 4px;
  text-align: center;
}

.AILessonPlanner__noSubjectWarningAvailable___qX7Bf > .AILessonPlanner__warningPrimary___FQGtr {
  margin: 0;
  font-weight: normal;
  color: #911606;
  font-size: 12px;
}

.AILessonPlanner__noSubjectWarningAvailable___qX7Bf > .AILessonPlanner__warningSecondary___Vd2v6 {
  font-size: 0.8rem;
  color: #868686;
  margin: 0;
  font-size: 10px;
  padding-top: 2px;
}

.AILessonPlanner__aiLessonPlanner___l3bvw .AILessonPlanner__manualButton____N4Vy {
  margin-top: 16px;
  color: #6040B0;
  font-size: 14px;
  width: 150px;
  height: 40px;
  justify-content: center;
}

.AILessonPlanner__aiLessonPlanner___l3bvw .AILessonPlanner__aiButton___NZKSx {
  margin-top: 20px;
  width: 150px;
  height: 40px;
  justify-content: center;
  font-size: 14px;
  border: none;
}

.AILessonPlanner__aiLessonPlanner___l3bvw .AILessonPlanner__aiButtonAvailable___woOkq {
  background-color: #6040B0;
  color: #ffffff;
}


.AILessonPlanner__aiLessonPlanner___l3bvw > .AILessonPlanner__aiButtonAvailable___woOkq > svg {
  margin: 0;
	padding-top: 4px;
}


.AILessonPlanner__aiLessonPlanner___l3bvw > .AILessonPlanner__aiButtonDisable___iSL68 {
  margin-bottom: 16px;
  background-color: #6040B0;
  color: #ffffff;
}


.AILessonPlanner__aiLessonPlanner___l3bvw > .AILessonPlanner__aiButtonDisable___iSL68 > svg {
  margin: 0;
	padding-top: 4px;
}


.AILessonPlanner__aiLessonPlanner___l3bvw .AILessonPlanner__creditCount___EpCpx {
  display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
  margin-top: 16px;
  width: 200px;
  height: 52px;
  background-color: #F2F2F2;
  border-radius: 2px;
}
.AILessonEditorFooter__aILessonEditorFooter___YVF7C {
  display: flex;
  align-items: end;
  flex-direction: row;
  justify-content: flex-end;
}

.AILessonEditorFooter__aILessonEditorFooter___YVF7C > .AILessonEditorFooter__newDraftButton___CB1iD {
	padding: 0;
	background-color: #6040b0;
	color: #ffffff;
	width: 220px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.AILessonEditorFooter__aILessonEditorFooter___YVF7C > :nth-child(2) {
  margin-left: 24px;
}
.AILessonEditorFooter__aILessonEditorFooter___YVF7C > .AILessonEditorFooter__newDraftButton___CB1iD > svg {
	margin: 0;
	padding-top: 4px;
}

.AILessonEditorFooter__aiLessonEditorFooterNewDraftModal___X87nu {
	font-size: 13px;
	padding: 2rem;
}

.AILessonEditorFooter__aiLessonEditorFooterNewDraftModal___X87nu > p {
	margin: 0;
}

.AILessonEditorFooter__aiResultChecking___gNuh1 {
	margin-top: 20px;
	text-align: right;
	color: #868686;
	font-size: 10px;
}

.AILessonEditorCancelModal__aiLessonEditorCancelModal___tfr9D {
  font-size: 13px;
  padding: 2rem;
}

