/**
 * @license
 *
 * Font Family: Satoshi
 * Designed by: Deni Anggara
 * URL: https://www.fontshare.com/fonts/satoshi
 * © 2024 Indian Type Foundry
 *
 * Font Styles:
 * Satoshi Variable(Variable font)
 * Satoshi Variable Italic(Variable font)
 * Satoshi Light
 * Satoshi Light Italic
 * Satoshi Regular
 * Satoshi Italic
 * Satoshi Medium
 * Satoshi Medium Italic
 * Satoshi Bold
 * Satoshi Bold Italic
 * Satoshi Black
 * Satoshi Black Italic
 *
*/


/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 900.0;
*
* available axes:

* 'wght' (range from 300.0 to 900.0)

*/


@font-face {
  font-family: 'Satoshi-Variable';
  src: url('../../fonts/satoshi/Satoshi-Variable.woff2') format('woff2'),
       url('../../fonts/satoshi/Satoshi-Variable.woff') format('woff'),
       url('../../fonts/satoshi/Satoshi-Variable.ttf') format('truetype');
       font-weight: 300 900;
       font-display: swap;
       font-style: normal;
}


/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 900.0;
*
* available axes:

* 'wght' (range from 300.0 to 900.0)

*/

@font-face {
  font-family: 'Satoshi-VariableItalic';
  src: url('../../fonts/Satoshi-VariableItalic.woff2') format('woff2'),
       url('../../fonts/Satoshi-VariableItalic.woff') format('woff'),
       url('../../fonts/Satoshi-VariableItalic.ttf') format('truetype');
       font-weight: 300 900;
       font-display: swap;
       font-style: italic;
}

/* global styles */

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index: inherit;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
	scroll-padding: 5em;
}

html,
body {
	width: 100%;
	font-family: 'Satoshi-Variable', sans-serif;
}

body {
	color: #21243e;
	background: #dce9eb;
	padding: 64px 0 40px 0;
}

@media screen and (min-width: 580px) {
	body {
		padding: 85px 0 40px 0;
	}
}

img {
	margin-bottom: 30px;
	display: block;
	height: auto;
}

svg {
/*	margin-bottom: 30px;*/
	display: block;
	height: auto;
}

/* START Image with round border */

.round-image-border {
	border-radius: 50%;
	border: 5px solid #ddd;
}

/* END Image with round border */

/* START hr style */

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cfcfcf;
	margin: 30px 0;
	padding: 0;
}

hr.solid {
	margin: 0 30px;
}

.accessibility-theme--1 .section-dark hr {
	border-color: white;
	opacity: 0.3;
}
.accessibility-theme--2 hr {
	border-color: #cfcfcf;
}
.accessibility-theme--3 hr {
	border-color: #5d007b;
	opacity: 0.3;
}
.accessibility-theme--4 hr {
	border-color: #32119e;
	opacity: 0.3;
}
.accessibility-theme--5 hr {
	border-color: #2c47e2;
	opacity: 0.3;
}

.accessibility-theme--6 hr {
	border-color: #ffc845;
	opacity: 0.3;
}
/* END hr style */

/* START helper classes */

.no-margin {
	margin: 0 !important;
}

.no-margin-bottom {
	margin-bottom: 0 !important;
}

.no-border {
	border: 0;
}

.text-centered {
	text-align: center;
}

/* END helper classes */

/* Header - top bar */

header {
	top: 0;
	left: 0;
	right: 0;
	background: white;
	color: #241d41;
	z-index: 100;
	position: absolute;
}

.header-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 30px;
	
}

.header-right {
	margin: auto 0;
}

.header-left {
	margin: auto 0;
}

.logo-header {
	height: 24px;
	margin: 0;
}

@media only screen and (min-width: 600px) {
	.logo-header {
		height: 36px;
	}
}

nav ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0;
	margin: 0;
}

nav ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
}

nav ul li a {
	display: block;
	padding: 10px 20px;
	color: #241d41;
	text-decoration: none;
}

nav ul li a:last-child {
	padding-right: 0;
}

.header-your {
	display: none;
}

.header-progress {
	text-transform: capitalize;
}
.header-exit {
	text-transform: capitalize;
}

.header-course {
	display: none;
}

@media only screen and (min-width: 600px) {
	.header-your {
		display: inline;
	}

	.header-progress {
		text-transform: lowercase;
	}

	.header-course {
		display: inline;
	}
}

/* Main page layout */

.content-wrapper {
/*	max-width: 800px;
	margin: 0 auto; */
}

.page-layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.content-area {
	width: 100%;
	margin-right: 0px;
}


/* START Section layouts (light, dark) */

.section-standard {
	margin-bottom: 10px;
/*	max-width: 800px;*/
	margin: 0 auto;
}

.section-light {
	background-color: white;
	color: #21243e;
/*	margin-bottom: 30px; */
	padding-bottom: 30px;
	position: relative;
}

.section-dark {
	background: linear-gradient(to bottom, #00646e 0%, #0199a8 100%);
	background-color: #00646e;
	color: white;
	/*  margin-bottom: 10px;*/
/*	margin-bottom: 30px;*/
	padding-bottom: 30px;
	position: relative;
}

.dark-interaction {
	margin-top: 20px;
	border: 1px solid #21243e;
}

.light-interaction {
	padding-top: 20px;
}

/* Section with overlapping roundal - top */

.overlap-top {
	margin-top: 95px;
	padding-top: 50px;
}

.section-overlap-top-wrapper {
	width: 100%;
	position: absolute;
	top: -65px;
	left: 0;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.section-overlap-top-circle {
	width: 130px;
	height: 130px;
	border-radius: 250px;
	font-size: 32px;
	font-weight: 800;
	color: #fff;
	line-height: 130px;
	text-align: center;
	background: #21243e;
}

/* Section with overlapping roundal - bottom */

.overlap-bottom {
	margin-bottom: 95px;
	padding-bottom: 50px;
}

.section-overlap-bottom-wrapper {
	width: 100%;
	position: absolute;
	bottom: -65px;
	left: 0;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.section-overlap-bottom-circle {
	width: 130px;
	height: 130px;
	border-radius: 250px;
	font-size: 32px;
	font-weight: 800;
	color: #fff;
	line-height: 130px;
	text-align: center;
	background: #21243e;
}

/* Sections joined with a roundal (clock) */

.section-join-top {
	margin-bottom: 90px;
}

.section-join-bottom {
	margin-top: -50px;
}

.accessibility-theme--2 .section-join-top, .accessibility-theme--3 .section-join-top, .accessibility-theme--4 .section-join-top, .accessibility-theme--5 .section-join-top, .accessibility-theme--6 .section-join-top {
	margin-left: auto;
	margin-right: auto;
	width: 800px;
}

.accessibility-theme--2 .section-join-top {border: 1px solid rgba(0, 0, 0, 0.3);}
.accessibility-theme--3 .section-join-top {border: 1px solid rgba(0, 0, 0, 0.3);}
.accessibility-theme--4 .section-join-top {border: 1px solid rgba(0, 0, 0, 0.3);}
.accessibility-theme--5 .section-join-top {border: 1px solid rgba(0, 0, 0, 0.3);}
.accessibility-theme--6 .section-join-top {border: 1px solid rgba(255, 255, 255, 0.3);}

.accessibility-theme--2 .section-join-bottom, .accessibility-theme--3 .section-join-bottom, .accessibility-theme--4 .section-join-bottom, .accessibility-theme--5 .section-join-bottom, .accessibility-theme--6 .section-join-bottom {
	margin-left: auto;
	margin-right: auto;
	width: 800px;
}

.accessibility-theme--2 .section-join-bottom {border: 1px solid rgba(0, 0, 0, 0.3);}
.accessibility-theme--3 .section-join-bottom {border: 1px solid rgba(0, 0, 0, 0.3);}
.accessibility-theme--4 .section-join-bottom {border: 1px solid rgba(0, 0, 0, 0.3);}
.accessibility-theme--5 .section-join-bottom {border: 1px solid rgba(0, 0, 0, 0.3);}
.accessibility-theme--6 .section-join-bottom {border: 1px solid rgba(255, 255, 255, 0.3);}

.section-join-wrapper {
	width: 100%;
	position: absolute;
	bottom: -42px;
	left: 0;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: -20px;
	z-index: 100;
}

.section-join-circle {
	width: 80px;
	height: 80px;
	border-radius: 40px;
	font-size: 32px;
	font-weight: 800;
	color: #fff;
	line-height: 130px;
	text-align: center;
	background: #21243e;
}

.clock {
	height: 40px;
	width: 40px;
	margin-bottom: 0;
}

.accessibility-theme--6 .clock.st1 {
	fill: #003b49;
}

/* END section styling */

/* START Key point */

.key-point {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 0 auto;
	margin-bottom: 40px;
	margin-top: 40px;
}

.key-point-key {
	text-align: center;
	color: #008591;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 60px;
}

.key-point-point {
	text-align: center;
	color: #008591;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 60px;
}

.key-point-circle {
	/* Change these values to increase or decrease circle size (270) */
	width: 270px;
	height: 270px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 200px;
	background-color: #008591;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: white;
	margin-bottom: 10px;
}

.key-point-circle-content {
	padding-left: 25px;
	padding-right: 25px;
	display: -webkit-box;
	text-align: center;
	/* Also increase or decrease this value (270) */
	max-height: 270px;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0;
}

@media only screen and (min-width: 650px) {
	.key-point {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.key-point-key {
		text-align: right;
		margin-right: 20px;
	}
	.key-point-point {
		text-align: left;
		margin-left: 20px;
	}
	.key-point-circle {
		margin-bottom: 0;
	}
}

.key-point-circle-border {
  background: none;
  border: 2px solid #008591;
  color: inherit;
}

.key-point-circle-border * {
  margin: 0;
}

.key-point-circle-border .key-point-circle-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.key-point-stat {
  font-size: 3.2rem;
  color: #008591;
}

.key-point-source {
  font-size: 0.9rem;
  opacity: 0.7;
}

.accessibility-theme--1 .section-dark .key-point-stat {
  color: white !important;
}

.accessibility-theme--1 .section-dark .key-point-circle-border {
  border-color: white !important;
}

.key-point-circle-large {
  height: 300px;
  width: 300px;
}

.key-point-circle-x-large {
  height: 320px;
  width: 320px;
}

.accessibility-theme--2 .key-point-circle-border {
  border-color: black;
}

.accessibility-theme--3 .key-point-circle-border {
  border-color: #5d007b;
}

.accessibility-theme--4 .key-point-circle-border {
  border-color: #32119e;
}

.accessibility-theme--5 .key-point-circle-border {
  border-color: #2c47e2;
}

.accessibility-theme--6 .key-point-circle-border {
  border-color: #ffc845;
}

.accessibility-theme--2 .key-point-stat  {
  color: black;
}

.accessibility-theme--3 .key-point-stat {
  color: #5d007b;
}

.accessibility-theme--4 .key-point-stat {
  color: #32119e;
}

.accessibility-theme--5 .key-point-stat {
  color: #2c47e2;
}

.accessibility-theme--6 .key-point-stat {
  color: #ffc845;
}

/* END key point */

/* START components */

.component-wrap-standard {
	/*  padding: 50px 45px 10px 45px;*/
	padding: 50px 32px 10px 32px;
	max-width: 800px;
	margin: 0 auto;
}

.component-wrap-interactive {
	padding-left: 0;
	padding-right: 0;
		max-width: 800px;
	margin: 0 auto;
}

@media only screen and (min-width: 700px) {
	.component-wrap-interactive {
		padding-left: 32px;
		padding-right: 32px;
	}
}


.component-wrap-video {
	max-width: 800px;
	margin: 0 auto;
}

@media only screen and (min-width: 700px) {
	.component-wrap-video {
		padding: 10px 32px 10px 32px;
	}
}

.component-wrap-afterinter {
	/*  padding: 0px 45px 0px 45px;*/
	padding: 0px 32px 0px 32px;
}

/*  Component with background image. 
Background images managed in seperate css file.
Add unique class or id to components with bg image */

.component-wrap-bg-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 0 auto;
	max-width: 800px;
	padding: 0;;
}

@media only screen and (min-width: 700px) {
	.component-wrap-bg-img {
		padding: 0px 32px 0px 32px;
	}
}

/*
.component-wrap-standard > :last-child {
margin-bottom: 0;
}
*/

.component-wrap-bg-img > :last-child {
	margin-bottom: -30px;
}

.bg-img-content-area {
	/*  padding: 40px 40px 0px 50px;*/
	padding: 40px 32px 0px 32px;
	margin-bottom: 30px;
}

.bg-img-img-area {
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	height: 0;
}

@media only screen and (min-width: 700px) {
	.component-wrap-bg-img {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.bg-img-content-area {
		width: 50%;
		/*	padding: 40px 10px 0px 50px; */
		padding: 40px 10px 0px 0px;
		margin-bottom: 30px;
	}
	.bg-img-img-area {
		width: 50%;
		height: auto;
		padding-top: 0;
	}
}

/* END components */

/* START 2 column layout */

.columns-2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
/*	margin-bottom: 30px;*/
	gap: 30px;
}

.columns-2-column-1 {
	width: 100%;
/*
	margin-right: 0px;
	margin-bottom: 30px;
*/
}

/*
.columns-2-column-1 > :last-child,
.columns-2-column-2 > :last-child {
	margin-bottom: 0;
}
*/

.columns-2-column-1 ul + .columns-2-column-2 ul {
	margin-bottom: 0;
}

.columns-2-column-2 {
	width: 100%;
}

@media only screen and (min-width: 600px) {
	.columns-2 {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.columns-2-column-1 {
		width: 50%;
/*
		margin-right: 30px;
		margin-bottom: 0;
*/
	}
	.columns-2-column-2 {
		width: 50%;
	}
}

.columns-2.no-gap-stacked {
	gap: 0;
}

@media only screen and (min-width: 600px) {
	.columns-2.no-gap-stacked {
		gap: 30px;
	}
}

/* END 2 column layout */

/* START Half column layout */

.column-half {
	width: 100%;
	margin-bottom: 30px;
}

@media only screen and (min-width: 600px) {
	.column-half {
		width: 50%;
	}
}

/* END Half column layout */

/* START 3 column layout (v1) */

.columns-3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 30px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.columns-3-column-1 {
	width: 100%;
	margin-right: 0px;
	margin-bottom: 30px;
}

.columns-3-column-2 {
	width: 100%;
	margin-right: 30px;
	margin-bottom: 30px;
}

.columns-3-column-3 {
	width: 100%;
	margin-bottom: 0px;
}

@media only screen and (min-width: 650px) {
	.columns-3 {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.columns-3-column-1 {
		width: 33%;
		margin-right: 20px;
		margin-bottom: 0;
	}
	.columns-3-column-2 {
		width: 33%;
		margin-right: 20px;
		margin-bottom: 0;
	}
	.columns-3-column-3 {
		width: 33%;
		margin-bottom: 0;
	}
}

/* END 3 column layout (v1) */

/* START 3 column layout (v2) - Same as v1 but with centered text on mobile */

.columns-3v2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 30px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.columns-3v2-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.columns-3v2-column-1 {
	width: 100%;
	margin-right: 0px;
	margin-bottom: 30px;
}

.columns-3v2-column-2 {
	width: 100%;
	margin-right: 30px;
	margin-bottom: 30px;
}

.columns-3v2-column-3 {
	width: 100%;
	margin-bottom: 0px;
}

.columns-3v2-text {
	text-align: center;
}

.columns-3v2-img {
	max-width: 300px;
	margin: 0 auto;
	margin-bottom: 20px;
}

@media only screen and (min-width: 600px) {
	.columns-3v2-column {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-ms-flex-line-pack: center;
		align-content: center;
	}
	.columns-3v2-img {
		margin-right: 30px;
		margin-bottom: 0;
	}
	.columns-3v2-text {
		margin: auto 0;
		text-align: left;
	}
}

@media only screen and (min-width: 800px) {
	.columns-3v2 {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.columns-3v2-column {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.columns-3v2-column-1 {
		width: 33%;
		margin-right: 30px;
		margin-bottom: 0;
	}
	.columns-3v2-column-2 {
		width: 33%;
		margin-right: 30px;
		margin-bottom: 0;
	}
	.columns-3v2-column-3 {
		width: 33%;
		margin-bottom: 0;
	}
	.columns-3v2-img {
		margin-right: 0px;
	}
	.columns-3v2-text {
		text-align: center;
	}
}

/* END 3 column layout (v2) - Same as v1 but with centered text on mobile */

/*  START The rules */

.the-rules {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 600px;
	margin: 0 auto;
	margin-bottom: 30px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.the-rules-circle {
	width: 208px;
	height: 208px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 104px;
	background-color: #008591;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: white;
	margin-right: 0px;
	margin-bottom: 30px;
}

.the-rules-circle-content {
	padding-left: 25px;
	padding-right: 25px;
	display: -webkit-box;
	text-align: center;
	max-height: 200px;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.the-rules-text {
	text-align: center;
}

@media only screen and (min-width: 600px) {
	.the-rules {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.the-rules-circle {
		margin-right: 30px;
		margin-bottom: 0;
	}
	.the-rules-text {
		text-align: left;
	}
}

/* END the rules */


/* START Tabs with numbers */

.tabs-numbers {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.tab {
	cursor: pointer;
	line-height: 1;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin-right: 15px;
	background-color: red;
	border-radius: 50%;
	height: 40px;
	width: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.section-light .tabs-numbers .tab {
	background-color: #7fc2c8;
	color: white;
}

.section-light .tabs-numbers .tab.active {
	background-color: #008894;
}

.section-light .tabs-numbers .tab:hover {
	background-color: #008894;
}

.section-dark .tabs-numbers .tab {
	border: 3px solid white;
	color: white;
	background-color: transparent;
}

.section-dark .tabs-numbers .tab.active {
	background-color: white;
	color: #008591;
}

.section-dark .tabs-numbers .tab:hover {
	background-color: white;
	color: #008591;
}

/* END Tabs with numbers */

/* START Circle colours */

.circle-grey-1 {
	background-color: #6dc5cc;
	color: white;
}

.circle-grey-2 {
	background-color: #1baeb7;
	color: white;
}

.circle-grey-3 {
	background-color: #0095a2;
	color: white;
}

.circle-red {
	background-color: #b00000;
	color: white;
}

.circle-amber {
	background-color: #e4a100;
	color: white;
}

.circle-light-blue {
	background-color: #8ac4ff;
	color: white;
}

/* END Circle colours */

/* START Next steps */

.next-steps {
/*	padding-top: 20px;*/
}

.next-steps-boxes {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.next-steps-boxes .recap {
	width: 100%;
	margin-right: 0px;
	background-color: #21243e;
	color: white;
	padding: 30px;
	margin-bottom: 30px;
	height: 220px;
}

.next-steps-boxes .recap:hover {
	background-color: #2d325d;
}

.next-steps-boxes .next-chapter {
	width: 100%;
	background-color: #008591;
	color: white;
	padding: 30px;
	height: 220px;
}

.next-steps-boxes .next-chapter:hover {
	background-color: #0693a0;
}

@media only screen and (min-width: 0px) {
	.next-steps-boxes {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.next-steps-boxes .recap {
		width: 50%;
		margin-bottom: 0px;
	}
	.next-steps-boxes .next-chapter {
		width: 50%;
		margin-bottom: 0px;
	}
	.next-steps-boxes .next-chapter-only {
		background-color: #008591;
		color: white;
		height: 220px;
		text-decoration: none;
	}
	.next-steps-boxes .next-chapter-only:hover {
		background-color: #0693a0;
	}
	.next-steps-boxes .next-chapter-only {
		width: 100%;
		margin-bottom: 0px;
	}
}

/* END Next steps */

/* START - Specific CSS for the content slider */

.slider-content-container {
	display: flex;
	flex-direction: row;
	overflow: hidden;
	margin: 0 0 10px 0;
}

.slider-content {
	flex-shrink: 0;
	width: 100%;
	/* order: -999; */
	margin-bottom: 20px;
}

.slider-content:first-child {
	/* order: 1; */
}

/* END - Specific CSS for the content slider */

/* START Button overriding style*/

/*
button {
	background: none;
	border-width: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
*/

/* END Button overriding style*/

/* START Download button */

.download-button-outer {
	margin-bottom: 40px;
	display: block;
	width: 100%;
}

.download-button-inner {
	background: #008591;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 10px;
}

.download-button-inner-green {
	background: #008591;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 10px;
	border-bottom: 5px solid #2bbc70;
}

.download-button-inner-red {
	background: #008591;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 10px;
	border-bottom: 5px solid #db6346;
}

.download-button-inner:hover {
	background: #0693a0;
}

.download-button-inner-text {
	width: 100%;
	padding: 30px 30px 0 45px;
	text-align: center;
	color: #fff;
}

.download-button-inner-image {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.download-button-inner-image img {
	max-height: 200px;
}

@media only screen and (min-width: 600px) {
	.download-button-inner {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		min-height: 180px;
		border-radius: 10px;
	}
}

@media only screen and (min-width: 600px) {
	.download-button-inner-green {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		min-height: 180px;
		border-radius: 10px;
		border-bottom: 5px solid #2bbc70;
	}
}

@media only screen and (min-width: 600px) {
	.download-button-inner-red {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		min-height: 180px;
		border-radius: 10px;
		border-bottom: 5px solid #db6346;
	}
	.download-button-inner-text {
		width: 60%;
		text-align: left;
	}
	.download-button-inner-image {
		width: 40%;
	}
	.download-button-inner-image img {
		margin: auto;
		max-height: 220px;
		position: absolute;
	}
}

/* END download button */

/*
.buttonlight {
	font-size: 1.4rem;
	padding: 6px 12px 6px 12px;
	background: white;
	color: #100f2e;
	border-radius: 20px;
	font-weight: 600;
	display: inline-block;
	line-height: 1;
	margin: 0;
	cursor: pointer;
}

.buttonlight:visited {
	color: #100f2e;
}
*/

/*
.button {
font-size: 1.4rem;
padding: 6px 12px 6px 12px;
background: white;
color: #100f2e;
border-radius: 20px;
font-weight: 600;
display: inline-block;
line-height: 1;
margin: 0;
cursor: pointer;
}

@media only screen and (min-width: 760px) {
  .button {
    padding: 10px 16px;
    font-size: 1.6rem;
  }
}

.button-secondary {
  background-color: #008591;
  color: white;
}
*/

/* START button styles */

button, input[type="submit"] {
	background: none;
	border-width: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button {
  font-size: 14px;
  padding: 6px 12px 6px 12px;
  background: white;
  color: #100f2e;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  line-height: 1;
  margin: 0;
  cursor: pointer;
}

@media only screen and (min-width: 760px) {
  .button {
    padding: 10px 16px;
    font-size: 16px;
  }
}

.accessibility-theme--1 .button-primary, .accessibility-theme--1 .button-primary:hover, .accessibility-theme--1 .button-primary:visited {
	background-color: #008591;
	color: white;
}

.accessibility-theme--2 .button-primary, .accessibility-theme--2 .button-primary:hover, .accessibility-theme--2 .button-primary:visited {
	background-color: black;
	color: white;
}

.accessibility-theme--3 .button-primary, .accessibility-theme--3 .button-primary:hover, .accessibility-theme--3 .button-primary:visited {
	background-color: #5d007b;
	color: #ffeaa9;
}

.accessibility-theme--4 .button-primary, .accessibility-theme--4 .button-primary:hover, .accessibility-theme--4 .button-primary:visited {
	background-color: #32119e;
	color: #feffd7;
}

.accessibility-theme--5 .button-primary, .accessibility-theme--5 .button-primary:hover, .accessibility-theme--5 .button-primary:visited {
	background-color: #2c47e2;
	color: #eae8ba;
}

.accessibility-theme--6 .button-primary, .accessibility-theme--6 .button-primary:hover, .accessibility-theme--6 .button-primary:visited {
	background-color: #ffc845;
	color: #003b49;
}


.accessibility-theme--1 .button-secondary, .accessibility-theme--1 .button-secondary:hover, .accessibility-theme--1 .button-secondary:visited {
	background-color: white;
	color: #100f2e;
}

.accessibility-theme--2 .button-secondary, .accessibility-theme--2 .button-secondary:hover, .accessibility-theme--2 .button-secondary:visited {
	background-color: black;
	color: white;
}

.accessibility-theme--3 .button-secondary, .accessibility-theme--3 .button-secondary:hover, .accessibility-theme--3 .button-secondary:visited {
	background-color: #5d007b;
	color: #ffeaa9;
}

.accessibility-theme--4 .button-secondary, .accessibility-theme--4 .button-secondary:hover, .accessibility-theme--4 .button-secondary:visited {
	background-color: #32119e;
	color: #feffd7;
}

.accessibility-theme--5 .button-secondary, .accessibility-theme--5 .button-secondary:hover, .accessibility-theme--5 .button-secondary:visited {
	background-color: #2c47e2;
	color: #eae8ba;
}

.accessibility-theme--6 .button-secondary, .accessibility-theme--6 .button-secondary:hover, .accessibility-theme--6 .button-secondary:visited {
	background-color: #ffc845;
	color: #003b49;
}

/* END button styles */


/* START Specific CSS for the chapters menu NEW */
.bottom-menu-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 200;
}

.bottom-menu-bar button {
	border: 0;
	background: none;
	cursor: pointer;
}

.bottom-menu-bar img {
	margin: 0;
}

.progress-bar-container {
	height: 8px;
	background: none;
}

.progress-bar {
	height: 15%;
	background: #00bbc1;
	width: 0%;
}

.progress-container {
	background-color: rgba(150, 150, 150, 0.6);
	height: 10px;
	width: 100%;
}

.accessibility-theme--2 .progress-bar {
	background-color: #008591;
} 

.accessibility-theme--3 .progress-bar {
	background-color: #5d007b;
}

.accessibility-theme--4 .progress-bar {
	background-color: #32119e;
} 

.accessibility-theme--5 .progress-bar {
	background-color: #2c47e2;
} 

.accessibility-theme--6 .progress-bar {
	background-color: #ffc845;
} 

.bottom-menu-buttons {
	background-color: #fff;
	border-top: 1px solid #ccc;
	color: #21243e;
	font-weight: 600;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 56px;
	padding: 0 30px;
}

.accessibility-theme--2 .bottom-menu-buttons {
	background-color: white;
	border-top: 1px solid black;
	color: black;
}

.accessibility-theme--3 .bottom-menu-buttons {
	background-color: #ffde76;
	border-top: 1px solid #5d007b;
	color: #5d007b;
}

.accessibility-theme--4 .bottom-menu-buttons {
	background-color: #fdffa4;
	border-top: 1px solid #32119e;
	color: #32119e;
}
.accessibility-theme--5 .bottom-menu-buttons {
	background-color: #dedb93;
	border-top: 1px solid #2c47e2;
	color: #2c47e2;
}
.accessibility-theme--6 .bottom-menu-buttons {
	background-color: #00647c;
	border-top: 1px solid #ffc845;
	color: #ffc845;
}


.bottom-menu-button-cont {
	width: 33.33%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.bottom-menu-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.bottom-menu-middle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.bottom-menu-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
}

.bottom-menu-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: -40px;
}

.bottom-menu-icon-container {
	height: 48px;
	width: 48px;
	padding: 10px;
	background: #241d41;
	border-radius: 50%;
	margin-bottom: 2px;
}

.accessibility-theme--1 .bottom-menu-icon-container svg {
	fill: white;	
}

.accessibility-theme--2 .bottom-menu-icon-container {
	background: black;
	border: 2px solid white;	
}

.accessibility-theme--3 .bottom-menu-icon-container {
	background: #5d007b;
	border: 2px solid #ffde76;
}

.accessibility-theme--4 .bottom-menu-icon-container {
	background: #32119e;
	border: 2px solid #fdffa4;
}

.accessibility-theme--5 .bottom-menu-icon-container {
	background: #2c47e2;
	border: 2px solid #dedb93;
	
}

.accessibility-theme--6 .bottom-menu-icon-container {
	background: #ffc845;
	border: 2px solid #00647c;	
}

.bottom-menu-button:hover .bottom-menu-icon-container {
	background-color: #00bbc1;
}

.accessibility-theme--2 .bottom-menu-button:hover .bottom-menu-icon-container {
	background: #111;	
}

.accessibility-theme--3 .bottom-menu-button:hover .bottom-menu-icon-container {
	background: #360048;	
}

.accessibility-theme--4 .bottom-menu-button:hover .bottom-menu-icon-container {
	background: #230c70;	
}

.accessibility-theme--5 .bottom-menu-button:hover .bottom-menu-icon-container {
	background: #1a33c1;	
}

.accessibility-theme--6 .bottom-menu-button:hover .bottom-menu-icon-container {
	background: #ffb912;	
}

.accessibility-theme--6 .bottom-menu-button .st1 {
	fill: #003b49;
}

.close-active-panel {
	display: none;
}

.close-active-panel.active {
	display: flex;
}

.close-active-panel-btn {
	display: none;
}

.close-active-panel-btn.active {
	display: block;
}

/* END  Specific CSS for the chapters menu NEW */

/* START Specific CSS for the accessibility menu */
.accessibility-menu {
	background: white;
	padding: 40px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	z-index: 101;
	font-size: 16px;
	overflow-y: auto;
}

.accessibility-menu h4 {
	margin: 0px;
}

.accessibility-menu.active {
	display: block;
}

.accessibility-menu-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.accessibility-menu-content {
	text-align: center;
	max-width: 400px;
	margin: auto;
}

.accessibility-colour-scheme-selector {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	gap: 20px;
	margin: 50px 0;
	text-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.accessibility-colour-scheme-button-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	position: relative;
}

.accessibility-colour-scheme-button-wrap:nth-child(odd) {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.accessibility-colour-scheme-button-wrap:nth-child(even) {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.accessibility-colour-scheme-button {
	width: 130px;
	height: 130px;
	border-radius: 300px;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	line-height: 130px;
	text-align: center;
	background: #21243e;
	letter-spacing: 0px;
}

.accessibility-colour-scheme-button-2 {
	background-color: white;
	border: 7px solid black;
	color: black;
}

.accessibility-colour-scheme-button-3 {
	background-color: #ffeaa9;
	border: 7px solid #5d007b;
	color: #5d007b;
}

.accessibility-colour-scheme-button-4 {
	background-color: #feffd7;
	border: 7px solid #32119e;
	color: #32119e;
}

.accessibility-colour-scheme-button-5 {
	background-color: #eae8ba;
	border: 7px solid #2c47e2;
	color: #2c47e2;
}

.colorscheme-checkmark {
	height: 50px;
	width: 50px;
	position: absolute;
	bottom: 0;
	right: 0;
	display: none;
}

.accessibility-colour-scheme-button-wrap.active .colorscheme-checkmark {
	display: block;
}

#change-theme-2 .Path_508 {
	fill: black;
}

#change-theme-2 .Ellipse_157 {
	fill: white;
}

#change-theme-3 .Path_508 {
	fill: #5d007b;
}

#change-theme-3 .Ellipse_157 {
	fill: #ffeaa9;
}

#change-theme-4 .Path_508 {
	fill: #32119e;
}

#change-theme-4 .Ellipse_157 {
	fill: #feffd7;
}

#change-theme-5 .Path_508 {
	fill: #2c47e2;
}

#change-theme-5 .Ellipse_157 {
	fill: #feffd7;
}

body.accessibility-theme--2 .accessibility-menu {
	background-color: white;
	color: black;
}

body.accessibility-theme--3 .accessibility-menu {
	background-color: #ffeaa9;
	color: #5d007b;
}

body.accessibility-theme--4 .accessibility-menu {
	background-color: #feffd7;
	color: #32119e;
}

body.accessibility-theme--5 .accessibility-menu {
	background-color: #eae8ba;
	color: #2c47e2;
}

body.accessibility-theme--6 .accessibility-menu {
	background-color: #003b49;
	color: #ffc845;
}

/* END Specific CSS for the accessibility menu */

/* START Specific CSS for the chapters menu */
.chapters-menu {
	background: white;
	padding: 40px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	z-index: 101;
	font-size: 16px;
	overflow-y: auto;
}

.chapters-menu.active {
	display: block;
}

.accessibility-theme--2 .chapters-menu {
	background-color: white;
	color: black;
}

.accessibility-theme--3 .chapters-menu {
	background-color: #ffeaa9;
	color: #5d007b;
}

.accessibility-theme--4 .chapters-menu {
	background-color: #feffd7;
	color: #32119e;
}

.accessibility-theme--5 .chapters-menu {
	background-color: #eae8ba;
	color: #2c47e2;
}

.accessibility-theme--6 .chapters-menu {
	background-color: #003b49;
	color: #ffc845;
}

ol.sidebar-nav li {
	margin-bottom: 5px;
	line-height: 1.25;
	list-style: none;
}

ol.sidebar-nav a {
	text-decoration: none;
	display: block;
	padding: 4px 0;
	opacity: 0.75;
	font-weight: 600;
}

ol.sidebar-nav a:hover {
	opacity: 1;
}

ol.sidebar-nav a.active {
	font-weight: bold;
	opacity: 1;
}

.sidebar-nav-l2 {
	list-style: none;
	margin-top: 5px;
	margin-bottom: 15px;
	display: none;
}

.sidebar-nav-l2-show {
	display: block;
}

.sidebar-nav li a.active ul.sidebar-nav-l2 {
	display: block;
}

.accessibility-theme--2 .sidebar-nav a,
.accessibility-theme--2 .sidebar-nav a:visited,
.accessibility-theme--2 .sidebar-nav a.active {
	color: black;
}

.accessibility-theme--3 .sidebar-nav a,
.accessibility-theme--3 .sidebar-nav a:visited,
.accessibility-theme--3 .sidebar-nav a.active {
	color: #5d007b;
}

.accessibility-theme--4 .sidebar-nav a,
.accessibility-theme--4 .sidebar-nav a:visited,
.accessibility-theme--4 .sidebar-nav a.active {
	color: #32119e;
}

.accessibility-theme--5 .sidebar-nav a,
.accessibility-theme--5 .sidebar-nav a:visited,
.accessibility-theme--5 .sidebar-nav a.active {
	color: #2c47e2;
}

.accessibility-theme--6 .sidebar-nav a,
.accessibility-theme--6 .sidebar-nav a:visited,
.accessibility-theme--6 .sidebar-nav a.active {
	color: #ffc845;
}

/* END Specific CSS for the chapters menu */

/* START ACCESSIBILITY THEME 2 STYLES */

.accessibility-theme--2 {
	background-color: white;
	color: black;
}

.accessibility-theme--2 header {
	background-color: black;
	color: white;
}

.accessibility-theme--2 a,
.accessibility-theme--2 a:visited,
.accessibility-theme--2 a:active,
.accessibility-theme--2 ul,
.accessibility-theme--2 ol,
.accessibility-theme--2 ul li::marker {
	color: inherit;
}

.accessibility-theme--2 .section-standard {
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.accessibility-theme--2 .section-light {
	background-color: white;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	color: black;
}

.accessibility-theme--2 .section-dark {
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	color: black;
	background: none;
}

.accessibility-theme--2 span {
	color: black;
}

.accessibility-theme--2 .section-overlap-top-circle {
	color: white;
	background-color: black;
}

.accessibility-theme--2 .section-overlap-bottom-circle {
	color: white;
	background-color: black;
}

.accessibility-theme--2 .section-join-circle {
	color: white;
	background-color: black;
}

.accessibility-theme--2 .round-image-border {
	border-color: black;
}

.accessibility-theme--2 .key-point-circle {
	border: 3px solid black;
	color: black;
	background-color: transparent;
}

.accessibility-theme--2 .circle-light-blue {
	border: 3px solid black;
	color: black;
	background-color: transparent;
}

.accessibility-theme--2 .the-rules-circle.circle-red {
	border: 3px solid black;
	color: black;
	background-color: transparent;
}

.accessibility-theme--2 .the-rules-circle.circle-amber {
	border: 3px solid black;
	color: black;
	background-color: transparent;
}

.accessibility-theme--2 header .header-content span {
	color: white;
}

.accessibility-theme--2 .the-rules-circle.circle-grey-1 {
	border: 3px solid black;
	color: black;
	background-color: transparent;
}

.accessibility-theme--2 .the-rules-circle.circle-grey-2 {
	border: 3px solid black;
	color: black;
	background-color: transparent;
}

.accessibility-theme--2 .the-rules-circle.circle-grey-3 {
	border: 3px solid black;
	color: black;
	background-color: transparent;
}

.accessibility-theme--2 .tabs-numbers .tab {
	border: 3px solid black;
	color: black;
	background-color: transparent;
}

.accessibility-theme--2 .tabs-numbers .tab:hover {
	border: 3px solid black;
	background-color: black;
	color: white;
}

.accessibility-theme--2 .tabs-numbers .tab.active {
	border: 3px solid black;
	background-color: black;
	color: white;
}

.accessibility-theme--2 .download-button-inner {
	background-color: black;
	color: white;
}

.accessibility-theme--2 .download-button-inner-text {
	color: white;
}

.accessibility-theme--2 .download-button-inner-green {
	background-color: black;
	color: white;
}

.accessibility-theme--2 .download-button-inner-red {
	background-color: black;
	color: white;
}

.accessibility-theme--2 .download-button-inner:hover,
.accessibility-theme--2 .next-chapter:hover,
.accessibility-theme--2 .recap:hover {
	background-color: #1a1a1a;
}

.accessibility-theme--2 .recap {
	background-color: black;
	color: white;
}

.accessibility-theme--2 .next-chapter {
	background-color: black;
	color: white;
}

.accessibility-theme--2 .next-chapter-only {
	background-color: black;
	color: white;
}

.accessibility-theme--2 .label {
	background-color: black;
	color: white;
}

.accessibility-theme--2 .download-button-inner-red:hover,
.accessibility-theme--2 .download-button-inner:hover,
.accessibility-theme--2 .download-button-inner-green:hover,
.accessibility-theme--2 .next-chapter-only:hover,
.accessibility-theme--2 .recap:hover {
	background-color: #454545;
	color: white;
}

.accessibility-theme--2 .next-chapter-only:visited {
	background-color: inherit;
	color: white;
}

.accessibility-theme--2 h1 {
/*	border-bottom: 1px solid black;*/
/*	border-bottom: 1px solid rgba(0, 0, 0, 0.3);*/
}

/*
.accessibility-theme--2 .contentblock { color: #454545; background: white; padding: 25px; text-align: center; display: none; position: relative; margin: 0 auto; width: 50%; height: 50%; border-radius: 8px; border-style: solid; border-color: #454545; border-width: 2px;
}
*/

.accessibility-theme--2 .cls-mossy {
	fill: black;
}

.accessibility-theme--2 .cls-2 {
	fill: white;
}

.accessibility-theme--2 .cls-moss {
	fill: black;
}
.accessibility-theme--2 .cls-teal {
	fill: black;
}
.accessibility-theme--2 .cls-yellow {
	fill: black;
}
.accessibility-theme--2 .cls-orange {
	fill: black;
}
.accessibility-theme--2 .cls-cyan {
	fill: black;
}
.accessibility-theme--2 .cls-mushroom {
	fill: black;
}
.accessibility-theme--2 .cls-nut {
	fill: black;
}
.accessibility-theme--2 .cls-lilac {
	fill: black;
}
.accessibility-theme--2 .cls-darkteal {
	fill: black;
}
.accessibility-theme--2 .cls-midorange {
	fill: black;
}
.accessibility-theme--2 .cls-hotpink {
	fill: black;
}
.accessibility-theme--2 .cls-midteal {
	fill: black;
}
.accessibility-theme--2 .cls-tintorange {
	fill: black;
}
.accessibility-theme--2 .cls-darklilac {
	fill: black;
}

.accessibility-theme--2 .overlayfade {
	background-color: white;
}

.accessibility-theme--2 .overlayfade .text {
	color: black;
}

/* END ACCESSIBILITY THEME 2 STYLES */

/* START ACCESSIBILITY THEME 3 STYLES */

.accessibility-theme--3 {
	background-color: #ffeaa9;
	color: #5d007b;
}

.accessibility-theme--3 header {
	background-color: #5d007b;
	color: #ffeaa9;
}

.accessibility-theme--3 a,
.accessibility-theme--3 a:visited,
.accessibility-theme--3 a:active,
.accessibility-theme--3 ul,
.accessibility-theme--3 ol,
.accessibility-theme--3 ul li::marker {
	color: inherit;
}

.accessibility-theme--3 .section-standard {
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.accessibility-theme--3 .section-light {
	background-color: #ffeaa9;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	color: #5d007b;
}

.accessibility-theme--3 .section-dark {
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	color: #5d007b;
	background: none;
}

.accessibility-theme--3 span {
	color: #5d007b;
}

.accessibility-theme--3 .section-overlap-top-circle {
	color: #ffeaa9;
	background-color: #5d007b;
}

.accessibility-theme--3 .section-overlap-bottom-circle {
	color: #ffeaa9;
	background-color: #5d007b;
}

.accessibility-theme--3 .section-join-circle {
	color: #ffeaa9;
	background-color: #5d007b;
}

.accessibility-theme--3 .round-image-border {
	border-color: #5d007b;
}

.accessibility-theme--3 .key-point-circle {
	border: 3px solid #5d007b;
	color: #5d007b;
	background-color: transparent;
}

.accessibility-theme--3 .circle-light-blue {
	border: 3px solid #5d007b;
	color: #5d007b;
	background-color: transparent;
}

.accessibility-theme--3 .the-rules-circle.circle-red {
	border: 3px solid #5d007b;
	color: #5d007b;
	background-color: transparent;
}

.accessibility-theme--3 .the-rules-circle.circle-amber {
	border: 3px solid #5d007b;
	color: #5d007b;
	background-color: transparent;
}

.accessibility-theme--3 header .header-content span {
	color: #ffeaa9;
}

.accessibility-theme--3 .the-rules-circle.circle-grey-1 {
	border: 3px solid #5d007b;
	color: #5d007b;
	background-color: transparent;
}

.accessibility-theme--3 .the-rules-circle.circle-grey-2 {
	border: 3px solid #5d007b;
	color: #5d007b;
	background-color: transparent;
}

.accessibility-theme--3 .the-rules-circle.circle-grey-3 {
	border: 3px solid #5d007b;
	color: #5d007b;
	background-color: transparent;
}

.accessibility-theme--3 .tabs-numbers .tab {
	border: 3px solid #5d007b;
	color: #5d007b;
	background-color: transparent;
}

.accessibility-theme--3 .tabs-numbers .tab:hover {
	border: 3px solid #5d007b;
	background-color: #5d007b;
	color: #ffeaa9;
}

.accessibility-theme--3 .tabs-numbers .tab.active {
	border: 3px solid #5d007b;
	background-color: #5d007b;
	color: #ffeaa9;
}

.accessibility-theme--3 .download-button-inner {
	background-color: #5d007b;
}

.accessibility-theme--3 .download-button-inner-text {
	color: #ffeaa9;
}

.accessibility-theme--3 .download-button-inner-green {
	background-color: #5d007b;
	color: #ffeaa9;
}

.accessibility-theme--3 .download-button-inner-red {
	background-color: #5d007b;
	color: #ffeaa9;
}

.accessibility-theme--3 .download-button-inner:hover,
.accessibility-theme--3 .next-chapter:hover,
.accessibility-theme--3 .recap:hover {
	background-color: #700095;
}

.accessibility-theme--3 .recap {
	background-color: #5d007b;
	color: #ffeaa9;
}

.accessibility-theme--3 .next-chapter {
	background-color: #5d007b;
	color: #ffeaa9;
}

.accessibility-theme--3 .next-chapter-only {
	background-color: #5d007b;
	color: #ffeaa9;
}

.accessibility-theme--3 .label {
	background-color: #5d007b;
	color: #ffeaa9;
}

.accessibility-theme--3 .download-button-inner-red:hover,
.accessibility-theme--3 .download-button-inner:hover,
.accessibility-theme--3 .download-button-inner-green:hover,
.accessibility-theme--3 .next-chapter-only:hover,
.accessibility-theme--3 .recap:hover {
	background-color: #3c0050;
	color: #ffeaa9;
}

.accessibility-theme--3 .next-chapter-only:visited {
	background-color: inherit;
	color: #ffeaa9;
}

.accessibility-theme--3 h1 {
/*	border-bottom: 1px solid #3c0050;*/
/*	border-bottom: 1px solid rgba(0, 0, 0, 0.3);*/
}

/*
.accessibility-theme--3 .contentblock { color: #3c0050; background: #ffeaa9; padding: 25px; text-align: center; display: none; position: relative; margin: 0 auto; width: 50%; height: 50%; border-radius: 8px; border-style: solid; border-color: #3c0050; border-width: 2px;
}
*/

.accessibility-theme--3 .cls-mossy {
	fill: #3c0050;
}

.accessibility-theme--3 .cls-2 {
	fill: #ffeaa9;
}

.accessibility-theme--3 .cls-moss {
	fill: #3c0050;
}
.accessibility-theme--3 .cls-teal {
	fill: #3c0050;
}
.accessibility-theme--3 .cls-yellow {
	fill: #3c0050;
}
.accessibility-theme--3 .cls-orange {
	fill: #3c0050;
}
.accessibility-theme--3 .cls-cyan {
	fill: #3c0050;
}
.accessibility-theme--3 .cls-mushroom {
	fill: #3c0050;
}
.accessibility-theme--3 .cls-nut {
	fill: #3c0050;
}
.accessibility-theme--3 .cls-lilac {
	fill: #3c0050;
}
.accessibility-theme--3 .cls-darkteal {
	fill: #3c0050;
}
.accessibility-theme--3 .cls-midorange {
	fill: #3c0050;
}
.accessibility-theme--3 .cls-hotpink {
	fill: #3c0050;
}
.accessibility-theme--3 .cls-midteal {
	fill: #3c0050;
}
.accessibility-theme--3 .cls-tintorange {
	fill: #3c0050;
}
.accessibility-theme--3 .cls-darklilac {
	fill: #3c0050;
}

.accessibility-theme--3 .overlayfade {
	background-color: #ffeaa9;
}

.accessibility-theme--3 .overlayfade .text {
	color: #3c0050;
}

/* END ACCESSIBILITY THEME 3 STYLES */

/* START ACCESSIBILITY THEME 4 STYLES */

.accessibility-theme--4 {
	background-color: #feffd7;
	color: #32119e;
}

.accessibility-theme--4 header {
	background-color: #32119e;
	color: #feffd7;
}

.accessibility-theme--4 a,
.accessibility-theme--4 a:visited,
.accessibility-theme--4 a:active,
.accessibility-theme--4 ul,
.accessibility-theme--4 ol,
.accessibility-theme--4 ul li::marker {
	color: inherit;
}

.accessibility-theme--4 .section-standard {
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.accessibility-theme--4 .section-light {
	background-color: #feffd7;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	color: #32119e;
}

.accessibility-theme--4 .section-dark {
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	color: #32119e;
	background: none;
}

.accessibility-theme--4 span {
	color: #32119e;
}

.accessibility-theme--4 .section-overlap-top-circle {
	color: #feffd7;
	background-color: #32119e;
}

.accessibility-theme--4 .section-overlap-bottom-circle {
	color: #feffd7;
	background-color: #32119e;
}

.accessibility-theme--4 .section-join-circle {
	color: #feffd7;
	background-color: #32119e;
}

.accessibility-theme--4 .round-image-border {
	border-color: #32119e;
}

.accessibility-theme--4 .key-point-circle {
	border: 3px solid #32119e;
	color: #32119e;
	background-color: transparent;
}

.accessibility-theme--4 .circle-light-blue {
	border: 3px solid #32119e;
	color: #32119e;
	background-color: transparent;
}

.accessibility-theme--4 .the-rules-circle.circle-red {
	border: 3px solid #32119e;
	color: #32119e;
	background-color: transparent;
}

.accessibility-theme--4 .the-rules-circle.circle-amber {
	border: 3px solid #32119e;
	color: #32119e;
	background-color: transparent;
}

.accessibility-theme--4 header .header-content span {
	color: #feffd7;
}

.accessibility-theme--4 .the-rules-circle.circle-grey-1 {
	border: 3px solid #32119e;
	color: #32119e;
	background-color: transparent;
}

.accessibility-theme--4 .the-rules-circle.circle-grey-2 {
	border: 3px solid #32119e;
	color: #32119e;
	background-color: transparent;
}

.accessibility-theme--4 .the-rules-circle.circle-grey-3 {
	border: 3px solid #32119e;
	color: #32119e;
	background-color: transparent;
}

.accessibility-theme--4 .tabs-numbers .tab {
	border: 3px solid #32119e;
	color: #32119e;
	background-color: transparent;
}

.accessibility-theme--4 .tabs-numbers .tab:hover {
	border: 3px solid #32119e;
	background-color: #32119e;
	color: #feffd7;
}

.accessibility-theme--4 .tabs-numbers .tab.active {
	border: 3px solid #32119e;
	background-color: #32119e;
	color: #feffd7;
}

.accessibility-theme--4 .download-button-inner {
	background-color: #32119e;
}

.accessibility-theme--4 .download-button-inner-text {
	color: #feffd7;
}

.accessibility-theme--4 .download-button-inner-green {
	background-color: #32119e;
	color: #feffd7;
}

.accessibility-theme--4 .download-button-inner-red {
	background-color: #32119e;
	color: #feffd7;
}

.accessibility-theme--4 .download-button-inner:hover,
.accessibility-theme--4 .next-chapter:hover,
.accessibility-theme--4 .recap:hover {
	background-color: #3913b5;
}

.accessibility-theme--4 .recap {
	background-color: #32119e;
	color: #feffd7;
}

.accessibility-theme--4 .next-chapter {
	background-color: #32119e;
	color: #feffd7;
}

.accessibility-theme--4 .next-chapter-only {
	background-color: #32119e;
	color: #feffd7;
}

.accessibility-theme--4 .label {
	background-color: #32119e;
	color: #feffd7;
}

.accessibility-theme--4 .download-button-inner-red:hover,
.accessibility-theme--4 .download-button-inner:hover,
.accessibility-theme--4 .download-button-inner-green:hover,
.accessibility-theme--4 .next-chapter-only:hover,
.accessibility-theme--4 .recap:hover {
	background-color: #200678;
	color: #feffd7;
}

.accessibility-theme--4 .next-chapter-only:visited {
	background-color: inherit;
	color: #feffd7;
}

.accessibility-theme--4 h1 {
/*	border-bottom: 1px solid #200678;*/
/*	border-bottom: 1px solid rgba(0, 0, 0, 0.3);*/
}

/*
.accessibility-theme--4 .contentblock { color: #32119e; background: #feffd7; padding: 25px; text-align: center; display: none; position: relative; margin: 0 auto; width: 50%; height: 50%; border-radius: 8px; border-style: solid; border-color: #32119e; border-width: 2px;
}
*/

.accessibility-theme--4 .cls-mossy {
	fill: #32119e;
}

.accessibility-theme--4 .cls-2 {
	fill: #feffd7;
}

.accessibility-theme--4 .cls-moss {
	fill: #32119e;
}
.accessibility-theme--4 .cls-teal {
	fill: #32119e;
}
.accessibility-theme--4 .cls-yellow {
	fill: #32119e;
}
.accessibility-theme--4 .cls-orange {
	fill: #32119e;
}
.accessibility-theme--4 .cls-cyan {
	fill: #32119e;
}
.accessibility-theme--4 .cls-mushroom {
	fill: #32119e;
}
.accessibility-theme--4 .cls-nut {
	fill: #32119e;
}
.accessibility-theme--4 .cls-lilac {
	fill: #32119e;
}
.accessibility-theme--4 .cls-darkteal {
	fill: #32119e;
}
.accessibility-theme--4 .cls-midorange {
	fill: #32119e;
}
.accessibility-theme--4 .cls-hotpink {
	fill: #32119e;
}
.accessibility-theme--4 .cls-midteal {
	fill: #32119e;
}
.accessibility-theme--4 .cls-tintorange {
	fill: #32119e;
}
.accessibility-theme--4 .cls-darklilac {
	fill: #32119e;
}

.accessibility-theme--4 .overlayfade {
	background-color: #feffd7;
}

.accessibility-theme--4 .overlayfade .text {
	color: #32119e;
}

/* END ACCESSIBILITY THEME 4 STYLES */

/* START ACCESSIBILITY THEME 5 STYLES */

.accessibility-theme--5 {
	background-color: #eae8ba;
	color: #2c47e2;
}

.accessibility-theme--5 header {
	background-color: #2c47e2;
	color: #eae8ba;
}

.accessibility-theme--5 a,
.accessibility-theme--5 a:visited,
.accessibility-theme--5 a:active,
.accessibility-theme--5 ul,
.accessibility-theme--5 ol,
.accessibility-theme--5 ul li::marker {
	color: inherit;
}

.accessibility-theme--5 .section-standard {
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.accessibility-theme--5 .section-light {
	background-color: #eae8ba;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	color: #2c47e2;
}

.accessibility-theme--5 .section-dark {
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	color: #2c47e2;
	background: none;
}

.accessibility-theme--5 span {
	color: #2c47e2;
}

.accessibility-theme--5 .section-overlap-top-circle {
	color: #eae8ba;
	background-color: #2c47e2;
}

.accessibility-theme--5 .section-overlap-bottom-circle {
	color: #eae8ba;
	background-color: #2c47e2;
}

.accessibility-theme--5 .section-join-circle {
	color: #eae8ba;
	background-color: #2c47e2;
}

.accessibility-theme--5 .round-image-border {
	border-color: #2c47e2;
}

.accessibility-theme--5 .key-point-circle {
	border: 3px solid #2c47e2;
	color: #2c47e2;
	background-color: transparent;
}

.accessibility-theme--5 .circle-light-blue {
	border: 3px solid #2c47e2;
	color: #2c47e2;
	background-color: transparent;
}

.accessibility-theme--5 .the-rules-circle.circle-red {
	border: 3px solid #2c47e2;
	color: #2c47e2;
	background-color: transparent;
}

.accessibility-theme--5 .the-rules-circle.circle-amber {
	border: 3px solid #2c47e2;
	color: #2c47e2;
	background-color: transparent;
}

.accessibility-theme--5 header .header-content span {
	color: #eae8ba;
}

.accessibility-theme--5 .the-rules-circle.circle-grey-1 {
	border: 3px solid #2c47e2;
	color: #2c47e2;
	background-color: transparent;
}

.accessibility-theme--5 .the-rules-circle.circle-grey-2 {
	border: 3px solid #2c47e2;
	color: #2c47e2;
	background-color: transparent;
}

.accessibility-theme--5 .the-rules-circle.circle-grey-3 {
	border: 3px solid #2c47e2;
	color: #2c47e2;
	background-color: transparent;
}

.accessibility-theme--5 .tabs-numbers .tab {
	border: 3px solid #2c47e2;
	color: #2c47e2;
	background-color: transparent;
}

.accessibility-theme--5 .tabs-numbers .tab:hover {
	border: 3px solid #2c47e2;
	background-color: #2c47e2;
	color: #eae8ba;
}

.accessibility-theme--5 .tabs-numbers .tab.active {
	border: 3px solid #2c47e2;
	background-color: #2c47e2;
	color: #eae8ba;
}

.accessibility-theme--5 .download-button-inner {
	background-color: #2c47e2;
}

.accessibility-theme--5 .download-button-inner-text {
	color: #eae8ba;
}

.accessibility-theme--5 .download-button-inner-green {
	background-color: #2c47e2;
	color: #eae8ba;
}

.accessibility-theme--5 .download-button-inner-red {
	background-color: #2c47e2;
	color: #eae8ba;
}

.accessibility-theme--5 .recap {
	background-color: #2c47e2;
	color: #eae8ba;
}

.accessibility-theme--5 .next-chapter {
	background-color: #2c47e2;
	color: #eae8ba;
}

.accessibility-theme--5 .next-chapter-only {
	background-color: #2c47e2;
	color: #eae8ba;
}

.accessibility-theme--5 .label {
	background-color: #2c47e2;
	color: #eae8ba;
}

.accessibility-theme--5 .download-button-inner-red:hover,
.accessibility-theme--5 .download-button-inner:hover,
.accessibility-theme--5 .download-button-inner-green:hover,
.accessibility-theme--5 .next-chapter-only:hover,
.accessibility-theme--5 .recap:hover {
	background-color: #172dac;
	color: #eae8ba;
}

.accessibility-theme--5 .next-chapter-only:visited {
	background-color: inherit;
	color: #eae8ba;
}

.accessibility-theme--5 h1 {
/*	border-bottom: 1px solid #172dac;*/
/*	border-bottom: 1px solid rgba(0, 0, 0, 0.3);*/
}

.accessibility-theme--5 input[type="radio"] {
	color: #172dac;
}

/*.accessibility-theme--5 .contentblock { color: #172dac; background: #eae8ba; padding: 25px; text-align: center; display: none; position: relative; margin: 0 auto; width: 50%; height: 50%; border-radius: 8px; border-style: solid; border-color: #172dac; border-width: 2px;}*/

.accessibility-theme--5 .cls-mossy {
	fill: #172dac;
}

.accessibility-theme--5 .cls-2 {
	fill: #eae8ba;
}

.accessibility-theme--5 .cls-moss {
	fill: #172dac;
}
.accessibility-theme--5 .cls-teal {
	fill: #172dac;
}
.accessibility-theme--5 .cls-yellow {
	fill: #172dac;
}
.accessibility-theme--5 .cls-orange {
	fill: #172dac;
}
.accessibility-theme--5 .cls-cyan {
	fill: #172dac;
}
.accessibility-theme--5 .cls-mushroom {
	fill: #172dac;
}
.accessibility-theme--5 .cls-nut {
	fill: #172dac;
}
.accessibility-theme--5 .cls-lilac {
	fill: #172dac;
}
.accessibility-theme--5 .cls-darkteal {
	fill: #172dac;
}
.accessibility-theme--5 .cls-midorange {
	fill: #172dac;
}
.accessibility-theme--5 .cls-hotpink {
	fill: #172dac;
}
.accessibility-theme--5 .cls-midteal {
	fill: #172dac;
}
.accessibility-theme--5 .cls-tintorange {
	fill: #172dac;
}
.accessibility-theme--5 .cls-darklilac {
	fill: #172dac;
}

.accessibility-theme--5 .overlayfade {
	background-color: #eae8ba;
}

.accessibility-theme--5 .overlayfade .text {
	color: #172dac;
}

/* END ACCESSIBILITY THEME 5 STYLES */

/* START ACCESSIBILITY THEME 6 STYLES */

.accessibility-theme--6 {
	background-color: #003b49;
	color: #ffc845;
}

.accessibility-theme--6 header {
	background-color: black;
	color: #003b49;
}

.accessibility-theme--6 a,
.accessibility-theme--6 a:visited,
.accessibility-theme--6 a:active,
.accessibility-theme--6 ul,
.accessibility-theme--6 ol,
.accessibility-theme--6 ul li::marker {
	color: inherit;
}

.accessibility-theme--6 .section-standard {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.accessibility-theme--6 .section-light {
	background-color: #003b49;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffc845;
}

.accessibility-theme--6 .section-dark {
/*	border-top: 1px solid #5d007b;*/
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffc845;
	background: none;
}

.accessibility-theme--6 span {
	color: #ffc845;
}

.accessibility-theme--6 .section-overlap-top-circle {
	color: #003b49;
	background-color: #ffc845;
}

.accessibility-theme--6 .section-overlap-bottom-circle {
	color: #003b49;
	background-color: #ffc845;
}

.accessibility-theme--6 .section-join-circle {
	color: #003b49;
	background-color: #ffc845;
}

.accessibility-theme--6 .round-image-border {
	border-color: #ffc845;
}

.accessibility-theme--6 .key-point-circle {
	border: 3px solid #ffc845;
	color: #ffc845;
	background-color: transparent;
}

.accessibility-theme--6 .circle-light-blue {
	border: 3px solid #ffc845;
	color: #ffc845;
	background-color: transparent;
}

.accessibility-theme--6 .the-rules-circle.circle-red {
	border: 3px solid #ffc845;
	color: #ffc845;
	background-color: transparent;
}

.accessibility-theme--6 .the-rules-circle.circle-amber {
	border: 3px solid #ffc845;
	color: #ffc845;
	background-color: transparent;
}

.accessibility-theme--6 header .header-content span {
	color: #ffc845;
}

.accessibility-theme--6 .the-rules-circle.circle-grey-1 {
	border: 3px solid #ffc845;
	color: #ffc845;
	background-color: transparent;
}

.accessibility-theme--6 .the-rules-circle.circle-grey-2 {
	border: 3px solid #ffc845;
	color: #ffc845;
	background-color: transparent;
}

.accessibility-theme--6 .the-rules-circle.circle-grey-3 {
	border: 3px solid #ffc845;
	color: #ffc845;
	background-color: transparent;
}

.accessibility-theme--6 .tabs-numbers .tab {
	border: 3px solid #ffc845;
	color: #ffc845;
	background-color: transparent;
}

.accessibility-theme--6 .tabs-numbers .tab:hover {
	border: 3px solid #ffc845;
	background-color: #ffc845;
	color: #003b49;
}

.accessibility-theme--6 .tabs-numbers .tab.active {
	border: 3px solid #ffc845;
	background-color: #ffc845;
	color: #003b49;
}

.accessibility-theme--6 .download-button-inner {
	background-color: #ffc845;
}

.accessibility-theme--6 .download-button-inner-text {
	color: #003b49;
}

.accessibility-theme--6 .download-button-inner-green {
	background-color: #ffc845;
	color: #003b49;
}

.accessibility-theme--6 .download-button-inner-red {
	background-color: #ffc845;
	color: #003b49;
}

.accessibility-theme--6 .recap {
	background-color: #ffc845;
	color: #003b49;
}

.accessibility-theme--6 .next-chapter {
	background-color: #ffc845;
	color: #003b49;
}

.accessibility-theme--6 .next-chapter-only {
	background-color: #ffc845;
	color: #003b49;
}

.accessibility-theme--6 .label {
	background-color: #ffc845;
	color: #003b49;
}

.accessibility-theme--6 .download-button-inner-red:hover,
.accessibility-theme--6 .download-button-inner:hover,
.accessibility-theme--6 .download-button-inner-green:hover,
.accessibility-theme--6 .next-chapter-only:hover,
.accessibility-theme--6 .recap:hover {
	background-color: #de9c00;
	color: #003b49;
}

.accessibility-theme--6 .next-chapter-only:visited {
	background-color: inherit;
	color: #003b49;
}

.accessibility-theme--6 h1 {
/*	border-bottom: 1px solid darkblue;*/
/*	border-bottom: 1px solid rgba(255, 255, 255, 0.3);*/
}

.accessibility-theme--6 input[type="radio"] {
	color: #ffc845;
}

.accessibility-theme--6 .cls-mossy {
	fill: #ffc845;
}

.accessibility-theme--6 .cls-2 {
	fill: #003b49;
}

.accessibility-theme--6 .cls-moss {
	fill: #ffc845;
}
.accessibility-theme--6 .cls-teal {
	fill: #ffc845;
}
.accessibility-theme--6 .cls-yellow {
	fill: #ffc845;
}
.accessibility-theme--6 .cls-orange {
	fill: #ffc845;
}
.accessibility-theme--6 .cls-cyan {
	fill: #ffc845;
}
.accessibility-theme--6 .cls-mushroom {
	fill: #ffc845;
}
.accessibility-theme--6 .cls-nut {
	fill: #ffc845;
}
.accessibility-theme--6 .cls-lilac {
	fill: #ffc845;
}
.accessibility-theme--6 .cls-darkteal {
	fill: #ffc845;
}
.accessibility-theme--6 .cls-midorange {
	fill: #ffc845;
}
.accessibility-theme--6 .cls-hotpink {
	fill: #ffc845;
}
.accessibility-theme--6 .cls-midteal {
	fill: #ffc845;
}
.accessibility-theme--6 .cls-tintorange {
	fill: #ffc845;
}
.accessibility-theme--6 .cls-darklilac {
	fill: #ffc845;
}

.accessibility-theme--6 .overlayfade {
	background-color: #003b49;
}

.accessibility-theme--6 .overlayfade .text {
	color: #ffc845;
}

/* END ACCESSIBILITY THEME 6 STYLES */



/*START check box css*/

:root input[type="checkbox"] {
	--form-control-color: white;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

.form-control {
	font-family: 'Satoshi-Variable', sans-serif;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.1;
	display: grid;
	grid-template-columns: 1em auto;
	gap: 0.5em;
}

.form-control + .form-control {
	margin-top: 1em;
}

.form-control--disabled {
	color: var(--form-control-disabled);
	cursor: not-allowed;
}

input[type="checkbox"] {
	/* Add if not using autoprefixer */
	-webkit-appearance: none;
	/* Remove most all native input styles */
	appearance: none;
	/* For iOS < 15 */
	background-color: var(--form-background);
	/* Not removed via appearance */
	margin: 0;
	font: inherit;
	color: currentColor;
	width: 1.15em;
	height: 1.15em;
	border: 0.15em solid currentColor;
	border-radius: 0.15em;
	transform: translateY(-0.075em);
	/* display: grid; */
	place-content: center;
}

input[type="checkbox"]::before {
	content: "";
	width: 0.65em;
	height: 0.65em;
	clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
	transform: scale(0);
	transform-origin: bottom left;
	transition: 120ms transform ease-in-out;
	box-shadow: inset 1em 1em var(--form-control-color);
	/* Windows High Contrast Mode */
	background-color: CanvasText;
}

input[type="checkbox"]:checked::before {
	transform: scale(1);
}

input[type="checkbox"]:focus {
	outline: max(2px, 0.15em) solid currentColor;
	outline-offset: max(2px, 0.15em);
}

input[type="checkbox"]:disabled {
	--form-control-color: var(--form-control-disabled);
	color: var(--form-control-disabled);
	cursor: not-allowed;
}

/* END check box css */

/* START radio button css */

:root input[type="radio"] {
	--form-control-color: none;
}

input[type="radio"] {
	/* Add if not using autoprefixer */
	-webkit-appearance: none;
	/* Remove most all native input styles */
	appearance: none;
	/* For iOS < 15 */
	background-color: var(--form-background);
	/* Not removed via appearance */
	margin: 0;
	font: inherit;
	color: currentColor;
	width: 1.15em;
	height: 1.15em;
	border: 0.15em solid currentColor;
	border-radius: 50%;
	transform: translateY(-0.075em);
	display: grid;
	place-content: center;
}

input[type="radio"]::before {
	content: "";
	width: 0.65em;
	height: 0.65em;
	border-radius: 50%;
	transform: scale(0);
	transition: 120ms transform ease-in-out;
	box-shadow: inset 1em 1em var(--form-control-color);
	/* Windows High Contrast Mode */
	background-color: CanvasText;
}

input[type="radio"]:checked::before {
	transform: scale(1);
}

input[type="radio"]:focus {
	outline: max(2px, 0.15em) solid currentColor;
	outline-offset: max(2px, 0.15em);
}

/* END radio button css */

.cls-mossy {
	fill: black;
}


.content {
	padding: 2em;
}

/* START switch classes to show words depending on screensize */

.text-mobile {
	display: inline;
}

@media only screen and (min-width: 600px) {
	.text-mobile {
		display: none;
	}
}

.text-desktop {
	display: none;
}

@media only screen and (min-width: 600px) {
	.text-desktop {
		display: inline;
	}
}

/* END switch classes to show words depending on screensize */

.list-2-cols {
		-webkit-column-count: 1;
	column-count: 1;
	-webkit-column-gap: 0px;
	column-gap: 0px;
}

@media only screen and (min-width: 650px) {
	.list-2-cols {
		-webkit-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 30px;
		column-gap: 30px;
	}
}

.list-2-cols li {
	break-inside: avoid;
}


/*START TICK LIST CSS*/
.tick-list {
	list-style: none;
	-webkit-column-count: 1;
	column-count: 1;
	-webkit-column-gap: 0px;
	column-gap: 0px;
	margin-left: 0;
	padding-top: 24px;
}

@media only screen and (min-width: 650px) {
	.tick-list {
		-webkit-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 30px;
		column-gap: 30px;
	}
}

.tick-list li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-column-break-inside: avoid;
	break-inside: avoid-column;
	margin-bottom: 24px;
	cursor: pointer;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-user-select: none;
	/* Safari */
	-ms-user-select: none;
	/* IE 10 and IE 11 */
	-moz-user-select: none;
	user-select: none;
	/* Standard syntax */
}

.tick-list li p {
	margin-bottom: 0;
}

.tick-list li .icon-area {
	background-color: #96bfc5;
	background-size: 16px;
	height: 40px;
	width: 40px;
	border-radius: 50px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.tick-list li.icon-blank-check.selected .icon-area {
	background: url("../../../common_assets/images/check-solid.svg") center
		center no-repeat;
	background-color: #6ca24e;
	background-size: 24px;
}

.tick-list li.icon-blank-cross.selected .icon-area {
	background: url("../../../common_assets/images/cross-solid.svg") center
		center no-repeat;
	background-color: #d6575c;
	background-size: 16px;
}

/*END TICK LIST CSS*/

/* START INTERACTIVE ICONS */
.interactive-icons {
	text-align: center;
	margin-bottom: 40px;
}

.interactive-icons img {
	margin-bottom: 0px;
}

.interactive-icons p {
	margin-bottom: 0;
}

.interactive-icons .icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 24px;
}

@media only screen and (min-width: 400px) {
	.interactive-icons .icons {
		margin-bottom: 32px;
	}
}

.interactive-icons .icons .icon {
	width: 56px;
	opacity: 0.5;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	position: relative;
	cursor: pointer;
}

.interactive-icons .icons .icon span {
	position: absolute;
	font-weight: bold;
	color: white;
	opacity: 0.5;
}

.interactive-icons .icons .icon span.number-top {
	top: 20%;
	left: 50%;
}

.interactive-icons .icons .icon span.number-middle {
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.interactive-icons .icons .icon span.number-bottom {
	bottom: 20%;
	left: 50%;
}

.interactive-icons .icons .icon.active,
.interactive-icons .icons .icon:hover {
	opacity: 1;
}

.interactive-icons .icons .icon.active span,
.interactive-icons .icons .icon:hover span {
	opacity: 1;
}

@media only screen and (min-width: 500px) {
	.interactive-icons .icons .icon {
		width: 64px;
	}
}

@media only screen and (min-width: 600px) {
	.interactive-icons .icons .icon {
		width: 72px;
	}
}

@media only screen and (min-width: 1000px) {
	.interactive-icons .icons .icon {
		width: 80px;
	}
}

.interactive-icons .content-text {
	display: none;
}

.interactive-icons .content-text.visible {
	display: block;
}

.section-dark .interactive-icons .icons span {
	color: black;
}

/* END INTERACTIVE ICONS */

/*NEW interactions styles */

.interactive-block {
	margin-bottom: 40px;
	text-align: center;
}

.interactive-feature {
	border: 1px solid #bbb;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	padding: 20px;
	gap: 20px;
}

@media screen and (min-width: 600px) {
	.interactive-feature {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

@media screen and (min-width: 600px) {
	.interactive-feature.interactive-feature-3 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.interactive-block .content-left {
	text-align: center;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media screen and (min-width: 600px) {
	.interactive-block .content-left {
		width: 50%;
	}
}

.interactive-block .content-right {
	width: 75%;
}

@media screen and (min-width: 600px) {
	.interactive-block .content-right {
		width: 50%;
	}
}

.interactive-block .content-right img {
	width: 100%;
}

.interactive-block .controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	padding: 20px 0;
}

.interactive-block .days {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.interactive-block .days p {
	margin: 0;
}

.interactive-block .days .large-number {
	font-size: 64px;
	font-weight: 800;
}

.interactive-block .day {
	display: none;
}

.interactive-block .day.active {
	display: block;
}

.interactive-block .button {
	height: 41px;
	width: 41px;
	border-radius: 50px;
	background: #21263d;
	color: white;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	cursor: pointer;
}

.interactive-block .button:hover {
	background: #0f111c;
}

.interactive-block .button.disabled {
	opacity: 0.35;
}

.round-button {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.interactive-block .round-button {
	background: #21263d;
	color: white;
	height: 100px;
	width: 100px;
	border-radius: 200px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	cursor: pointer;
}

@media screen and (min-width: 600px) {
	.interactive-block .round-button {
		height: 200px;
		width: 200px;
	}
}

.interactive-block .round-button-dark {
	background: #21263d;
	color: white;
}

.interactive-block .round-button-dark:hover {
	background: #0f111c;
}

.interactive-block .round-button-1 {
	background: #93c6fa;
	color: white;
}

.interactive-block .round-button-2 {
	background: #dba03c;
	color: white;
}

.interactive-block .round-button-3 {
	background: #a32320;
	color: white;
}

.interactive-block .button-left img,
.interactive-block .button-right img {
	height: 20px;
}

.interactive-block .content-top {
	width: 100%;
}

.interactive-block .content-top-controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
	padding: 20px 0;
}

.interactive-block .temp {
	opacity: 0.5;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.interactive-block .temp:hover {
	opacity: 1;
}

.interactive-block .temp.show {
	opacity: 1;
}

.interactive-block .content-block {
	display: none;
}

.interactive-block .content-block.content-active {
	display: block;
}

.interactive-block .shorten-word {
	display: none;
}

@media screen and (min-width: 600px) {
	.interactive-block .shorten-word {
		display: inline;
	}
}

.interactive-block .shorten-word-reverse {
	display: inline;
}

@media screen and (min-width: 600px) {
	.interactive-block .shorten-word-reverse {
		display: none;
	}
}

@media screen and (min-width: 600px) {
	.interactive-block .large-text {
		font-size: 64px;
		font-weight: 800;
	}
}

@media screen and (min-width: 600px) {
	.interactive-block .med-text {
		font-size: 32px;
		font-weight: 800;
	}
}

.interactive-block .content-right img {
	display: none;
}

.interactive-block .content-right img.active {
	display: block;
}
/*END new interactions styles */


.illustration {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 0 auto;
}

/* CD EDITS SEPT 2023 */

/*
.icon-test {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	 Taken from .slider-slide img - needs .slider-slide svg adding?? 
}
*/

/* START illustrations - change colours in accessibility modes */

/*
.accessibility-theme--2 .st0 {
	fill: red;
}

.accessibility-theme--2 .st1 {
	fill: orange;
}
*/

/* END illustrations - change colours in accessibility modes */

/* START icon info */
.icon-info {
	fill: #21243e;
	height: 35px;
	width: 35px;
}

.section-dark .icon-info {
	fill: white;
}

.accessibility-theme--2 .icon-info {
	fill: black;
}

.accessibility-theme--3 .icon-info {
	fill: #5d007b;
}

.accessibility-theme--4 .icon-info {
	fill: #32119e;
}

.accessibility-theme--5 .icon-info {
	fill: #2c47e2;
}

.accessibility-theme--6 .icon-info {
	fill: #ffc845;
}

/* END icon info */

/*START-RESPONSIVE-TABLES*/
.table-responsive table {
	border-spacing: 0;
	margin-bottom: 80px;
}

.table-responsive th,
.table-responsive td {
	vertical-align: top;
}

.table-responsive table,
.table-responsive th,
.table-responsive td {
  /*border: 1px solid #d9d9d9;*/
}

.table-responsive table {
	border-collapse: collapse;
}

.table-responsive tr.subheading {
	font-weight: 800;
	margin: 0;
}

.table-responsive tr.subheading td {
	padding-top: 32px;
}

.table-responsive tr.subheading p {
	font-weight: 800;
	font-size: 20px;
	margin: 0;
}

.table-responsive table td,
.table-responsive table th {
	border: none;
	margin: 0;
	text-align: left;
	padding: 36px;
	vertical-align: middle;
}

@media screen and (max-width: 580px) {
	.table-responsive table td,
	.table-responsive table th {
		padding: 24px 16px 0px;
	}
	.table-responsive table td:last-child,
	.table-responsive table th:last-child {
		padding-bottom: 24px;
	}
}

.table-responsive table {
	width: 100%;
}

.table-responsive tr {
	display: table-row;
	background: #dce9eb;
}

.table-responsive tr:nth-of-type(odd) {
	background: #f7fcfc;
}

@media screen and (max-width: 580px) {
	.table-responsive tr th {
		display: none;
	}
}

@media screen and (max-width: 580px) {
	.table-responsive td {
		display: block;
	}
}

@media screen and (max-width: 580px) {
	.table-responsive td:before {
		margin-bottom: 12px;
		content: attr(data-title);
		min-width: 98px;
		font-size: 14px;
		line-height: 1.25;
		font-weight: 800;
		text-transform: uppercase;
		display: block;
		letter-spacing: 1px;
		opacity: 0.6;
	}
}

.table-responsive p {
	margin-bottom: 8px;
}

.table-responsive p.table-data-bold {
	font-weight: 800;
}

.table-responsive ul {
	margin-bottom: 0;
	list-style: none;
	margin: 0;
}

.table-responsive ul li::marker {
	color: inherit;
}

.table-responsive li {
	margin-bottom: 8px;
}

.table-responsive li:last-of-type {
	margin-bottom: 0;
}

.section-dark .table-responsive table {
	border-color: #414250;
	color: #21243e;
}

.section-dark .table-responsive tr {
	display: table-row;
	background: rgba(255, 255, 255, 0.05);
	color: white;
}

.section-dark .table-responsive tr:nth-of-type(odd) {
	background: none;
}

.section-dark .table-responsive tr.subheading {
	background: #3a3c54;
}

/*START-INDIVIDUAL-TABLE STYLES*/
.table-responsive .table-teal thead tr {
	background: #00bbc1 !important;
	color: white;
}

@media screen and (max-width: 580px) {
	.table-responsive .table-teal {
		border-left: 4px solid #00bbc1 !important;
	}
}
/*END-INDIVIDUAL-TABLE STYLES*/

/*START ACCESSIBILITY TABLE STYLES THEME 2*/
.accessibility-theme--2 .table-responsive table,
.accessibility-theme--2 .table-responsive .section-dark table {
	color: black;
}

.accessibility-theme--2 .table-responsive table,
.accessibility-theme--2 .table-responsive th,
.accessibility-theme--2 .table-responsive td {
/*	border: 1px solid black;*/
	color: black;
}

.accessibility-theme--2 .section-dark .table-responsive table,
.accessibility-theme--2 .section-dark .table-responsive th,
.accessibility-theme--2 .section-dark .table-responsive td {
/*	border: 1px solid black;*/
}

.accessibility-theme--2 .table-responsive table td,
.accessibility-theme--2 .table-responsive table th {
	border: none;
}

.accessibility-theme--2 .section-dark .table-responsive table td,
.accessibility-theme--2 .section-dark .table-responsive table th {
	border: none;
}

.accessibility-theme--2 .table-responsive .table-teal thead th {
	background: black !important;
	color: white;
}

@media screen and (max-width: 580px) {
	.accessibility-theme--2 .table-responsive .table-teal {
		border-left: 4px solid black !important;
	}
}

.accessibility-theme--2 .table-responsive tr,
.accessibility-theme--2 .section-dark .table-responsive tr {
	background: rgba(0, 0, 0, 0.06);
}

.accessibility-theme--2 .table-responsive tr:nth-of-type(odd),
.accessibility-theme--2 .section-dark .table-responsive tr:nth-of-type(odd) {
	background: rgba(0, 0, 0, 0.025);
}

/*START ACCESSIBILITY TABLE STYLES THEME 3*/
.accessibility-theme--3 .table-responsive table,
.accessibility-theme--3 .table-responsive .section-dark table {
	color: #5d007b;
}

.accessibility-theme--3 .table-responsive table,
.accessibility-theme--3 .table-responsive th,
.accessibility-theme--3 .table-responsive td {
/*	border: 1px solid #5d007b;*/
	color: #5d007b;
}

.accessibility-theme--3 .section-dark .table-responsive table,
.accessibility-theme--3 .section-dark .table-responsive th,
.accessibility-theme--3 .section-dark .table-responsive td {
/*	border: 1px solid #5d007b;*/
}

.accessibility-theme--3 .table-responsive table td,
.accessibility-theme--3 .table-responsive table th {
	border: none;
}

.accessibility-theme--3 .section-dark .table-responsive table td,
.accessibility-theme--3 .section-dark .table-responsive table th {
	border: none;
}

.accessibility-theme--3 .table-responsive .table-teal thead th {
	background: #5d007b !important;
	color: #ffeaa9;
}

@media screen and (max-width: 580px) {
	.accessibility-theme--3 .table-responsive .table-teal {
		border-left: 4px solid #5d007b !important;
	}
}

.accessibility-theme--3 .table-responsive tr,
.accessibility-theme--3 .section-dark .table-responsive tr {
	background: rgba(0, 0, 0, 0.05);
}

.accessibility-theme--3 .table-responsive tr:nth-of-type(odd),
.accessibility-theme--3 .section-dark .table-responsive tr:nth-of-type(odd) {
	background: rgba(255, 255, 255, 0.2);
}

/*START ACCESSIBILITY TABLE STYLES THEME 4*/
.accessibility-theme--4 .table-responsive table,
.accessibility-theme--4 .table-responsive .section-dark table {
	color: #32119e;
}

.accessibility-theme--4 .table-responsive table,
.accessibility-theme--4 .table-responsive th,
.accessibility-theme--4 .table-responsive td {
/*	border: 1px solid #32119e;*/
	color: #32119e;
}

.accessibility-theme--4 .section-dark .table-responsive table,
.accessibility-theme--4 .section-dark .table-responsive th,
.accessibility-theme--4 .section-dark .table-responsive td {
/*	border: 1px solid #32119e;*/
}

.accessibility-theme--4 .table-responsive table td,
.accessibility-theme--4 .table-responsive table th {
	border: none;
}

.accessibility-theme--4 .section-dark .table-responsive table td,
.accessibility-theme--4 .section-dark .table-responsive table th {
	border: none;
}

.accessibility-theme--4 .table-responsive .table-teal thead th {
	background: #32119e !important;
	color: #feffd7;
}

@media screen and (max-width: 580px) {
	.accessibility-theme--4 .table-responsive .table-teal {
		border-left: 4px solid #32119e !important;
	}
}

.accessibility-theme--4 .table-responsive tr,
.accessibility-theme--4 .section-dark .table-responsive tr {
	background: rgba(0, 0, 0, 0.05);
}

.accessibility-theme--4 .table-responsive tr:nth-of-type(odd),
.accessibility-theme--4 .section-dark .table-responsive tr:nth-of-type(odd) {
	background: rgba(255, 255, 255, 0.2);
}

/*START ACCESSIBILITY TABLE STYLES THEME 5*/
.accessibility-theme--5 .table-responsive table,
.accessibility-theme--5 .table-responsive .section-dark table {
	color: #2c47e2;
}

.accessibility-theme--5 .table-responsive table,
.accessibility-theme--5 .table-responsive th,
.accessibility-theme--5 .table-responsive td {
/*	border: 1px solid #2c47e2;*/
	color: #2c47e2;
}

.accessibility-theme--5 .section-dark .table-responsive table,
.accessibility-theme--5 .section-dark .table-responsive th,
.accessibility-theme--5 .section-dark .table-responsive td {
/*	border: 1px solid #2c47e2;*/
}

.accessibility-theme--5 .table-responsive table td,
.accessibility-theme--5 .table-responsive table th {
	border: none;
}

.accessibility-theme--5 .section-dark .table-responsive table td,
.accessibility-theme--5 .section-dark .table-responsive table th {
	border: none;
}

.accessibility-theme--5 .table-responsive .table-teal thead th {
	background: #2c47e2 !important;
	color: #eae8ba;
}

@media screen and (max-width: 580px) {
	.accessibility-theme--5 .table-responsive .table-teal {
		border-left: 4px solid #2c47e2 !important;
	}
}

.accessibility-theme--5 .table-responsive tr,
.accessibility-theme--5 .section-dark .table-responsive tr {
	background: rgba(0, 0, 0, 0.05);
}

.accessibility-theme--5 .table-responsive tr:nth-of-type(odd),
.accessibility-theme--5 .section-dark .table-responsive tr:nth-of-type(odd) {
	background: rgba(255, 255, 255, 0.2);
}

/*START ACCESSIBILITY TABLE STYLES THEME 6*/
.accessibility-theme--6 .table-responsive table,
.accessibility-theme--6 .table-responsive .section-dark table {
	color: #ffc845;
}

.accessibility-theme--6 .table-responsive table,
.accessibility-theme--6 .table-responsive th,
.accessibility-theme--6 .table-responsive td {
/*	border: 1px solid #ffc845;*/
	color: #ffc845;
}

.accessibility-theme--6 .section-dark .table-responsive table,
.accessibility-theme--6 .section-dark .table-responsive th,
.accessibility-theme--6 .section-dark .table-responsive td {
/*	border: 1px solid #ffc845;*/
}

.accessibility-theme--6 .table-responsive table td,
.accessibility-theme--6 .table-responsive table th {
	border: none;
}

.accessibility-theme--6 .section-dark .table-responsive table td,
.accessibility-theme--6 .section-dark .table-responsive table th {
	border: none;
}

.accessibility-theme--6 .table-responsive .table-teal thead th {
	background: #ffc845 !important;
	color: #003b49;
}

@media screen and (max-width: 580px) {
	.accessibility-theme--6 .table-responsive .table-teal {
		border-left: 4px solid #ffc845 !important;
	}
}

.accessibility-theme--6 .table-responsive tr,
.accessibility-theme--6 .section-dark .table-responsive tr {
	background: rgba(0, 0, 0, 0.05);
}

.accessibility-theme--6 .table-responsive tr:nth-of-type(odd),
.accessibility-theme--6 .section-dark .table-responsive tr:nth-of-type(odd) {
	background: rgba(255, 255, 255, 0.1);
}

/*END ACCESSIBILITY TABLE STYLES*/

/* START INTERACTIVE BUTTON PULSE ACCESSIBILITY */
.accessibility-theme--2 .buttoninter {
	animation: pulse-2 1.5s infinite;
}

@keyframes pulse-2 {
	from {
		box-shadow: 0 0 0 0px rgba(0, 0, 0);
	}
	to {
		box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
	}
}

.accessibility-theme--3 .buttoninter {
	animation: pulse-3 1.5s infinite;
}

@keyframes pulse-3 {
	from {
		box-shadow: 0 0 0 0px rgba(93, 0, 123);
	}
	to {
		box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
	}
}

.accessibility-theme--4 .buttoninter {
	animation: pulse-4 1.5s infinite;
}

@keyframes pulse-4 {
	from {
		box-shadow: 0 0 0 0px rgba(50, 17, 158);
	}
	to {
		box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
	}
}

.accessibility-theme--5 .buttoninter {
	animation: pulse-5 1.5s infinite;
}

@keyframes pulse-5 {
	from {
		box-shadow: 0 0 0 0px rgba(44, 71, 266);
	}
	to {
		box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
	}
}

.accessibility-theme--6 .buttoninter {
	animation: pulse-6 1.5s infinite;
}

@keyframes pulse-6 {
	from {
		box-shadow: 0 0 0 0px rgba(255, 200, 69);
	}
	to {
		box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
	}
}

/* END INTERACTIVE BUTTON PULSE ACCESSIBILITY */

/* START Interactive feature additional styles */

.interactive-block .button img {
	margin: 0;
}

.interactive-block .round-button-dark {
	background: #21243e;
}

.interactive-block .round-button-dark * {
	color: white;
}

.interactive-block .round-button-dark:hover {
	background: white;
}

.section-dark .interactive-block .round-button-dark {
	background: white;
}

.section-dark .interactive-block .round-button-dark * {
	color: #21243e;
}

/* 2 */

.accessibility-theme--2 .interactive-feature {
	border: 1px solid black;
	background: none;
}

.accessibility-theme--2 .interactive-block .round-button-dark {
	background: black;
}

.accessibility-theme--2 .interactive-block .round-button-dark:hover {
	background: #333333;
}

.accessibility-theme--2 .interactive-block .round-button-dark * {
	color: white;
}

/* 3 */

.accessibility-theme--3 .interactive-feature {
	border: 1px solid #5d007b;
	background: none;
}

.accessibility-theme--3 .interactive-block .round-button-dark {
	background: #5d007b;
}

.accessibility-theme--3 .interactive-block .round-button-dark:hover {
	background: #2a0048;
}

.accessibility-theme--3 .interactive-block .round-button-dark * {
	color: #ffeaa9;
}

/* 4 */

.accessibility-theme--4 .interactive-feature {
	border: 1px solid #32119e;
	background: none;
}

.accessibility-theme--4 .interactive-block .round-button-dark {
	background: #32119e;
}

.accessibility-theme--4 .interactive-block .round-button-dark:hover {
	background: #190085;
}

.accessibility-theme--4 .interactive-block .round-button-dark * {
	color: #feffd7;
}

/* 5 */

.accessibility-theme--5 .interactive-feature {
	border: 1px solid #2c47e2;
	background: none;
}

.accessibility-theme--5 .interactive-block .round-button-dark {
	background: #2c47e2;
}

.accessibility-theme--5 .interactive-block .round-button-dark:hover {
	background: #132ec9;
}

.accessibility-theme--5 .interactive-block .round-button-dark * {
	color: #eae8ba;
}

/* 6 */

.accessibility-theme--6 .interactive-feature {
	border: 1px solid #ffc845;
	background: none;
}

.accessibility-theme--6 .interactive-block .round-button-dark {
	background: #ffc845;
}

.accessibility-theme--6 .interactive-block .round-button-dark:hover {
	background: #de9c00;
}

.accessibility-theme--6 .interactive-block .round-button-dark * {
	color: #003b49;
}
/* END Interactive feature additional styles */

/* START Interactive feature additional styles */

/*
.interactive-block .button {
	background: #21243e;
}
*/

/*
.interactive-block .button:hover {
	background: white;
}
*/

.section-dark .interactive-block .button {
	background: white;
}

/* 2 */

.accessibility-theme--2 .interactive-block .button {
	background: black;
}

.accessibility-theme--2 .interactive-block .button:hover {
	background: #333333;
}

/* 3 */

.accessibility-theme--3 .interactive-block .button {
	background: #5d007b;
}

.accessibility-theme--3 .interactive-block .button:hover {
	background: #2a0048;
}

/* 4 */

.accessibility-theme--4 .interactive-block .button {
	background: #32119e;
}

.accessibility-theme--4 .interactive-block .button:hover {
	background: #190085;
}

/* 5 */

.accessibility-theme--5 .interactive-block .button {
	background: #2c47e2;
}

.accessibility-theme--5 .interactive-block .button:hover {
	background: #132ec9;
}

/* 6 */

.accessibility-theme--6 .interactive-block .button {
	background: #ffc845;
}

.accessibility-theme--6 .interactive-block .button:hover {
	background: orange;
}

/* END Interactive feature additional styles */

/* START Icon / illustration styling in accessibility modes */

.st0 /* icon */ {
	fill: black;
}
.st1 /* circle */ {
	fill: #00bbc1;
}

.section-dark .st0 {
	fill: white;
}

.accessibility-theme--2 .st0 {
	fill: black;
}
.accessibility-theme--2 .st1 {
	fill: #e6e6e6;
}

.accessibility-theme--3 .st0 {
	fill: #5d007b;
}
.accessibility-theme--3 .st1 {
	fill: #e6d190;
}

.accessibility-theme--4 .st0 {
	fill: #32119e;
}
.accessibility-theme--4 .st1 {
	fill: #e5e6be;
}

.accessibility-theme--5 .st0 {
	fill: #2c47e2;
}
.accessibility-theme--5 .st1 {
	fill: #d1cfa1;
}

.accessibility-theme--6 .st0 {
	fill: #ffc845;
}
.accessibility-theme--6 .st1 {
	fill: #de9c00;
}

/* END Icon / illustration styling in accessibility modes */

/* START interactive icons number colours accessibility modes */

.accessibility-theme--2 .interactive-icons .icon span {
	color: white;
}

.accessibility-theme--3 .interactive-icons .icon span {
	color: #ffeaa9;
}

.accessibility-theme--4 .interactive-icons .icon span {
	color: #feffd7;
}

.accessibility-theme--5 .interactive-icons .icon span {
	color: #eae8ba;
}

.accessibility-theme--6 .interactive-icons .icon span {
	color: #003b49;
}

/* END interactive icons number colours accessibility modes */

/*  */
.swiper-single-slide .swiper-slide .slide-image {
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: auto !important;
}

.swiper-single-slide .swiper-slide .slide-image svg {
	height: 100%;
}

.swiper-single-slide .swiper-slide .slide-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/*  */

/* Start Illustration max height / width */

.illustration {
	max-width: 300px;
}
/* END Illustration max height / width */

/* START Interactive round buttons (temperature) accessibility modes */

.accessibility-theme--2 .interactive-block .round-button-1,
.accessibility-theme--2 .interactive-block .round-button-2,
.accessibility-theme--2 .interactive-block .round-button-3 {
	background: none;
	border: 3px solid black;
}

.accessibility-theme--2 .interactive-block .round-button-1 span,
.accessibility-theme--2 .interactive-block .round-button-2 span,
.accessibility-theme--2 .interactive-block .round-button-3 span {
	color: black;
}

.accessibility-theme--3 .interactive-block .round-button-1,
.accessibility-theme--3 .interactive-block .round-button-2,
.accessibility-theme--3 .interactive-block .round-button-3 {
	background: none;
	border: 3px solid #5d007b;
}

.accessibility-theme--3 .interactive-block .round-button-1 span,
.accessibility-theme--3 .interactive-block .round-button-2 span,
.accessibility-theme--3 .interactive-block .round-button-3 span {
	color: #5d007b;
}

.accessibility-theme--4 .interactive-block .round-button-1,
.accessibility-theme--4 .interactive-block .round-button-2,
.accessibility-theme--4 .interactive-block .round-button-3 {
	background: none;
	border: 3px solid #32119e;
}

.accessibility-theme--4 .interactive-block .round-button-1 span,
.accessibility-theme--4 .interactive-block .round-button-2 span,
.accessibility-theme--4 .interactive-block .round-button-3 span {
	color: #32119e;
}

.accessibility-theme--5 .interactive-block .round-button-1,
.accessibility-theme--5 .interactive-block .round-button-2,
.accessibility-theme--5 .interactive-block .round-button-3 {
	background: none;
	border: 3px solid #2c47e2;
}

.accessibility-theme--5 .interactive-block .round-button-1 span,
.accessibility-theme--5 .interactive-block .round-button-2 span,
.accessibility-theme--5 .interactive-block .round-button-3 span {
	color: #2c47e2;
}

.accessibility-theme--6 .interactive-block .round-button-1,
.accessibility-theme--6 .interactive-block .round-button-2,
.accessibility-theme--6 .interactive-block .round-button-3 {
	background: none;
	border: 3px solid #ffc845;
}

.accessibility-theme--6 .interactive-block .round-button-1 span,
.accessibility-theme--6 .interactive-block .round-button-2 span,
.accessibility-theme--6 .interactive-block .round-button-3 span {
	color: #ffc845;
}
/* END Interactive round buttons (temperature) accessibility modes */

/* START Progress bars accessibility colours */

.accessibility-theme--2 .bar {
	background: #333333;
}

.accessibility-theme--3 .bar {
	background: #9033ae;
}

.accessibility-theme--4 .bar {
	background: #6544d1;
}

.accessibility-theme--5 .bar {
	background: #5f7aff;
}

.accessibility-theme--6 .bar {
	background: #de9c00;
}

/* END Progress bars accessibility colours */

/* START H1 on all pages */

/*
.component-wrap-standard h1 {
	margin-bottom: 40px;
}
*/

/* END H1 on all pages */

/* START info bar */
.instructions-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
}

.instructions-bar .instructions {
	margin-right: 8px;
}

.instructions-bar p {
	margin-bottom: 0;
}
/* END info bar */

/* START - Interactive hover spot features */
.containerinter {
	position: relative;
	overflow: hidden;
	height: 60vw;
	background-image: url("../../../common_assets/images/personal_hygiene.png");
	background-size: cover;
	max-height: 477px;
	padding: 0;
	margin-bottom: 40px;
	display: flex;
}


.containerinter input[type="checkbox"] {
	display: none !important;
}

.contentblock input {
	display: none;
}
.contentblock p {
	margin: 0;
}

.buttoninter {
	color: white;
	font-weight: bold;
	font-size: 18px;
	background-color: #008894;
	display: flex;
	height: 40px;
	width: 40px;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	cursor: pointer;
	animation: fadein 0.5s;
	animation: pulse 1.5s infinite;
}

.roundsurround {
	color: white;
	font-weight: bold;
	font-size: 24px;
	background-color: #061333;
	display: flex;
	height: 45px;
	width: 45px;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
}

.accessibility-theme--1 .roundsurround {
	background-color: #21243D;
	color: white;
}

.accessibility-theme--2 .roundsurround {
	background-color: black;
	color: white;
}

.accessibility-theme--3 .roundsurround {
	background-color: #5d007b;
	color: #ffeaa9;
}

.accessibility-theme--4 .roundsurround {
	background-color: #32119e;
	color: #feffd7;
}

.accessibility-theme--5 .roundsurround {
	background-color: #2c47e2;
	color: #eae8ba;
}

.accessibility-theme--6 .roundsurround {
	background-color: #ffc845;
	color: #003b49;
}

@media screen and (min-width: 500px) {
	.buttoninter {
		height: 44px;
		width: 44px;
	}
}

input:checked ~ label .buttoninter {
	display: none !important;
	animation: fadeout 0.5s;
}
.buttoninter:hover {
	color: #008894;
	background: white;
}

.contentblock {
	color: #21243e;
	background: white;
	padding: 5%;
	/*	padding-bottom: 10%; */
	text-align: center;
	display: none;
	position: relative;
	margin: 0 auto;
	align-self: center;
	/*
width: 70%; 
margin-top: 5%; 
*/
	height: auto;
	width: 100%;
	border-style: solid;
	border-color: #008894;
	border-width: 2px;
	border-left-width: 0;
	border-right-width: 0;
	flex-direction: column;
	justify-content: center;
}

/*
@media screen and (min-width: 500px) {
	.contentblock {
		border-left-width: 2px;
		border-right-width: 2px;
	}
}
*/

.accessibility-theme--2 .contentblock {
	color: black;
	background: white;
	border-color: black;
}

.accessibility-theme--3 .contentblock {
	color: #5d007b;
	background: #ffeaa9;
	border-color: #5d007b;
}

.accessibility-theme--4 .contentblock {
	color: #32119e;
	background: #feffd7;
	border-color: #32119e;
}

.accessibility-theme--5 .contentblock {
	color: #2c47e2;
	background: #eae8ba;
	border-color: #2c47e2;
}

.accessibility-theme--6 .contentblock {
	color: #ffc845;
	background: #003b49;
	border-color: #ffc845;
}

/*
.contentblock .cross {
	font-weight: bold;
	position: absolute;
	top: 8px;
	right: 8px;
	cursor: pointer;
}
*/

.contentblock .cross {
	position: absolute;
	top: 8px;
	right: 8px;
	cursor: pointer;
	display: flex;
	justify-content: center;
    align-items: center;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    background: red;
    padding: 0;
    margin: 0;
}

.accessibility-theme--1 .contentblock .cross {
	background: black;
	border: 2px solid white;
}

.accessibility-theme--1 .contentblock .cross svg {
	fill: white;
}

.accessibility-theme--2 .contentblock .cross {
	background: black;
	border: 2px solid white;
}

.accessibility-theme--2 .contentblock .cross svg {
	fill: white;
}

.accessibility-theme--3 .contentblock .cross {
	background: #ffeaa9;
	border: 2px solid #5d007b;
}

.accessibility-theme--3 .contentblock .cross svg {
	fill: #5d007b;
}

.accessibility-theme--4 .contentblock .cross {
	background: #feffd7;
	border: 2px solid #32119e;
}

.accessibility-theme--4 .contentblock .cross svg {
	fill: #32119e;
}

.accessibility-theme--5 .contentblock .cross {
	background: #eae8ba;
	border: 2px solid #2c47e2;
}

.accessibility-theme--5 .contentblock .cross svg {
	fill: #2c47e2;
}

.accessibility-theme--6 .contentblock .cross {
	background: #003b49;
	border: 2px solid #ffc845;
}

.accessibility-theme--6 .contentblock .cross svg {
	fill: #ffc845;
}


.contentblock .header {
	font-weight: bold;
	margin-top: 16px;
	/*	font-size: 24px; */
	font-size: 20px;
	line-height: 1.25;
	margin-bottom: 8px;
}

.contentblock .bodyCopy {
	/*	margin-top: 18px; */
	/*	font-size: 16px;*/
	line-height: 1.25;
}

#input1:checked ~ #content1,
#input2:checked ~ #content2,
#input3:checked ~ #content3,
#input4:checked ~ #content4,
#input5:checked ~ #content5,
#input6:checked ~ #content6,
#input7:checked ~ #content7,
#input8:checked ~ #content8,
#input9:checked ~ #content9,
#input10:checked ~ #content10 {
	display: block !important;
	animation: fadein 0.5s;
}

.cta {
	display: inline-block;
	background: #d32f2f;
	color: white;
	padding: 12px 24px;
	margin-top: 48px;
	border-radius: 24px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cta:hover {
	text-decoration: underline !important;
	box-shadow: 0 0 0 6px rgba(211, 46, 46, 0.4);
}

@keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeout {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes pulse {
	from {
		box-shadow: 0 0 0 0px rgba(0, 136, 148);
	}
	to {
		box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
	}
}

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

	.contentblock .bodyCopy {
		line-height: 1.4;
	}

	.contentblock .header {
		font-size: 24px;
	}
}

/* END - Interactive hover spot features */

.accessibility-theme--2 .buttoninter {
	background-color: #454545;
}
.accessibility-theme--2 input:checked ~ label .buttoninter {
	display: none !important;
	animation: fadeout 0.5s;
}
.accessibility-theme--2 .buttoninter:hover {
	color: #454545;
	background: white;
}

.accessibility-theme--3 .buttoninter {
	background-color: #3c0050;
	color: #ffeaa9;
}
.accessibility-theme--3 input:checked ~ label .buttoninter {
	display: none !important;
	animation: fadeout 0.5s;
}
.accessibility-theme--3 .buttoninter:hover {
	color: #3c0050;
	background: #ffeaa9;
}

.accessibility-theme--4 .buttoninter {
	background-color: #32119e;
	color: #feffd7;
}
.accessibility-theme--4 input:checked ~ label .buttoninter {
	display: none !important;
	animation: fadeout 0.5s;
}
.accessibility-theme--4 .buttoninter:hover {
	color: #32119e;
	background: #feffd7;
}

.accessibility-theme--5 .buttoninter {
	background-color: #172dac;
	color: #eae8ba;
}
.accessibility-theme--5 input:checked ~ label .buttoninter {
	display: none !important;
	animation: fadeout 0.5s;
}
.accessibility-theme--5 .buttoninter:hover {
	color: #172dac;
	background: #eae8ba;
}

.accessibility-theme--6 .buttoninter {
	background-color: #ffc845;
	color: #003b49;
}
.accessibility-theme--6 input:checked ~ label .buttoninter {
	display: none !important;
	animation: fadeout 0.5s;
}
.accessibility-theme--6 .buttoninter:hover {
	color: #ffc845;
	background: #003b49;
}

.accessibility-theme--1 .section-dark .swiper-pagination-bullet {
	background-color: white;
}

/* START - Testing wrapper max widths */
.component-wrap-standard {
/*
	padding: 0;
	margin: 0 auto;
*/
	max-width: 800px;
}

/*
.component-wrap-bg-img {
	padding: 0;
	margin: 0 auto;
	max-width: 800px;
}
*/

.component-wrap-afterinter {
	margin: 0 auto;
	max-width: 800px;
}

/* END - Testing wrapper max widths */

/* START nav logo */

.nav-logo {
  height: 40px;
}

@media only screen and (min-width: 800px) {
  .nav-logo {
    height: 60px;
  }
}

@media only screen and (min-width: 1700px) {
  .nav-logo {
    height: 68px;
  }
}

.nav-logo {
	fill: #241d41;
}

.accessibility-theme--1 .nav-logo .st0 {
	fill: #241d41;
}

.accessibility-theme--2 .nav-logo .st0 {
	fill: white;
}

.accessibility-theme--3 .nav-logo .st0 {
	fill: #ffeaa9;
}

.accessibility-theme--4 .nav-logo .st0 {
	fill: #feffd7;
}

.accessibility-theme--5 .nav-logo .st0 {
	fill: #eae8ba;
}

.accessibility-theme--6 .nav-logo .st0 {
	fill: #ffc845;
}

/* END nav logo */

/* START courses homepage test layout */

.test-layout {
/*	position: relative;*/
}

.test-layout-wrapper {
	/* margin-bottom: 80px;*/
	display: flex;
	flex-direction: column;
	/* height: 700px;*/
	z-index: 0;
	
}

.test-layout-top	{
	background: -webkit-linear-gradient(bottom, rgba(0,135,148,1) 0%, rgba(0,100,110,1) 100%);
	background: -o-linear-gradient(bottom, rgba(0,135,148,1) 0%, rgba(0,100,110,1) 100%);
	background: linear-gradient(to top, rgba(0,135,148,1) 0%, rgba(0,100,110,1) 100%);
	height: 350px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	color: white; 
}

.accessibility-theme--2 .test-layout-top, .accessibility-theme--3 .test-layout-top, .accessibility-theme--4 .test-layout-top, .accessibility-theme--5 .test-layout-top, .accessibility-theme--6 .test-layout-top {
	background: rgba(0, 0, 0, 0.035);
	color: inherit;
}


.test-layout-bottom	{
	background: #008794;
	height: 350px;
	display: flex;
	justify-content: flex-end;
	position: relative;
	color: white; 
}

.accessibility-theme--2 .test-layout-bottom, .accessibility-theme--3 .test-layout-bottom,  .accessibility-theme--4 .test-layout-bottom,  .accessibility-theme--5 .test-layout-bottom,  .accessibility-theme--6 .test-layout-bottom  {
	background: rgba(0, 0, 0, 0.035);
	color: inherit;
}



.test-layout-top-left {
	background: #00bbc1;
	height: 160px;
	width: 30%;
	border-radius: 0 100px 100px 0;
}

@media only screen and (min-width: 800px) {
	.test-layout-top-left {
		width: 50%;
	}
}

.accessibility-theme--2 .test-layout-top-left, .accessibility-theme--3 .test-layout-top-left, .accessibility-theme--4 .test-layout-top-left, .accessibility-theme--5 .test-layout-top-left, .accessibility-theme--6 .test-layout-top-left {
		background-color: rgba(0, 0, 0, 0.07);
	}

.test-layout-bottom-right {
	background: #00646e;
	height: 100%;
	width: 100%;
}

@media only screen and (min-width: 1200px) {
	.test-layout-bottom-right {
		width: 95%;
		border-radius: 1000px 0 0 0;
	}
}

.accessibility-theme--2 .test-layout-bottom-right, .accessibility-theme--3 .test-layout-bottom-right, .accessibility-theme--4 .test-layout-bottom-right, .accessibility-theme--5 .test-layout-bottom-right, .accessibility-theme--6 .test-layout-bottom-right {
		background-color: rgba(0, 0, 0, 0.07);
	}

.test-layout-over-top {
	position: absolute;
	left: 50%;
    transform: translateX(-50%);
	width: 100%;
	max-width: 800px;
	height: 100%;
	top: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.test-layout-over-top-left {
	width: 30%;
	display: flex;
	align-items: center;
	text-align: right;
	justify-content: flex-end;
	padding-right: 0px;
}

@media only screen and (min-width: 800px) {
	.test-layout-over-top-left {
		width: 50%;
		padding-right: 32px;
	}
}

.test-layout-over-top-right {
	width: 60%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	text-align: right;
	padding-right: 32px;
}

@media only screen and (min-width: 800px) {
	.test-layout-over-top-right {
	width: 45%;
	}
}

/*
.test-layout-over-top-left .test-layout-over-top-left-content {
	height: 200px;
	width: 200px;
}
*/

.test-layout-over-top-left .test-layout-over-top-left-content svg {
	height: 200px;
}

.test-layout-over-bottom {
	position: absolute;
	left: 50%;
    transform: translateX(-50%);
	width: 100%;
	max-width: 800px;
	height: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

@media only screen and (min-width: 800px) {
	.test-layout-over-bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}

.test-layout-over-bottom-left {
	width: 100%;
	display: flex;
	align-items: center;
	padding-left: 32px;
	padding-right: 32px;
}

@media only screen and (min-width: 800px) {
	.test-layout-over-bottom-left {
		width: 50%;
		padding-right: 0;
	}
}

.test-layout-over-bottom-right {
	width: 100%;
	justify-content: flex-end;
	text-align: right;
	padding-left: 32px;
	padding-right: 32px;
}

@media only screen and (min-width: 800px) {
	.test-layout-over-bottom-right {
		width: 50%;
	}
}

.test-layout-over-bottom-left-content p:last-of-type {
	margin-bottom: 30px;
}

@media only screen and (min-width: 800px) {
	.test-layout-over-bottom-left-content p:last-of-type {
		margin-bottom: 0;
	}
}

.test-layout-over-top .lock {fill: #241d41;}
.accessibility-theme--2 .test-layout-over-top .lock {fill: black;}
.accessibility-theme--3 .test-layout-over-top .lock {fill: #5d007b;}
.accessibility-theme--4 .test-layout-over-top .lock {fill: #32119e;}
.accessibility-theme--5 .test-layout-over-top .lock {fill: #2c47e2;}
.accessibility-theme--6 .test-layout-over-top .lock {fill: #ffc845;}

.line-button {
	display: flex;
	align-items: center;
}

.line-button .dots {
	flex-grow: 1;
	height: 6px;
	background-image: url('../../images/dots-bg.png');
  	background-repeat: repeat-x;
	margin-right: 16px;
	display: none;
}

@media only screen and (min-width: 800px) {
	.line-button .dots {
		display: block;
	}
}

.accessibility-theme--2 .line-button .dots {
	background-image: url('../../images/dots-bg-at2.png');
}

.accessibility-theme--3 .line-button .dots {
	background-image: url('../../images/dots-bg-at3.png');
}

.accessibility-theme--4 .line-button .dots {
	background-image: url('../../images/dots-bg-at4.png');
}

.accessibility-theme--5 .line-button .dots {
	background-image: url('../../images/dots-bg-at5.png');
}

.accessibility-theme--6 .line-button .dots {
	background-image: url('../../images/dots-bg-at6.png');
}

/* END courses homepage test layout */

/* START heading with icons (course progress page) */

.heading-with-icons {
	display: flex; 
	justify-content: space-between; 
	padding: 10px 0 40px 0;
}

.heading-with-icons h1 {
	margin: 0; 
	padding: 0;
}

.heading-with-icons .heading-icons	{
	display: flex; 
	gap: 10px; 
	align-items: center;
}


/* END heading with icons (course progress page) */

/* START - New access menu styles from Admin*/
/* Start modal accessibility menu */
.modalx {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 101;
    font-size: 16px;
    overflow-y: auto;
}

.modalx-content {
    text-align: center;
    max-width: 500px;
    margin: auto;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.accessibility-theme--1 .modalx {
	background-color: white;
}

.accessibility-theme--2 .modalx {
	background-color: white;
	color: black;
}

.accessibility-theme--3 .modalx {
	background-color: #ffeaa9;
	color: #5d007b;
}

.accessibility-theme--4 .modalx {
	background-color: #feffd7;
	color: #32119e;
}

.accessibility-theme--5 .modalx {
	background-color: #eae8ba;
	color: #2c47e2;
}

.accessibility-theme--6 .modalx {
	background: #003b49;
	color: #ffc845;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.accessibility-colour-scheme-button {
	width: 130px;
	height: 130px;
	border-radius: 300px;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	background: #21243e;
	display: flex;
	justify-content: center;
	align-items: center;
}

.accessibility-colour-scheme-button-1 {
	background-color: white;
	border: 7px solid #008591;
	color: #100f2e;
}

.accessibility-colour-scheme-button-2 {
	background-color: white;
	border: 7px solid black;
	color: black;
}

.accessibility-colour-scheme-button-3 {
	background-color: #ffeaa9;
	border: 7px solid #5d007b;
	color: #5d007b;
}

.accessibility-colour-scheme-button-4 {
	background-color: #feffd7;
	border: 7px solid #32119e;
	color: #32119e;
}

.accessibility-colour-scheme-button-5 {
	background-color: #eae8ba;
	border: 7px solid #2c47e2;
	color: #2c47e2;
}

.accessibility-colour-scheme-button-6 {
	background: #003b49;
	color: #ffc845;
	border: 7px solid #ffc845;
}

#change-theme-1 .Path_508 {
	fill: #008591;
}

#change-theme-1 .Ellipse_157 {
	fill: white;
}

#change-theme-2 .Path_508 {
	fill: black;
}

#change-theme-2 .Ellipse_157 {
	fill: white;
}

#change-theme-3 .Path_508 {
	fill: #5d007b;
}

#change-theme-3 .Ellipse_157 {
	fill: #ffeaa9;
}

#change-theme-4 .Path_508 {
	fill: #32119e;
}

#change-theme-4 .Ellipse_157 {
	fill: #feffd7;
}

#change-theme-5 .Path_508 {
	fill: #2c47e2;
}

#change-theme-5 .Ellipse_157 {
	fill: #feffd7;
}

#change-theme-6 .Path_508 {
	fill: #ffc845;
}

#change-theme-6 .Ellipse_157 {
	fill: #003b49;
}

/* End modal accessibility menu */
/* END - New access menu styles from Admin*/
/* Start header logo colours */

nav svg {
	fill: white;
}

.accessibility-theme--1 header .st0 {
	fill: #21243e;
}

.accessibility-theme--2 header .st0 {
	fill: white;
}

.accessibility-theme--3 header .st0 {
	fill: #ffeaa9;
}

.accessibility-theme--4 header .st0 {
	fill: #feffd7;
}

.accessibility-theme--5 header .st0 {
	fill: #eae8ba;
}

.accessibility-theme--6 header .st0 {
	fill: #ffc845;
}

/* End header logo colours */

/* Table curved corners */

.topleft {
	border-top-left-radius: 15px;
}

.topright {
	border-top-right-radius: 15px;
}

.bottomleft {
	border-bottom-left-radius: 15px;
}

.bottomright {
	border-bottom-right-radius: 15px;
}

/*Start accordian*/

.accordion {
  max-width: 100%;
  width: 100%;
  margin: auto;
  margin-bottom: 40px;
}

.accordion-item {
/*  background: #fff;*/
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: bold;
  gap: 24px;
/*  transition: background 0.3s ease;*/
}

.accordion-content-faqs {
  padding-bottom: 20px;
  display: none;
}

.accordion-item.active .accordion-content-faqs {
  display: block;
}	


.accordion-icon {
  cursor: pointer;
  width: 24px;        
  height: 24px;
  flex: 0 0 24px;      
  flex-shrink: 0;       
  display: inline-block;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-content-faqs {
  padding-bottom: 20px;
  display: none;
}

.accordion-item.active .accordion-content-faqs {
  display: block;
}	


/* END accordian */

















.bar {
	margin-left: 30px !important;
  min-width: 18%;
}

.bar .label {
	margin-left: -30px;
}

/* START: Close icon non-fancybox (e.g. footer accessibility theme select)
- couldnt use same classes in case conflicts with fancybox js) */

.accessibility-theme--1 .bottom-menu-middle .close-active-panel, 
.accessibility-theme--2 .bottom-menu-middle .close-active-panel, 
.accessibility-theme--3 .bottom-menu-middle .close-active-panel, 
.accessibility-theme--4 .bottom-menu-middle .close-active-panel, 
.accessibility-theme--5 .bottom-menu-middle .close-active-panel, 
.accessibility-theme--6 .bottom-menu-middle .close-active-panel {
	position: fixed; top: 40px; right: 40px;
	justify-content: center;
	align-items: center;
	height: 34px;
	width: 34px;
	border-radius: 50%;
	background-image: none;
	padding: 0;
	margin: 0;
}



.accessibility-theme--1 .bottom-menu-middle .close-active-panel {
	background: black;
	border: 2px solid white;
}

.accessibility-theme--1 .bottom-menu-middle .close-active-panel svg {
	fill: white;
}

.accessibility-theme--2 .bottom-menu-middle .close-active-panel {
	background: black;
	border: 2px solid white;
}

.accessibility-theme--2 .bottom-menu-middle .close-active-panel svg {
	fill: white;
}

.accessibility-theme--3 .bottom-menu-middle .close-active-panel {
	background: #ffeaa9;
	border: 2px solid #5d007b;
}

.accessibility-theme--3 .bottom-menu-middle .close-active-panel svg {
	fill: #5d007b;
}

.accessibility-theme--4 .bottom-menu-middle .close-active-panel {
	background: #feffd7;
	border: 2px solid #32119e;
}

.accessibility-theme--4 .bottom-menu-middle .close-active-panel svg {
	fill: #32119e;
}

.accessibility-theme--5 .bottom-menu-middle .close-active-panel {
	background: #eae8ba;
	border: 2px solid #2c47e2;
}

.accessibility-theme--5 .bottom-menu-middle .close-active-panel svg {
	fill: #2c47e2;
}

.accessibility-theme--6 .bottom-menu-middle .close-active-panel {
	background: #003b49;
	border: 2px solid #ffc845;
}

.accessibility-theme--6 .bottom-menu-middle .close-active-panel svg {
	fill: #ffc845;
}

/* END: Close icon non-fancybox (e.g. footer accessibility theme select) */

.two-col-content {
	display: flex;
	flex-direction: column-reverse;
}

.two-col-content-text {
	width: 100%;
}

.two-col-content-image {
	width: 100%;
	margin-bottom: 32px;
}

.two-col-content-image svg {
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}

@media only screen and (min-width: 800px) {
	.two-col-content {
	display: flex;
	flex-direction: row;
	padding-top: 45px;
	}

	.two-col-content-text {
		width: 60%;
	}

	.two-col-content-image {
		width: 40%;
	}

}

/*Or-box styling in business admin*/
  .or-box {
    display: flex;
    width: 100%; /* full width */
    position: relative; /* for absolute positioning of the circle */
	  flex-direction: column;
  }
		
 @media only screen and (min-width: 760px) {
  .or-box {
flex-direction: row;
  }
  }
  .or-box-half {
    flex: 1; /* equally split the space between red and blue */
	  height: 160px;
	  color: white !important;  
	  padding: 32px;
	  text-decoration: none;
		}
		
		.or-box-half:hover {
			text-decoration: none;
		}
  .or-box-left {
    background-color: #120a30;
	border-right: 0 !important;
  }
  .or-box-right {
    background-color: #008591;
  }
		
@media only screen and (min-width: 760px) {
  .or-box-left {
    padding-right: 48px;
  }
  .or-box-right {
    padding-left: 48px;
  }
  }
  .or-box .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px; /* fixed width for the circle */
    height: 48px; /* fixed height for the circle */
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%); /* center the circle */
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  font-size: 14px;
	  font-weight: 800;
	  z-index: 10;
  }
		

.accessibility-theme--2 .or-box-left {
	background: none;
	color: inherit !important;
	border: 1px solid black;
}
		
.accessibility-theme--2 .or-box-right {
	background: none;
	color: inherit !important;
	border: 1px solid black;
}
		
.accessibility-theme--3 .or-box-left {
	background: none;
	color: inherit !important;
	border: 1px solid #5d007b;
}
		
.accessibility-theme--3 .or-box-right {
	background: none;
	color: inherit !important;
	border: 1px solid #5d007b;
}
		
.accessibility-theme--4 .or-box-left {
	background: none;
	color: inherit !important;
	border: 1px solid #32119e;
}
		
.accessibility-theme--4 .or-box-right {
	background: none;
	color: inherit !important;
	border: 1px solid #32119e;
}
		
.accessibility-theme--5 .or-box-left {
	background: none;
	color: inherit !important;
	border: 1px solid #2c47e2;
}
		
.accessibility-theme--5 .or-box-right {
	background: none;
	color: inherit !important;
	border: 1px solid #2c47e2;
}
		
.accessibility-theme--6 .or-box-left {
	background: none;
	color: inherit !important;
	border: 1px solid #ffc845;
}
		
.accessibility-theme--6 .or-box-right {
	background: none;
	color: inherit !important;
	border: 1px solid #ffc845;
}
		
.accessibility-theme--2 .or-box .circle {
	background: black;
	color: white !important;
}

.accessibility-theme--3 .or-box .circle {
	background: #5d007b;
	color: #ffeaa9 !important;
}
		
.accessibility-theme--4 .or-box .circle {
	background: #32119e;
	color: #feffd7 !important;
}
		
.accessibility-theme--5 .or-box .circle {
	background: #2c47e2;
	color: #eae8ba !important;
}
		
.accessibility-theme--6 .or-box .circle {
	background: #ffc845;
	color: #003b49 !important;
}
		
		.accessibility-theme--1 .or-box-half:hover {opacity: 0.9;}
		
.accessibility-theme--2 .or-box-half:hover, .accessibility-theme--3 .or-box-half:hover, .accessibility-theme--4 .or-box-half:hover, .accessibility-theme--5 .or-box-half:hover {
	background: rgba(0, 0, 0, 0.1);
}
		
.accessibility-theme--6 .or-box-half:hover {
	background: rgba(255, 255, 255, 0.1);
}
/* END or-box styling in business admin */

/* EXAM and fastrack */


.fasttrack_results_list .circle-bg {
  stroke: #dce9eb;
  fill: #21243e;
}
.fasttrack_results_list .circular-chart.green .circle {
  stroke: #0fd600;
}
.fasttrack_results_list .percentage {
  fill: #fff;
}

.accessibility-theme--2 .fasttrack_results_list .circle-bg {
  stroke: #ddd;
  fill: white;
}
.accessibility-theme--2 .fasttrack_results_list .circular-chart.green .circle {
  stroke: black;
}
.accessibility-theme--2 .fasttrack_results_list .percentage {
  fill: black;
}

.accessibility-theme--3 .fasttrack_results_list .circle-bg {
  stroke: #ffde76;
  fill: #ffeaa9;
}
.accessibility-theme--3 .fasttrack_results_list .circular-chart.green .circle {
  stroke: #5d007b;
}
.accessibility-theme--3 .fasttrack_results_list .percentage {
  fill: #5d007b;
}

.accessibility-theme--4 .fasttrack_results_list .circle-bg {
  stroke: #fdffa4;
  fill: #feffd7;
}
.accessibility-theme--4 .fasttrack_results_list .circular-chart.green .circle {
  stroke: #5d007b;
}
.accessibility-theme--4 .fasttrack_results_list .percentage {
  fill: #32119e;
}

.accessibility-theme--5 .fasttrack_results_list .circle-bg {
  stroke: #dedb93;
  fill: #eae8ba;
}
.accessibility-theme--5 .fasttrack_results_list .circular-chart.green .circle {
  stroke: #2c47e2;
}
.accessibility-theme--5 .fasttrack_results_list .percentage {
  fill: #2c47e2;
}

.accessibility-theme--6 .fasttrack_results_list .circle-bg {
  stroke: #00647c;
  fill: #003b49;
}
.accessibility-theme--6 .fasttrack_results_list .circular-chart.green .circle {
  stroke: #ffc845;
}
.accessibility-theme--6 .fasttrack_results_list .percentage {
  fill: #ffc845;
}

.questions .rad-label:hover, .questions .rad-label:focus-within {
  background: rgba(0, 0, 0, 0.05);
}

.accessibility-theme--2 .questions .rad-label:hover, .accessibility-theme--2 .questions .rad-label:focus-within {
  background: rgba(0, 0, 0, 0.05);
}
.accessibility-theme--2 .rad-text {
  color: black;
}

.accessibility-theme--2 .rad-input:checked~.rad-text {
	color: black;
	font-weight: bold;
}

.accessibility-theme--2 .rad-design {
  background: black !important;
}

.accessibility-theme--3 .questions .rad-label:hover, .accessibility-theme--3 .questions .rad-label:focus-within {
  background: rgba(0, 0, 0, 0.05);
}
.accessibility-theme--3 .rad-text {
  color: #5d007b;
}

.accessibility-theme--3 .rad-input:checked~.rad-text {
	color: #5d007b;
	font-weight: bold;
}

.accessibility-theme--3 .rad-design::before {
  background-color: #ffde76;
}
.accessibility-theme--3 .rad-design {
  background: #5d007b !important;
}

.accessibility-theme--4 .questions .rad-label:hover, .accessibility-theme--4 .questions .rad-label:focus-within {
  background: rgba(0, 0, 0, 0.05);
}
.accessibility-theme--4 .rad-text {
  color: #32119e;
}

.accessibility-theme--4 .rad-input:checked~.rad-text {
	color: #32119e;
	font-weight: bold;
}

.accessibility-theme--4 .rad-design::before {
  background-color: #fdffa4;
}
.accessibility-theme--4 .rad-design {
  background: #32119e !important;
}

.accessibility-theme--5 .questions .rad-label:hover, .accessibility-theme--5 .questions .rad-label:focus-within {
  background: rgba(0, 0, 0, 0.05);
}
.accessibility-theme--5 .rad-text {
  color: #2c47e2;
}

.accessibility-theme--5 .rad-input:checked~.rad-text {
	color: #2c47e2;
	font-weight: bold;
}

.accessibility-theme--5 .rad-design::before {
  background-color: #dedb93;
}
.accessibility-theme--5 .rad-design {
  background: #2c47e2 !important;
}

.accessibility-theme--6 .questions .rad-label:hover, .accessibility-theme--6 .questions .rad-label:focus-within {
  background: rgba(255, 255, 255, 0.05);
}
.accessibility-theme--6 .rad-text {
  color: #ffc845;
}

.accessibility-theme--6 .rad-input:checked~.rad-text {
	color: #ffc845;
	font-weight: bold;
}

.accessibility-theme--6 .rad-design::before {
  background-color: #00647c;
}
.accessibility-theme--6 .rad-design {
  background: #ffc845 !important;
}

/* CSS for hands interactive */
.xy-wrapper {
	width: 100%;
	padding: 16px;
	border: 1px solid #bbb;
	margin: 0;
	margin-bottom: 32px;
}

.xy-wrapper.xy-wrapper-no-border {
	border: none !important;
	padding: 0 !important;
}

.xy-content-container {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-direction: row;
}

.xy-image-container {
	position: relative;
	width: 100%;
	max-width: 64px;
	aspect-ratio: 1 / 1;
	cursor: pointer;
}

.xy-clickable-image {
	width: 100%;
	height: 100%; /* Full height of container */
	object-fit: contain; /* Ensure it scales without distortion */
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0; /* Hide by default */
	transition: opacity 0.3s ease; /* Smooth transition for images */
}

.xy-clickable-image.xy-active {
	opacity: 1; /* Only active image is fully visible */
}

.xy-text-container {
	font-size: 16px;
	font-weight: bold;
	text-align: left; /* Align text to the left */
	display: flex;
	align-items: center;
	min-height: 100px; /* Set a minimum height to keep container consistent */
}

.xy-text-container p {
	display: none; /* Hide all paragraphs initially */
	margin: 0;
}

.xy-text-container p.xy-active {
	display: block; /* Only display the active paragraph */
}

/* Min-width media queries for larger screens */

/* Tablet and larger (min-width: 600px) */
@media screen and (min-width: 600px) {
	.xy-image-container {
		max-width: 80px; /* Fixed size for tablets */
	}

	.xy-text-container {
		font-size: 18px; /* Larger font size for tablets */
		min-height: 150px;
	}
}

/* Desktop and larger (min-width: 1024px) */
@media screen and (min-width: 1024px) {
	.xy-image-container {
		max-width: 120px; /* Fixed size for desktop */
	}

	.xy-text-container {
		font-size: 20px; /* Even larger font size for desktops */
	}
}

.accessibility-theme--1 .xy-wrapper  .st1 {
	fill: #fff;
}

.accessibility-theme--1 .xy-wrapper  .st0 {
	fill: #21243e;
}

.accessibility-theme--1 .section-dark .xy-wrapper .st1 {
	fill: #21243e;
}

.accessibility-theme--1 .section-dark .xy-wrapper .st0 {
	fill: #fff;
}


.accessibility-theme--1 .xy-wrapper {
	border: 1px solid #bbb;
	background: none;
}

.accessibility-theme--2 .xy-wrapper {
    border: 1px solid #000;
    background: none;
}

.accessibility-theme--3 .xy-wrapper {
    border: 1px solid #5d007b;
    background: none;
}

.accessibility-theme--4 .xy-wrapper {
    border: 1px solid #32119e;
    background: none;
}

.accessibility-theme--5 .xy-wrapper {
    border: 1px solid #2c47e2;
    background: none;
}

.accessibility-theme--6 .xy-wrapper {
    border: 1px solid #ffc845;
    background: none;
}

/* Progress tracker */

	/* Style the header: fixed position (always stay at the top) */
.tracker {
  position: fixed;
  bottom: 54px;
  z-index: 1;
  width: 100%;
  background: none;
}

/* The progress container (grey background) */
.progress-container {
  width: 100%;
  height: 10px;
  background: none;
}

/* The progress bar (scroll indicator) */
.progress-bar {
  height: 8px;
  width: 0%;
}


/* Content with image right options */

.x1-sec {
	
}

.x1-wrap {
	display: flex; 
	gap: 24px;
	padding-right: 0;
}

@media screen and (min-width: 700px) {
	.x1-wrap {
		padding-right: 32px;
	}
}

.x1-cont {
	width: 70%;
}

.x1-img-cont {
	width: 30%;
}

.x1-img-cont img {
	position: sticky; 
	top: 30px;
}


.xx1 {
	
}

.xx2 {
	display: flex; 
	gap: 24px;
}

@media screen and (max-width: 600px) {
	.xx2 {
		padding-right: 0 !important;
		gap: 32px;
	}
}


.xx4 {
	width: 100px;
}

@media screen and (min-width: 480px) {
	.xx4 {
		width: 160px;
	}
}

@media screen and (min-width: 600px) {
	.xx4 {

		width: 200px;
	}
}

.xx4 img {
	width: 100%; 
	max-width: 100px; 
	width: auto; 
	object-fit: contain;
	position: sticky; 
	top: 30px;
}

@media screen and (min-width: 480px) {
	.xx4 img {
		max-width: 160px;
	}
}

@media screen and (min-width: 600px) {
	.xx4 img {
		max-width: 200px;
	}
}

.xx4-1 {
	display: none;
}

.xx4-2 {
	display: block;
}

@media screen and (min-width: 600px) {
	.xx4-1 {
		display: block;
	}

	.xx4-2 {
		display: none;
	}
}


.xx-a-2 {
	padding-right: 0 !important;
}


.xx4-a-2 {
	display: block !important;
}

@media screen and (min-width: 800px) {
	.xx4-a {
		position: absolute;
		top: 30px;
		right: 0;
		width: 140px;
	}
}

@media screen and (min-width: 800px) {
	.xx3-a {
		padding-right: 140px;
	}
}

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

	.accessibility-theme--1 .section-curved {
		background: white !important;
	}
	
	.accessibility-theme--1 .curve {
	  position: relative;
	  overflow: hidden;
	  padding-bottom: 3rem;
	  width: 100%;
	  z-index: 2;

		  &::before {
			content: '';
			display: block;
			/* background: radial-gradient(ellipse at center, rgba(0,0,0,.1) 25%,rgba(0,0,0,1) 100%); */
			background: rgba(0, 152, 167, 0.2) 50%; 
			position: absolute;
			left: 50%;
			bottom: 0;
			transform: translateX(-50%);
			border-radius: 400vw;
			width: 800vw;
			height: 800vw;
			z-index: -1;
		  }
		}

	.accessibility-theme--1 .circles {	
	background-image: url('../../images/bg-circles-green-1.png');
	background-repeat: no-repeat; 
	background-size: 350px; 
	background-position: right -80px bottom 0px; 
	}
	
	.accessibility-theme--1 .circles-2 {	
		background-image: url('../../images/bg-circles-green-2.png');
		background-repeat: no-repeat; 
		background-size: 350px; 
		background-position: left -80px top -40px; 
	}

	.accessibility-theme--1 .circles-3 {	
		background-image: url('../../images/bg-circles-white.png');
		background-repeat: no-repeat; 
		background-size: 350px; 
		background-position: right -80px top -40px; 
	}
}

@media screen and (min-width: 1400px) {
	
	.accessibility-theme--1 .circles, .accessibility-theme--1 .circles-2, .accessibility-theme--1 .circles-3 {
		background-size: 400px; 
	}
	
}
	


.callout-alert {
    border-top: 1px solid #cfcfcf;
    border-bottom: 1px solid #cfcfcf;
    padding: 24px 0;
    display: flex;
    gap: 12px;
	margin: 24px 0 40px 0;
}


@media screen and (min-width: 1200px) {
	.callout-alert {
		gap: 20px;
	}
}

.callout-initial {
    display: flex;
    gap: 12px;
	margin-bottom: 24px;
}

.callout-initial:last-child {
	margin-bottom: 0;
}

@media screen and (min-width: 1200px) {
.callout-initial {
    gap: 20px;
	}
}

.callout-initial-icon {
    display: flex;
    height: 56px;
    width: 56px;
    aspect-ratio: 1 /1;
    border-radius: 100px;
    background: #0098A7;
    color: white;
    justify-content: center;
    align-items: center;
	font-size: 20px;
}

@media screen and (min-width: 1000px) {
	.callout-initial-icon {
		height: 80px;
		width: 80px;
		font-size: 24px;
	}
}

@media screen and (min-width: 1200px) {
	.callout-initial-icon {
		height: 100px;
		width: 100px;
	}
}



.accessibility-theme--2 .callout-alert {
	border-color: #cfcfcf;
}

.accessibility-theme--3 .callout-alert {
	border-color: #5d007b;
}

.accessibility-theme--4 .callout-alert {
	border-color: #32119e;
}

.accessibility-theme--5 .callout-alert {
	border-color: #2c47e2;
}

.accessibility-theme--6 .callout-alert {
	border-color: #ffc845;
}

.accessibility-theme--1 .section-dark .callout-initial-icon {
	background: white;
	color: #0098A7;
}

.accessibility-theme--2 .callout-initial-icon {
	background: #000;
}

.accessibility-theme--3 .callout-initial-icon {
	background: #5d007b;
}

.accessibility-theme--4 .callout-initial-icon {
	background: #32119e;
}

.accessibility-theme--5 .callout-initial-icon {
	background: #2c47e2;
}

.accessibility-theme--6 .callout-initial-icon {
	background: #ffc845;
	color: #003b49;
}

ul.list-big-bullet {
	margin-left: 40px;
}


ul.list-big-bullet li::marker {
	color: #0098a7;   
	vertical-align: middle; 
	content: '\25CF';
}

.accessibility-theme--2 ul.list-big-bullet li::marker {
	color: black;   
}

.accessibility-theme--3 ul.list-big-bullet li::marker {
	color: #5d007b;   
}

.accessibility-theme--4 ul.list-big-bullet li::marker {
	color: #32119e;   
}

.accessibility-theme--5 ul.list-big-bullet li::marker {
	color: #2c47e2;   
}

.accessibility-theme--6 ul.list-big-bullet li::marker {
	color: #ffc845;   
}
	
ul.list-big-bullet li {
	padding-left: 10px;   
}

.references-header {
	cursor: pointer;
/*	background-color: #4CAF50;*/
/*	color: white;*/
	padding: 10px 0;
/*	text-align: center;*/
	font-size: 18px;
	display: flex;
	gap: 16px;
	align-items: center;
}

.references-content {
	display: none;
	opacity: 0.6;
}

.references-header {
	display: flex;
	gap; 12px;
	align-items: center;
	opacity: 0.6;
}

.references-header:hover {
	opacity: 1;
}

.references-header .icon svg {
	width: 28px;
}


/* Hide the minus icon by default */
.references-header .minus-icon {
	display: none;
}

.audio-heading {
	display: flex; 
	justify-content: space-between; 
	gap: 20px;
}

.audio-icons {
	display: flex; 
	gap: 8px; 
	width: 94px; 
	justify-content: flex-end;
}

audio {
	display: none;
}

.audio-button, .rewind-button {
	background: #f0f0f0;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.audio-button:hover, .rewind-button:hover {
	background: #e0e0e0;
}

.audio-button svg, .rewind-button svg {
	fill: red;
}

.audio-button:hover svg, .rewind-button:hover svg {
	fill: blue;
}
		
.accessibility-theme--1 .audio-control {
    background-color: #eee;
}

.accessibility-theme--1 .section-dark .audio-control {
    background-color: #fff;
}

.accessibility-theme--2 .audio-control {
    background-color: #eee;
}

.accessibility-theme--3 .audio-control {
    background-color: #ffde76;
}

.accessibility-theme--4 .audio-control {
    background-color: #fdffa4;
}

.accessibility-theme--5 .audio-control {
    background-color: #dedb93;
}

.accessibility-theme--6 .audio-control {
    background-color: #00647c;
}

.accessibility-theme--1 .audio-control:hover {
    background-color: #e2e2e2;
}

.accessibility-theme--2 .audio-control:hover {
    background-color: #e2e2e2;
}

.accessibility-theme--3 .audio-control:hover {
    background-color: #f2d370;
}

.accessibility-theme--4 .audio-control:hover {
    background-color: #f0f29c;
}

.accessibility-theme--5 .audio-control:hover {
    background-color: #d3d08c;
}

.accessibility-theme--6 .audio-control:hover {
    background-color: #005f76;
}


.accessibility-theme--1 .audio-control svg {
    fill: black;
}

.accessibility-theme--2 .audio-control svg {
    fill: black;
}

.accessibility-theme--3 .audio-control svg {
    fill: #5d007b;
}

.accessibility-theme--4 .audio-control svg {
    fill: #32119e;
}

.accessibility-theme--5 .audio-control svg {
    fill: #2c47e2;
}

.accessibility-theme--6 .audio-control svg {
    fill: #ffc845;
}

.rewind-button {
	display: none;
}

.rewind-button.show {
	display: flex;
}

.audio-button svg, .rewind-button svg {
	width: 20px;
	height: 20px;
}



/* Feedback form styles */

.feedback-form .modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #DCE7EC;
	justify-content: center;
	align-items: center;
}

.feedback-form .modal.active {
	display: flex;
}

.feedback-form .modal-content {
	background: white;
	border-radius: 8px;
	width: 90%;
	max-width: 560px;
	padding: 20px;
	position: relative;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	min-height: 400px;
	display: flex;
	flex-direction: column;
/*	height: 720px;*/
	height: auto;
}

.feedback-form .multi-stage-form {
	margin: 0;
	max-width: 100%;
	height: 100%;
}

.feedback-form .modal-content .close-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background-color: black;
	border: 2px solid white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	position: absolute;
	top: -16px;
	right: -16px;
}

.feedback-form .modal-content .close-button svg {
	fill: white;
}

.feedback-form .form-stage {
	display: none;
	flex-grow: 1;
/*	height: 100%;*/
	height: 400px;
}

.feedback-form .form-stage.form-stage-long {
	height: 560px;
}

.feedback-form .form-stage.active {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.feedback-form .modal-content h2 {
	margin-top: 0;
}

.feedback-form .modal-content button {
	background: #008591;
	color: white;
	border: none;
	padding: 10px 15px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
}

.feedback-form .modal-content button:hover {
	background: #0693a0;
}

.feedback-form .button-group {
	display: flex;
	justify-content: space-between;
	
}

.feedback-form .textarea, .feedback-form input[type="text"], .feedback-form input[type="email"] {
	width: 100%;
	padding: 8px;
	border-radius: 4px;
}

.feedback-form .textarea, .feedback-form input {
	margin: 0 0 8px 0;
	border: 1px solid #ccc;
	font-size: 1rem;
}

.feedback-form input[type="radio"] {
	margin-right: 5px;
}

.feedback-form .feedback-button {
	margin: 0 auto;
	background: #008591;
	color: white;
	border: none;
	padding: 15px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 16px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.feedback-form .feedback-button:hover {
	background: #0693a0;
}

.feedback-form .progress-bar {
	height: 8px;
	background: #e0e0e0;
	width: 100%;
	margin-top: 20px;
}

.feedback-form .progress-bar-inner {
	height: 100%;
	background: #008591;
	width: 0;
	transition: width 0.3s ease-in-out;
}

.feedback-form .options-row {
	display: flex;
	gap: 16px;
}

.feedback-form .options-row > * {
	flex: 0 auto;
	flex-grow: 0;
}

.feedback-form .options-row-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.feedback-form .hidden-input {
	display: none;
}
.feedback-form .error-message {
	color: red;
	margin-top: 4px;
}

.feedback-form input[type="radio"] {
	margin-right: 5px;
	margin-top: 2px;
	aspect-ratio: 1 / 1;
	
}

.feedback-form input[type="radio"]:focus {
	outline: none;
}

.feedback-form label {
	display: flex;
	align-items: flex-start;
	width: auto;
}

.feedback-form label span {
	display: inline-block;
}

.feedback-form p {
	margin: 0;
	margin-bottom: 12px;
	font-weight: 500;
}


.feedback-form #stage-1 .button-group {
	justify-content: end;
}

.feedback-form .feedback-question {
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.feedback-form .feedback-question:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.feedback-form form label {
	font-weight: normal !important;
}














.accessibility-theme--2 .feedback-form .modal {
	background: #E6E6E6;
}

.accessibility-theme--2 .feedback-form .modal-content {
	background: white;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}



.accessibility-theme--2 .feedback-form .modal-content .close-button {
	background-color: black;
	border: 2px solid white;
}

.accessibility-theme--2 .feedback-form .modal-content .close-button svg {
	fill: white;
}


.accessibility-theme--2 .feedback-form .modal-content button {
	background: black;
	color: white;
}

.accessibility-theme--2 .feedback-form .modal-content button:hover {
	background: #111;
}

.accessibility-theme--2 .feedback-form .textarea, .accessibility-theme--2 .feedback-form input[type="text"], .accessibility-theme--2 .feedback-form input[type="email"] {
	border: 1px solid #ccc;
}


.accessibility-theme--2 .feedback-form .feedback-button {
	background: black;
	color: white;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.accessibility-theme--2 .feedback-form .feedback-button:hover {
	background: #111;
}

.accessibility-theme--2 .feedback-form .progress-bar {
	background: #e0e0e0;
}

.accessibility-theme--2 .feedback-form .progress-bar-inner {
	background: black;
}

.accessibility-theme--2 .feedback-form .options-row {
	display: flex;
	gap: 16px;
}

.accessibility-theme--2 .feedback-form .error-message {
	color: black;
}

.accessibility-theme--2 .feedback-form .feedback-question {
	border-bottom: 1px solid #ddd;
}

.accessibility-theme--2 .feedback-form .modal-content h2 {
	color: black;
}







.accessibility-theme--3 .feedback-form .modal {
	background: #E5D190;
}

.accessibility-theme--3 .feedback-form .modal-content {
	background: #ffeaa9;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}



.accessibility-theme--3 .feedback-form .modal-content .close-button {
	background-color: #5d007b;
	color: #ffeaa9;	
	border: 2px solid #ffeaa9;
}

.accessibility-theme--3 .feedback-form .modal-content .close-button:hover {
	background-color: #360048;
}

.accessibility-theme--3 .feedback-form .modal-content .close-button svg {
	fill: #ffeaa9;
}


.accessibility-theme--3 .feedback-form .modal-content button {
	background-color: #5d007b;
	color: #ffeaa9;	
}

.accessibility-theme--3 .feedback-form .modal-content button:hover {
	background: #360048;
}

.accessibility-theme--3 .feedback-form .textarea, .accessibility-theme--3 .feedback-form input[type="text"], .accessibility-theme--3 .feedback-form input[type="email"] {
	border: 1px solid rgba(0, 0, 0, 0.35);
}


.accessibility-theme--3 .feedback-form .feedback-button {
	background-color: #5d007b;
	color: #ffeaa9;	
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.accessibility-theme--3 .feedback-form .feedback-button:hover {
	background: #360048;
}

.accessibility-theme--3 .feedback-form .progress-bar {
	background: rgba(0, 0, 0, 0.35);
}

.accessibility-theme--3 .feedback-form .progress-bar-inner {
	background: #3c0050;
}

.accessibility-theme--3 .feedback-form .options-row {
	display: flex;
	gap: 16px;
}

.accessibility-theme--3 .feedback-form .error-message {
	color: black;
}

.accessibility-theme--3 .feedback-form .feedback-question {
	border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.accessibility-theme--3 .feedback-form .modal-content h2 {
	color: #3c0050;
}






.accessibility-theme--4 .feedback-form .modal {
	background: #E5E6B3;
}

.accessibility-theme--4 .feedback-form .modal-content {
	background: #feffd7;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}



.accessibility-theme--4 .feedback-form .modal-content .close-button {
	background-color: #32119e;
	color: #feffd7;
	border: 2px solid #feffd7;
}

.accessibility-theme--4 .feedback-form .modal-content .close-button:hover {
	background-color: #230c70;
}

.accessibility-theme--4 .feedback-form .modal-content .close-button svg {
	fill: #feffd7;
}

.accessibility-theme--4 .feedback-form .modal-content button {
	background-color: #32119e;
	color: #feffd7;
}

.accessibility-theme--4 .feedback-form .modal-content button:hover {
	background: #230c70;
}

.accessibility-theme--4 .feedback-form .textarea, .accessibility-theme--4 .feedback-form input[type="text"], .accessibility-theme--4 .feedback-form input[type="email"] {
	border: 1px solid rgba(0, 0, 0, 0.35);
}


.accessibility-theme--4 .feedback-form .feedback-button {
	background-color: #32119e;
	color: #feffd7;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.accessibility-theme--4 .feedback-form .feedback-button:hover {
	background: #230c70;
}

.accessibility-theme--4 .feedback-form .progress-bar {
	background: rgba(0, 0, 0, 0.35);
}

.accessibility-theme--4 .feedback-form .progress-bar-inner {
	background: #200678;
}

.accessibility-theme--4 .feedback-form .options-row {
	display: flex;
	gap: 16px;
}

.accessibility-theme--4 .feedback-form .error-message {
	color: black;
}

.accessibility-theme--4 .feedback-form .feedback-question {
	border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.accessibility-theme--4 .feedback-form .modal-content h2 {
	color: #200678;
}







.accessibility-theme--5 .feedback-form .modal {
	background: #D1CFA1;
}

.accessibility-theme--5 .feedback-form .modal-content {
	background: #eae8ba;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.accessibility-theme--5 .feedback-form .modal-content .close-button {
	background-color: #2c47e2;
	color: #eae8ba;
	border: 2px solid #eae8ba;
}

.accessibility-theme--5 .feedback-form .modal-content .close-button:hover {
	background-color: #1a33c1; /*NEEDS CHANGING */
}

.accessibility-theme--5 .feedback-form .modal-content .close-button svg {
	fill: #eae8ba;
}

.accessibility-theme--5 .feedback-form .modal-content button {
	background-color: #2c47e2;
	color: #eae8ba;
}

.accessibility-theme--5 .feedback-form .modal-content button:hover {
	background: #1a33c1;
}

.accessibility-theme--5 .feedback-form .textarea, .accessibility-theme--5 .feedback-form input[type="text"], .accessibility-theme--5 .feedback-form input[type="email"] {
	border: 1px solid rgba(0, 0, 0, 0.35);
}


.accessibility-theme--5 .feedback-form .feedback-button {
	background-color: #2c47e2;
	color: #eae8ba;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.accessibility-theme--5 .feedback-form .feedback-button:hover {
	background: #1a33c1;
}

.accessibility-theme--5 .feedback-form .progress-bar {
	background: rgba(0, 0, 0, 0.35);
}

.accessibility-theme--5 .feedback-form .progress-bar-inner {
	background: #172dac;
}

.accessibility-theme--5 .feedback-form .options-row {
	display: flex;
	gap: 16px;
}

.accessibility-theme--5 .feedback-form .error-message {
	color: black;
}

.accessibility-theme--5 .feedback-form .feedback-question {
	border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.accessibility-theme--5 .feedback-form .modal-content h2 {
	color: #2c47e2;
}









.accessibility-theme--6 .feedback-form .modal {
	background: #001D24;
}

.accessibility-theme--6 .feedback-form .modal-content {
	background: #005f76;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}



.accessibility-theme--6 .feedback-form .modal-content .close-button {
	background-color: #ffc845;
	color: #003b49;
	border: 2px solid #005f76;
}

.accessibility-theme--6 .feedback-form .modal-content .close-button:hover {
	background-color: #ffb912; 
}

.accessibility-theme--6 .feedback-form .modal-content .close-button svg {
	fill: #003b49;
}


.accessibility-theme--6 .feedback-form .modal-content button {
	background-color: #ffc845;
	color: #003b49;
}

.accessibility-theme--6 .feedback-form .modal-content button:hover {
	background: #ffb912;
}

.accessibility-theme--6 .feedback-form .textarea, .accessibility-theme--6 .feedback-form input[type="text"], .accessibility-theme--6 .feedback-form input[type="email"] {
	border: 1px solid rgba(255, 155, 155, 0.35);
}


.accessibility-theme--6 .feedback-form .feedback-button {
	background-color: #ffc845;
	color: #003b49;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.accessibility-theme--6 .feedback-form .feedback-button:hover {
	background: #ffb912;
}

.accessibility-theme--6 .feedback-form .progress-bar {
	background: rgba(255, 155, 155, 0.35);
}

.accessibility-theme--6 .feedback-form .progress-bar-inner {
	background: #005f76;
}

.accessibility-theme--6 .feedback-form .options-row {
	display: flex;
	gap: 16px;
}

.accessibility-theme--6 .feedback-form .error-message {
	color: black;
}

.accessibility-theme--6 .feedback-form .feedback-question {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.accessibility-theme--6 .feedback-form .modal-content h2 {
	color: #ffc845;
}


/* Styling for tabs with glider */

body.accessibility-theme--1 {
	--glider-bg-color: #008894;
	--glider-text-color: #fff;
	--border-color: rgba(0, 0, 0, 0.3);		
	}

body.accessibility-theme--1 .section-dark {
	--glider-bg-color: white;
	--glider-text-color: #008894;
	--border-color: rgba(255, 255, 255, 0.3);		
	}

body.accessibility-theme--2 {
	--glider-bg-color: black;
	--glider-text-color: #fff;
	--border-color: rgba(0, 0, 0, 0.3);	
	}

body.accessibility-theme--3 {
	--glider-bg-color: #5D007B;
	--glider-text-color: #FFEAA9;
	--border-color: rgba(0, 0, 0, 0.3);	
	}

body.accessibility-theme--4 {
	--glider-bg-color: #32119E;
	--glider-text-color: #FEFFD7;
	--border-color: rgba(0, 0, 0, 0.3);	
	}

body.accessibility-theme--5 {
	--glider-bg-color: #2C47E2;
	--glider-text-color: #EAE8BA;
	--border-color: rgba(0, 0, 0, 0.3);	
	}

body.accessibility-theme--6 {
	--glider-bg-color: #FFC845;
	--glider-text-color: #003B49;
	--border-color: rgba(255, 255, 255, 0.3);	
	}

.container {
	width: 100%;
	max-width: 800px;
	margin-bottom: 20px;
}

.slider-tabs {
	display: flex;
	position: relative;
	background-color: none;
	border: 1px solid var(--border-color);
	padding: 8px;
	border-radius: 99px;
	overflow: hidden;
}

.slider-tabs input[type="radio"] {
	display: none;
}

.slider-tab {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	flex: 1;
	font-weight: 500;
	border-radius: 99px;
	cursor: pointer;
	transition: color 0.15s ease-in;
	z-index: 2;
	position: relative;
	text-align: center;
	padding: 0 10px;
}

input[type="radio"]:checked + label {
	color: var(--glider-text-color);
}

.glider {
	position: absolute;
	height: 40px;
	background-color: var(--glider-bg-color);
	color: var(--glider-text-color);
	z-index: 1;
	border-radius: 99px;
	transition: 0.25s ease-out;
}

.content {
	display: none;
	margin-top: 20px;
	width: 100%;
}

@media (max-width: 600px) {
	.slider-tabs {
		flex-direction: column;
		border-radius: 8px;
		padding: 4px;
	}

	.slider-tab {
		width: calc(100% - 8px);
		margin: 4px;
		border-radius: 8px;
		padding: 8px 16px;
	}

	.glider {
		display: none;
	}

	input[type="radio"]:checked + label {
		background-color: var(--glider-bg-color);
		color: var(--glider-text-color);
	}
}

/* FLIP CARD CSS */

 .flip-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    @media (min-width: 600px) {
      .flip-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 900px) {
      .flip-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .flip-card-container {
      perspective: 1000px;
    }

    .flip-card {
      position: relative;
      width: 100%;
      height: 220px;
      transform-style: preserve-3d;
      transition: transform 0.6s;
    }

    .flip-card-container.active .flip-card,
    .flip-card-container:hover .flip-card {
      transform: rotateY(180deg);
    }

    .flip-card-face {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 8px;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .flip-card-front {
      background: #dce9eb;
      color: #071332;
    }

    .flip-card-back {
      background: #008794;
      color: white;
      transform: rotateY(180deg);
    }

    .flip-card-inner h5 {
      margin-bottom: 10px;
    }

    .flip-card-inner p {
      margin: 0;
    }

.accessibility-theme--2 .flip-card-front {
  background: #E6E6E6;
  color: black;
}

.accessibility-theme--2 .flip-card-back {
  background: #E6E6E6;
  color: black;
}

.accessibility-theme--3 .flip-card-front {
  background: #E6D398;
  color: #5D007B;
}

.accessibility-theme--3 .flip-card-back {
  background: #E6D398;
  color: #5D007B;
}

.accessibility-theme--4 .flip-card-front {
  background: #E5E6C2;
  color: #32119E;
}

.accessibility-theme--4 .flip-card-back {
  background: #E5E6C2;
  color: #32119E;
}

.accessibility-theme--5 .flip-card-front {
  background: #D3D1A7;
  color: #2C47E2;
}

.accessibility-theme--5 .flip-card-back {
  background: #D3D1A7;
  color: #2C47E2;
}

.accessibility-theme--6 .flip-card-front {
  background: #004758;
  color: #FFC845;
}

.accessibility-theme--6 .flip-card-back {
  background: #004758;
  color: #FFC845;
}

.flip-card-back.flip-card-true {
  background: #6ca24e;
}

.flip-card-back.flip-card-false {
  background: #d6575c;
}

.flip-card-back svg {
  height: 100px;
  width: 100px;
  fill: white;
}

.flip-card-number {
  height: 100px;
  width: 100px;
  border-radius: 100px;
  background: #008794;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 800;
}

.accessibility-theme--2 .flip-card-number {
  background: black;
  color: white;
}

.accessibility-theme--3 .flip-card-number {
  background: #5d007b;
  color: #ffeaa9;
}

.accessibility-theme--4 .flip-card-number {
  background: #32119e;
  color: #feffd7;
}

.accessibility-theme--5 .flip-card-number {
  background: #2c47e2;
  color: #eae8ba;
}

.accessibility-theme--6 .flip-card-number {
  background: #ffc845;
  color: #003b49;
}

/*Timeline */

.timeline-cover {
 /*   background: red;  HERE */
 /*   padding: 100px 0; */
}

.timeline-cover .timeline-title {
  max-width: 840px; /* HERE */
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

.timeline-cover .timeline-container {
  padding-bottom: 64px;
}

.timeline-cover .timeline-container ul {
  padding-top: 100px;
  margin: 0;
}

/* ---------- STEP COLUMN ---------- */
/* We no longer use li background for the line; draw it with ::after. */
.timeline-cover .timeline-container ul li {
  position: relative;
  margin: 0 auto 48px;       /* gap between steps */
  width: 2px;
  list-style-type: none;
  background: transparent;   /* line color now set on ::after */
}

/* Hide tail after the last item but keep normal height */
.timeline-cover .timeline-container ul li:last-child {
  margin-bottom: 0;
}
.timeline-cover .timeline-container ul li:last-child::after {
  content: none;
}

/* Dot */
.timeline-cover .timeline-container ul li::before {
  content: '';
  position: absolute;
  left: 50%; /* HERE */
  top: 14px;                     /* was -32px; lowered so heading can sit above */
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #008794;          /* default dot color */
}

/* Connector line (replaces li background) */
.timeline-cover .timeline-container ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;                    /* 14px + 16px dot height */
  bottom: -48px;                /* matches li margin-bottom so it meets next dot */
  width: 2px;
  background: rgba(0, 0, 0, 0.3); /* default line color */
}

/* Reveal helper */
.timeline-cover .timeline-container ul li .timeline-hidden {
  opacity: 0;
}

/* ---------- CARD ---------- */
.timeline-cover .timeline-container ul li .timeline-item {
  position: relative;
  top: 0;                        /* was -75px; remove layout hack */
  margin-top: -6px;              /* nudges heading just above the dot */
  width: 289px;                  /* HERE */
}

/* Left / Right placement (yours, kept) */
.timeline-cover .timeline-container ul li:nth-child(odd) .timeline-item {
  left: 60px; /* HERE */
  padding-right: 20px; /* ADDED BY ME */
}

.timeline-cover .timeline-container ul li:nth-child(odd) .timeline-item::before {
  left: -38px; /* HERE */
}

.timeline-cover .timeline-container ul li:nth-child(even) .timeline-item {
  left: calc(-289px - 70px); /* HERE */
}

.timeline-cover .timeline-container ul li:nth-child(even) .timeline-item::before {
  right: -38px; /* HERE */
}

.timeline-cover .timeline-container ul li h5 {
  margin-bottom: 8px;
}

/* ---------- Media Queries ---------- */
@media screen and (max-width: 1020px) {
  .timeline-cover .timeline-container ul li .timeline-item {
    width: 41vw; /* HERE */
  }

  .timeline-cover .timeline-container ul li:nth-child(even) .timeline-item {
    left: calc(-41vw - 45px); /* HERE */
    padding-left: 10px; /* ADDED BY ME */
  }
}

@media screen and (max-width: 700px) {
  .timeline-cover {
    padding: 32px 0;
  }
  .timeline-cover .timeline-title {
    text-align: left;
  }
  .timeline-cover .timeline-container {
    padding-bottom: 32px;
  }

  .timeline-cover .timeline-container ul li {
    margin-left: 20px;
    margin-bottom: 48px;         /* keep spacing on mobile */
  }

  /* Make sure the connector still reaches next item with tighter spacing */
  .timeline-cover .timeline-container ul li::after {
    bottom: -48px;
  }

  .timeline-cover .timeline-container ul li .timeline-item {
    width: calc(100vw - 100px);
    transition: .2s;
    left: 38px;                  /* stack on one side on mobile */
    margin-top: -4px;
  }

  .timeline-cover .timeline-container ul li .timeline-item p {
    min-height: 110px;
  }

  /* Keep both sides aligned together on mobile */
  .timeline-cover .timeline-container ul li:nth-child(even) .timeline-item {
    left: 38px;
  }

  .timeline-cover .timeline-container ul li:nth-child(even) .timeline-item::before {
    left: -33px;
  }

  .timeline-cover .timeline-container ul li:nth-child(odd) .timeline-item {
    left: 38px;
  }
}

/* ---------- Accessibility Themes ---------- */
/* IMPORTANT: line colors now target li::after (instead of li background).
   Dot colors remain on li::before, as in your code. */

/* Theme 1 (light line on dark) */
.accessibility-theme--1 .section-dark .timeline-cover .timeline-container ul li::after {
  background: rgba(255, 255, 255, 0.3);
}
.accessibility-theme--1 .section-dark .timeline-cover .timeline-container ul li::before {
  background: #00bbc1;
}

/* Theme 2 */
.accessibility-theme--2 .timeline-cover .timeline-container ul li::after {
  background: rgba(0, 0, 0, 0.3);
}
.accessibility-theme--2 .timeline-cover .timeline-container ul li::before {
  background: black;
}

/* Theme 3 */
.accessibility-theme--3 .timeline-cover .timeline-container ul li::after {
  background: rgba(0, 0, 0, 0.3);
}
.accessibility-theme--3 .timeline-cover .timeline-container ul li::before {
  background: #5d007b;
}

/* Theme 4 */
.accessibility-theme--4 .timeline-cover .timeline-container ul li::after {
  background: rgba(0, 0, 0, 0.3);
}
.accessibility-theme--4 .timeline-cover .timeline-container ul li::before {
  background: #32119e;
}

/* Theme 5 */
.accessibility-theme--5 .timeline-cover .timeline-container ul li::after {
  background: rgba(0, 0, 0, 0.3);
}
.accessibility-theme--5 .timeline-cover .timeline-container ul li::before {
  background: #2c47e2;
}

/* Theme 6 (light line) */
.accessibility-theme--6 .timeline-cover .timeline-container ul li::after {
  background: rgba(255, 255, 255, 0.3);
}
.accessibility-theme--6 .timeline-cover .timeline-container ul li::before {
  background: #ffc845;
}



/*2 Col clecle left text right */

.cols-2-flex {
  display: flex; gap: 30px; align-items: center; margin-bottom: 60px; flex-direction: column;
}

.flex-shrink-0 {
flex-shrink: 0;
}

.cols-2-flex p:last-child {
  margin-bottom: 0;
}

.key-point-circle.circle-small-w-text {
  height: 100px; width: 100px; border-radius: 100px; display: flex; justify-content: center; align-items: center; aspect-ratio: 1 / 1; 
}

@media screen and (min-width: 700px) {
  .cols-2-flex {
    flex-direction: row;
  }
}

.accessibility-theme--1 .section-dark .key-point-circle.circle-small-w-text {
  background: white; color: #008591;
}

.key-point-circle.circle-small-w-text svg {
  width: 60px;
  height: auto;
  fill: white;
  display: block;
}

.accessibility-theme--1 .section-dark .key-point-circle.circle-small-w-text svg {
  fill: #008591;
}

.accessibility-theme--2 .key-point-circle.circle-small-w-text svg {
  fill: black;
}

.accessibility-theme--3 .key-point-circle.circle-small-w-text svg {
  fill: #5D007B;
}

.accessibility-theme--4 .key-point-circle.circle-small-w-text svg {
  fill: #32119E;
}

.accessibility-theme--5 .key-point-circle.circle-small-w-text svg {
  fill: #2C47E2;
}

.accessibility-theme--6 .key-point-circle.circle-small-w-text svg {
  fill: #FFC845;
}

/* Breathe component */
.circle-container {
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.circle {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.1s linear;
    box-sizing: border-box;
    background-color: #00656D; /* Default start color */
}

body:not([class*="accessibility-theme-"]) .circle {
    background-color: #00656D; /* Start color */
}

body.accessibility-theme--2 .circle {
    background-color: #000000; /* Start color */
}

body.accessibility-theme--3 .circle {
    background-color: #5D007B; /* Start color */
}

body.accessibility-theme--4 .circle {
    background-color: #32119E; /* Start color */
}

body.accessibility-theme--5 .circle {
    background-color: #2C47E2; /* Start color */
}

body.accessibility-theme--6 .circle {
    background-color: #FFC845; /* Start color */
  color: #003B49;
}

@media (min-width: 1000px) {
    .circle-container {
        width: 450px;
        height: 450px;
    }

    .circle {
        width: 200px;
        height: 200px;
        font-size: 32px;
    }
}



    /*  .visually-hidden {
        position: absolute !important;
        height: 1px;
        width: 1px;
        overflow: hidden;
        clip: rect(1px, 1px, 1px, 1px);
        white-space: nowrap;
      }

      .play-video {
        background: transparent;
        border: 1px solid #0d6efd;
        padding: 0.5rem 0.9rem;
        border-radius: 0.5rem;
        color: #0d6efd;
        cursor: pointer;
      }

      .modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.8);
        display: grid;
        place-items: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        z-index: 9999;
      }

      .modal-overlay.open {
        opacity: 1;
        pointer-events: auto;
      }

      .vid-modal {
        position: relative;
        width: 100%;
        height: 100dvh;
        display: grid;
        place-items: center;
      }

      .close-btn {
    position: fixed;
    top: 40px;
    right: 40px;
    justify-content: center;
    align-items: center;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    background-image: none;
    padding: 0;
    margin: 0;
        disaply: flex;
        background: black;
    border: 2px solid white;
        color: white;
      }

      .video-wrapper {
        width: 320px;
        height: 320px;
        max-width: 90vw;
        max-height: 90vh;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        background: #000;
        display: grid;
        place-items: center;
      }
        
        @media (min-width: 768px) {
        .video-wrapper {
        width: 400px;
        height: 400px;
          }
        }

      .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .play-btn {
        position: absolute;
        inset: 0;
        margin: auto;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: none;
        font-size: 36px;
        background: rgba(255, 255, 255, 0.9);
        cursor: pointer;
        display: grid;
        place-items: center;
        transition: transform 0.15s ease, opacity 0.15s ease;
      }

      .play-btn.hidden {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.9);
      }

      .vid-modal,
      .vid-modal * {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
      }
        
        body.accessibility-theme--1 {
          
        }

*/

      .visually-hidden {
        position: absolute !important;
        height: 1px;
        width: 1px;
        overflow: hidden;
        clip: rect(1px, 1px, 1px, 1px);
        white-space: nowrap;
      }

      .play-video {
        background: transparent;
        border: 1px solid #0d6efd;
        padding: 0.5rem 0.9rem;
        border-radius: 0.5rem;
        color: #0d6efd;
        cursor: pointer;
      }

      .modal-overlay {
        position: fixed;
        inset: 0;
        background: white;
        display: grid;
        place-items: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        z-index: 9999;
      }

      .modal-overlay.open {
        opacity: 1;
        pointer-events: auto;
      }

      .vid-modal {
        position: relative;
        width: 100%;
        height: 100dvh;
        display: grid;
        place-items: center;
      }



      .video-wrapper {
        width: 320px;
        height: 320px;
        max-width: 90vw;
        max-height: 90vh;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        background: #fff;
        display: grid;
        place-items: center;
      }
        
        @media (min-width: 768px) {
        .video-wrapper {
        width: 400px;
        height: 400px;
          }
        }

      .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .play-btn {
        position: absolute;
        inset: 0;
        margin: auto;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: none;
        font-size: 36px;
        background: rgba(255, 255, 255, 0.9);
        cursor: pointer;
        display: grid;
        place-items: center;
        transition: transform 0.15s ease, opacity 0.15s ease;
      }

      .play-btn.hidden {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.9);
      }

      .vid-modal,
      .vid-modal * {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
      }
        
        body.accessibility-theme--1 {
          
        }

.accessibility-theme--1 .modal-overlay .close-active-panel, 
.accessibility-theme--2 .modal-overlay .close-active-panel, 
.accessibility-theme--3 .modal-overlay .close-active-panel, 
.accessibility-theme--4 .modal-overlay .close-active-panel, 
.accessibility-theme--5 .modal-overlay .close-active-panel, 
.accessibility-theme--6 .modal-overlay .close-active-panel {
	position: fixed; top: 40px; right: 40px;
	justify-content: center;
	align-items: center;
	height: 34px;
	width: 34px;
	border-radius: 50%;
	background-image: none;
	padding: 0;
	margin: 0;
    display: flex;
  z-index: 1000;
}

.modal-overlay .close-active-panel:focus {
  outline: none;
  box-shadow: none;
}

.accessibility-theme--1 .modal-overlay .close-active-panel {
	background: black;
	border: 2px solid white;
}

.accessibility-theme--1 .modal-overlay .close-active-panel svg {
	fill: white;
}

.accessibility-theme--2 .modal-overlay .close-active-panel {
	background: black;
	border: 2px solid white;
}

.accessibility-theme--2 .modal-overlay .close-active-panel svg {
	fill: white;
}

.accessibility-theme--3 .modal-overlay .close-active-panel {
	background: #ffeaa9;
	border: 2px solid #5d007b;
}

.accessibility-theme--3 .modal-overlay .close-active-panel svg {
	fill: #5d007b;
}

.accessibility-theme--4 .modal-overlay .close-active-panel {
	background: #feffd7;
	border: 2px solid #32119e;
}

.accessibility-theme--4 .modal-overlay .close-active-panel svg {
	fill: #32119e;
}

.accessibility-theme--5 .modal-overlay .close-active-panel {
	background: #eae8ba;
	border: 2px solid #2c47e2;
}

.accessibility-theme--5 .modal-overlay .close-active-panel svg {
	fill: #2c47e2;
}

.accessibility-theme--6 .modal-overlay .close-active-panel {
	background: #003b49;
	border: 2px solid #ffc845;
}

.accessibility-theme--6 .modal-overlay .close-active-panel svg {
	fill: #ffc845;
}

.accessibility-theme--1 .modal-overlay {
  background: rgba(255, 255, 255, 0.8);
}

.accessibility-theme--2 .modal-overlay {
  background: #ffffffcc;
}

.accessibility-theme--3 .modal-overlay {
  background: #ffeaa9cc;
}

.accessibility-theme--4 .modal-overlay {
  background: #feffd7cc;
}

.accessibility-theme--5 .modal-overlay {
  background: #eae8bacc;
}

.accessibility-theme--6 .modal-overlay {
  background: #003b49cc;
}

/* Question answer tick cross pills */
/* ===== Base layout ===== */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Pill ===== */
.answer-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;      
  background: none;            
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  color: #1f2025;           
  transform: translateZ(0);
}

.answer-pill .bg {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid #d9d9de;   
}

.answer-pill:hover .bg {
  border-color: #bfc2cc;
}

.answer-pill:has(input:checked) {
  padding-right: 10px;
}

.answer-pill > input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.answer-pill .txt {
  position: relative;
  z-index: 1;
  margin-right: 0;          
}

.answer-pill .icon {
  width: 0;
  height: 18px;
  overflow: hidden;
  transition: width 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.answer-pill .icon::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  opacity: 0;                 
  transform: scale(0.8);       
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  background-color: transparent; 
  -webkit-mask: none;
          mask: none;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

/* Correct selected */
.answer-pill.answer-correct input:checked ~ .txt {
  color: #15a86b;
  margin-right: 8px;            /* add gap only when icon visible */
}
.answer-pill.answer-correct input:checked ~ .icon {
  width: 18px;
}
.answer-pill.answer-correct input:checked ~ .icon::before {
  opacity: 1;                   /* appears instantly, avoids black flash */
  transform: scale(1);
  color: #15a86b;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 10 17 4 11'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 10 17 4 11'/></svg>");
}
.answer-pill.answer-correct input:checked ~ .bg {
  border-color: #15a86b;
}

/* Incorrect selected */
.answer-pill.answer-incorrect input:checked ~ .txt {
  color: #e24b4b;
  margin-right: 8px;
}
.answer-pill.answer-incorrect input:checked ~ .icon {
  width: 18px;
}
.answer-pill.answer-incorrect input:checked ~ .icon::before {
  opacity: 1;
  transform: scale(1);
  color: #e24b4b;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='6' y1='6' x2='18' y2='18'/><line x1='6' y1='18' x2='18' y2='6'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='6' y1='6' x2='18' y2='18'/><line x1='6' y1='18' x2='18' y2='6'/></svg>");
}
.answer-pill.answer-incorrect input:checked ~ .bg {
  border-color: #e24b4b;
}

.answer-pill:has(input:focus-visible) {
  outline: none;
  box-shadow: 0 0 0 4px rgba(46, 132, 255, 0.25);
}

.answer-pill {
  transition: padding-right 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.answer-pill .bg {
  transition: border-color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.answer-pill .txt {
  transition:
    color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    margin-right 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media (prefers-reduced-motion: reduce) {
  .answer-pill,
  .answer-pill .bg,
  .answer-pill .txt,
  .answer-pill .icon,
  .answer-pill .icon::before {
    transition: none !important;
  }
}

.accessibility-theme--1 .answer-pill { color: #1f2025; }
.accessibility-theme--1 .answer-pill .bg { border-color: #d9d9de; }
.accessibility-theme--1 .answer-pill:hover .bg { border-color: #bfc2cc; }
.accessibility-theme--1 .answer-pill.answer-correct input:checked ~ .txt,
.accessibility-theme--1 .answer-pill.answer-correct input:checked ~ .icon::before,
.accessibility-theme--1 .answer-pill.answer-correct input:checked ~ .bg
{
  color: #15a86b;
  border-color: #15a86b;
}

.accessibility-theme--1 .answer-pill.answer-incorrect input:checked ~ .txt,
.accessibility-theme--1 .answer-pill.answer-incorrect input:checked ~ .icon::before,
.accessibility-theme--1 .answer-pill.answer-incorrect input:checked ~ .bg {
  color: #e24b4b;
  border-color: #e24b4b;
}

.accessibility-theme--2 .answer-pill { color: #000000; }
.accessibility-theme--2 .answer-pill .bg { border-color: #000000aa; }
.accessibility-theme--2 .answer-pill:hover .bg { border-color: #000000dd; }
.accessibility-theme--2 .answer-pill.answer-correct input:checked ~ .txt,
.accessibility-theme--2 .answer-pill.answer-correct input:checked ~ .icon::before,
.accessibility-theme--2 .answer-pill.answer-correct input:checked ~ .bg,
.accessibility-theme--2 .answer-pill.answer-incorrect input:checked ~ .txt,
.accessibility-theme--2 .answer-pill.answer-incorrect input:checked ~ .icon::before,
.accessibility-theme--2 .answer-pill.answer-incorrect input:checked ~ .bg {
  color: #000000;
  border-color: #000000;
}

.accessibility-theme--3 .answer-pill { color: #5d007b; }
.accessibility-theme--3 .answer-pill .bg { border-color: #5d007baa; }
.accessibility-theme--3 .answer-pill:hover .bg { border-color: #5d007bdd; }
.accessibility-theme--3 .answer-pill.answer-correct input:checked ~ .txt,
.accessibility-theme--3 .answer-pill.answer-correct input:checked ~ .icon::before,
.accessibility-theme--3 .answer-pill.answer-correct input:checked ~ .bg,
.accessibility-theme--3 .answer-pill.answer-incorrect input:checked ~ .txt,
.accessibility-theme--3 .answer-pill.answer-incorrect input:checked ~ .icon::before,
.accessibility-theme--3 .answer-pill.answer-incorrect input:checked ~ .bg {
  color: #5d007b;
  border-color: #5d007b;
}

.accessibility-theme--4 .answer-pill { color: #32119e; }
.accessibility-theme--4 .answer-pill .bg { border-color: #32119eaa; }
.accessibility-theme--4 .answer-pill:hover .bg { border-color: #32119edd; }
.accessibility-theme--4 .answer-pill.answer-correct input:checked ~ .txt,
.accessibility-theme--4 .answer-pill.answer-correct input:checked ~ .icon::before,
.accessibility-theme--4 .answer-pill.answer-correct input:checked ~ .bg,
.accessibility-theme--4 .answer-pill.answer-incorrect input:checked ~ .txt,
.accessibility-theme--4 .answer-pill.answer-incorrect input:checked ~ .icon::before,
.accessibility-theme--4 .answer-pill.answer-incorrect input:checked ~ .bg {
  color: #32119e;
  border-color: #32119e;
}

.accessibility-theme--5 .answer-pill { color: #2c47e2; }
.accessibility-theme--5 .answer-pill .bg { border-color: #2c47e2aa; }
.accessibility-theme--5 .answer-pill:hover .bg { border-color: #2c47e2dd; }
.accessibility-theme--5 .answer-pill.answer-correct input:checked ~ .txt,
.accessibility-theme--5 .answer-pill.answer-correct input:checked ~ .icon::before,
.accessibility-theme--5 .answer-pill.answer-correct input:checked ~ .bg,
.accessibility-theme--5 .answer-pill.answer-incorrect input:checked ~ .txt,
.accessibility-theme--5 .answer-pill.answer-incorrect input:checked ~ .icon::before,
.accessibility-theme--5 .answer-pill.answer-incorrect input:checked ~ .bg {
  color: #2c47e2;
  border-color: #2c47e2;
}

.accessibility-theme--6 .answer-pill { color: #ffc845; }
.accessibility-theme--6 .answer-pill .bg { border-color: #ffc845aa; }
.accessibility-theme--6 .answer-pill:hover .bg { border-color: #ffc845dd; }
.accessibility-theme--6 .answer-pill.answer-correct input:checked ~ .txt,
.accessibility-theme--6 .answer-pill.answer-correct input:checked ~ .icon::before,
.accessibility-theme--6 .answer-pill.answer-correct input:checked ~ .bg,
.accessibility-theme--6 .answer-pill.answer-incorrect input:checked ~ .txt,
.accessibility-theme--6 .answer-pill.answer-incorrect input:checked ~ .icon::before,
.accessibility-theme--6 .answer-pill.answer-incorrect input:checked ~ .bg {
  color: #ffc845;
  border-color: #ffc845;
}

/* Stacked pills */
.pill-row.stack {
  flex-direction: column;   
  align-items: flex-start; 
  gap: 10px;             
}

.pill-row.stack .answer-pill {
  width: auto !important;             
  justify-content: flex-start !important;
}

/* --- Base icon (same mask approach) --- */

.clicker-cont {
  position: relative;
  overflow: visible;
}

.clicker-cont .clicker {
/*
  position: absolute;
  right: -56px;
*/
}

.clicker{
  /* sizing */
  width: 32px;
  height: 32px;
  display: none;
    transform: rotate(-20deg);
  transform-origin: center;

  /* color drives the icon color */
  color: black;
  background-color: currentColor;

  /* store the big data-URL once to avoid duplication */
  --clicker-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 735.36 1142.43'><path fill='%23000' fill-rule='evenodd' d='M285.38,123.29c10.04,0,18.18-8.14,18.18-18.18V18.78c0-10.04-8.14-18.18-18.18-18.18s-18.18,8.14-18.18,18.18v86.33c0,10.04,8.14,18.18,18.18,18.18Z'/><path fill='%23000' fill-rule='evenodd' d='M425.97,170.88l61.05-61.05c7.1-7.1,7.1-18.61,0-25.7-7.1-7.1-18.61-7.1-25.7,0l-61.05,61.04c-7.09,7.1-7.09,18.61,0,25.7,7.1,7.1,18.61,7.1,25.7,0Z'/><path fill='%23000' fill-rule='evenodd' d='M447.86,285.77c0,10.04,8.14,18.18,18.18,18.18h86.33c10.04,0,18.18-8.14,18.18-18.18s-8.14-18.18-18.18-18.18h-86.33c-10.04,0-18.18,8.14-18.18,18.18Z'/><path fill='%23000' fill-rule='evenodd' d='M144.77,170.88c7.1,7.1,18.61,7.1,25.7,0,7.09-7.1,7.09-18.61,0-25.7l-61.05-61.04c-7.1-7.1-18.61-7.1-25.7,0-7.1,7.09-7.1,18.61,0,25.7l61.05,61.05Z'/><path fill='%23000' fill-rule='evenodd' d='M18.37,303.95h86.33c10.04,0,18.18-8.14,18.18-18.18s-8.14-18.18-18.18-18.18H18.37c-10.04,0-18.18,8.14-18.18,18.18s8.14,18.18,18.18,18.18Z'/><path fill='%23000' fill-rule='evenodd' d='M705.02,548.9c-10.94-10.36-24.1-17.63-38.09-21.28-14.3-3.73-29.4-3.69-43.88.64-5.73,1.72-11.34,4.09-16.74,7.13-7.2-15.77-17.67-28.69-29.9-38.43-11.9-9.47-25.6-15.91-39.74-19.04-14.48-3.21-29.42-2.91-43.41,1.16-3.98,1.16-7.88,2.61-11.65,4.35-9.48-24.11-26.25-40.31-45.59-49.13-12.9-5.89-26.81-8.38-40.37-7.66-9.28.49-18.48,2.48-27.17,5.9v-170.58c0-40.89-22.33-66.42-51.25-77.69-10.77-4.2-22.45-6.21-34.1-6.13-11.64.09-23.32,2.25-34.1,6.41-30.05,11.57-53.81,37.85-53.81,77.41v371.89l-2.03-1.6c-34.31-27.09-68.62-54.17-92.97-53.29-23.1-.69-44.9,4.72-62.3,15.99-11.06,7.16-20.28,16.63-26.96,28.35-6.52,11.45-10.45,24.86-11.1,40.14-1.15,27.07,8.46,60.36,33.53,99.05l.63.94c20.66,28.96,43.56,56.02,66.46,83.08,43.59,51.51,87.18,103.04,108.95,160.82,18.17,53.73,46.78,90.78,84.89,112.63,37.63,21.57,83.39,27.52,136.47,19.34v.06c104.77-12.47,178.63-51.69,227.79-112.27,48.66-59.96,71.88-139.73,76.07-234.31l.11-1.15v-163.31c1.89-33.79-10.6-61.31-29.73-79.42ZM681.32,626.46l-.1,1.78v163.41h.05c-3.82,82.85-23.42,151.68-64.1,201.8-40.35,49.72-102.73,82.12-192.65,92.82l-.94.21c-41.26,6.47-75.74,2.54-102.71-12.92-26.68-15.29-47.18-42.67-60.9-83.3l-.31-.84c-25.04-67.04-71.72-122.22-118.41-177.39-22.24-26.29-44.48-52.57-63.53-79.23-18.18-28.23-25.24-50.56-24.53-67.24.27-6.3,1.76-11.59,4.2-15.88,2.29-4.02,5.58-7.35,9.6-9.95,8.36-5.41,19.88-7.9,32.81-7.36l7-.63c.22-.05,26.57,21.21,53.35,42.36,16.78,13.24,33.56,26.5,46.88,35.48l41.72,28.13v-475.72c0-14.05,8.62-23.45,19.52-27.65,4.8-1.85,9.97-2.81,15.08-2.85,5.1-.04,10.12.81,14.65,2.57,9.57,3.73,16.96,12.83,16.96,27.92v362.22c0,14.78,11.98,26.77,26.77,26.77s26.77-11.98,26.77-26.77v-113.95c1.1-12.49,7.13-21.25,15.12-25.93,4.43-2.6,9.52-4.07,14.76-4.35,5.32-.28,10.66.64,15.49,2.85,9.39,4.29,17.43,13.78,20.83,29.18v160.09c0,14.78,11.98,26.77,26.77,26.77s26.77-11.98,26.77-26.77v-121.43c4.23-11.31,11.6-17.92,19.88-20.33,5.32-1.55,11.2-1.62,17.06-.32,6.21,1.38,12.41,4.35,17.99,8.8,12.67,10.09,21.51,27.96,19.89,52.66-.11.98-.17,1.97-.17,2.97v125.55c0,14.78,11.98,26.77,26.77,26.77s26.77-11.98,26.77-26.77v-119.88c5.96-11.58,13.8-18.17,21.9-20.6,5.02-1.5,10.27-1.52,15.23-.22,5.27,1.38,10.34,4.22,14.67,8.32,8.72,8.26,14.31,21.63,13.1,38.87Z'/></svg>");

  /* apply mask */
  -webkit-mask: var(--clicker-mask) center / contain no-repeat;
          mask: var(--clicker-mask) center / contain no-repeat;

  /* transform baseline for animation */
  transform-origin: center;
  will-change: transform;
}

/* --- Pulse animation --- */
.clicker--pulse{
  --pulse-scale: 1.1;        /* how big at peak */
  --pulse-duration: 1.2s;    /* speed */
  animation: clicker-pulse var(--pulse-duration) ease-in-out infinite;
}

@keyframes clicker-pulse{
  0%,100% { transform: rotate(-20deg) scale(1); }
  50%     { transform: rotate(-20deg) scale(var(--pulse-scale)); }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce){
  .clicker--pulse{ animation: none; }
}

/* Your themes now just set .clicker { color: ... } */
.accessibility-theme--1 .clicker { color: #5E9AA0; }
.accessibility-theme--1 .section-dark .clicker { color: #5E9AA0; }
.accessibility-theme--2 .clicker { color: #B2B2B2; }
.accessibility-theme--3 .clicker { color: #B1A477; }
.accessibility-theme--4 .clicker { color: #B1B296; }
.accessibility-theme--5 .clicker { color: #A3A282; }
.accessibility-theme--6 .clicker { color: #557680; }

@media (min-width: 880px) {
  .clicker {
    display: inline-block;
  }
}



.swiper-slide .slide-text p:last-of-type {
  margin-bottom: 0;
}

.mySwiper7 .swiper-slide {
  align-items: center;
}

.swiper-horizontal .swiper-button-next7,
.swiper-horizontal .swiper-button-prev7,
.swiper-horizontal ~ .swiper-button-next7,
.swiper-horizontal ~ .swiper-button-prev7 {
  margin-top: calc(-20px - (var(--swiper-navigation-size) / 2)) !important;
  top: var(--swiper-navigation-top-offset, 50%) !important;
}





      .drab-card {

        max-width: 640px;
        padding: 10px 0 10px 0;
        margin: 40px 0;
      }

.accessibility-theme--1 .drab-card {
	border-color: white;
}
.accessibility-theme--2 .drab-card {
	border-color: #cfcfcf;
}
.accessibility-theme--3 .drab-card {
	border-color: #5d007b;
}
.accessibility-theme--4 .drab-card {
	border-color: #32119e;
}
.accessibility-theme--5 .drab-card {
	border-color: #2c47e2;
}

.accessibility-theme--6 .drab-card {
	border-color: #ffc845;
}

      /* Layout */
      .drab-stack {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
      }

      /* Circles fill the row */
      .drab-row {
        display: flex;
        gap: 16px;
        width: 100%;
      }

      .drab-dot {
        width: 100%;
        max-width: 120px;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        border: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffffff;
        opacity: 0.8;
        color: #21243e;
        font-weight: 800;
        font-size: clamp(20px, 5.6vw, 40px);
        letter-spacing: 0.12em;
        text-indent: 0.12em;
        cursor: pointer;
        transition: transform 0.18s ease, background-color 0.25s ease,
/*          box-shadow 0.25s ease, opacity 0.25s ease;*/
        outline: none;
        opacity: 0.75;
      }
      .drab-dot:hover {
        opacity: 1;
        background: #21243e;
        color: #fff;
      }
      .drab-dot:active {
        opacity: 1;
      }
      .drab-dot:focus-visible {
/*        box-shadow: 0 0 0 3px #fff, 0 0 0 6px #2b6aff;*/
      }
      .drab-dot[aria-selected="true"] {
        background: #21243e;
        color: #fff;
        opacity: 1;
/*        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);*/
      }

      /* Panels */
      .drab-content {
        max-width: 65ch;
        padding-left: 4px;
      }
      .drab-panel[hidden] {
        display: none;
      }

      .drab-eyebrow {
        font-size: 13px;
        text-transform: uppercase;
        margin: 0 0 8px 0;
      }
      .drab-title {
/*        margin: 0 0 10px 0;*/
      }
      .drab-body {
        margin: 0;
/*        font-size: clamp(16px, 2.4vw, 19px);*/
      }

      /* Reveal animation */
      @keyframes drab-fadeUp {
        from {
          opacity: 0;
          transform: translateY(8px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .drab-reveal > * {
        animation: drab-fadeUp 0.42s ease both;
      }
      .drab-reveal > *:nth-child(2) {
        animation-delay: 0.06s;
      }
      .drab-reveal > *:nth-child(3) {
        animation-delay: 0.1s;
      }

      @media (prefers-reduced-motion: reduce) {
        .drab-dot,
        .drab-reveal > * {
          animation-duration: 1ms !important;
          transition: none !important;
        }
      }

      .drab-note {
        max-width: 720px;
        margin: 12px auto 0;
        font-size: 12px;
        text-align: left;
      }

.accessibility-theme--1 .drab-dot {
  
}

.accessibility-theme--2 .drab-dot {
    background-color: #000;
    color: white;
}

.accessibility-theme--3 .drab-dot {
  background-color: #5d007b;
  color: #ffeaa9;
}

.accessibility-theme--4 .drab-dot {
  background-color: #32119e;
  color: #ffeaa9;
}

.accessibility-theme--5 .drab-dot {
  background-color: #2c47e2;
  color: #eae8ba;
}

.accessibility-theme--6 .drab-dot {
  background-color: #ffc845;
  color: #003b49;
}