@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-SemiBold.eot');
    src: url('../fonts/SourceSansPro-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SourceSansPro-SemiBold.woff2') format('woff2'),
        url('../fonts/SourceSansPro-SemiBold.woff') format('woff'),
        url('../fonts/SourceSansPro-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Light.eot');
    src: url('../fonts/SourceSansPro-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SourceSansPro-Light.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Light.woff') format('woff'),
        url('../fonts/SourceSansPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Italic.eot');
    src: url('../fonts/SourceSansPro-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SourceSansPro-Italic.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Italic.woff') format('woff'),
        url('../fonts/SourceSansPro-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Regular.eot');
    src: url('../fonts/SourceSansPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SourceSansPro-Regular.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Regular.woff') format('woff'),
        url('../fonts/SourceSansPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family: 'Source Sans Pro';
	color: #2D3035;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	overflow-x: hidden;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html {
	font-size: 62.5%;
}

body {
	background-color:#FFF;
	font-size:12px;
	height:100%;
	margin:0px;
	padding:0px;
	width:100%;

	/* to ensure footer sticks at bottom */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

em, i {
	font-style: italic;
}

strong, b {
	font-weight: 600;
}

strong em, em strong,
strong i, i strong,
b em, em b,
b i, i b {
	font-weight: bold;
	font-style: italic;
}

.assetPreload { display: none; }
.desktop, .desktop-only { display: none; }
.mobile-only { display: block; }
.hide { display: none; }
.app { position: relative; }
.nowrap { white-space: nowrap; }

@media (min-width: 992px) {
	.container {
	    max-width: 992px;
	}
}

@media (min-width: 1200px) {
	.container {
    	max-width: 1200px;
    }
}

#wrap {
    min-height: 50vh;
}

.app>div {
	position: absolute;
	top: 0;
	left: 0;
	height:100%;
	width:100%;
	text-align:left;
}

#loader {
	background-color: rgba(0,0,0,0);
	position: fixed;
	z-index: 9000;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

/* ################################################################################# Updater screen */
#updater {
	display: table;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background: #15191E;
	color: #FFF;
}

#updater .inner {
	display: table-cell;
	vertical-align: middle;
}

#updater .progress-percentage {
	margin: 2em;
	text-align: center;
	font-size: 1.6em;
}

#updater .logo {
	position: relative;
	width: 30vmin;
	height: 30vmin;
	background-size: contain;
	margin: 0 auto;
}

#updater .progress-bar {
	position: absolute;
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	background-color: rgba(21,25,30,0.5);
}

/* ################################################################################# License Key input */
body.licenseForm { background-color: #15191E; }
#licenseForm {
	position: fixed;
	top:0; right:0; bottom:0; left:0;
	overflow: auto;
	z-index: 10000;
	width: 100%;
	height: 100%;
	color: #FFF;
	text-align: center;
	background-color: #15191E;
	border-top: 1px solid #15191E;
}

#licenseForm h1 {
	display: block;
	margin: 40vh 4rem 2rem 4rem;
	font-size: 3.3rem;
	line-height: 1.2;
	text-align: left;
}

#licenseKeyForm {
	position: relative;
}

#licenseForm .form-element {
	position: relative;
	width: calc(100% - 8rem);
	margin: 0 auto 2rem auto;
}

#licenseForm input {
	width: calc(100% - 2rem);
	padding: 0.8em 1rem;
	background-color: #FFF;
	color: #15191E;
	font-size: 1.6rem;
	border: none;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

#licenseForm input::-webkit-input-placeholder { color: #616770; }
#licenseForm input::-moz-placeholder { color: #616770; }
#licenseForm input:-ms-input-placeholder { color: #616770; }
#licenseForm input:-moz-placeholder { color: #616770; }

#licenseForm input:focus { outline: none; }

#licenseSubmit {
	position: absolute;
	top: 0;
	right: 0.5rem;
	border: none;
	background: transparent;
	color: #CED0D4;
	font-size: 3rem;
}

#licenseForm #errorMessage {
	margin: 2rem 4rem;
	font-size: 1.4rem;
	line-height: 1.25em;
	color: #FFF;
	text-align: left;
}

/* ################################################################################# Navigation */
.app header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 5rem;
	z-index: 10;
	background-color: #491D6D;
	border-bottom: 1px solid #CED0D4;
}

.app .svgContainer {
	width: 10rem;
	position: absolute;
	right: calc(50% - 5rem);
	top: 1rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.app header nav .back,
.app header nav .home,
.app header nav .sectionLink {
	position: absolute;
	display: block;
	top: 0.4rem;
	cursor: pointer;
	overflow: hidden;
	font-size: 2.3rem;
	color: #FFF;
	padding: 1rem;
}

.app header nav .back { left: 1rem; }
.app header nav .home { left: 5rem; }
.app header nav .sectionLink { left: 9rem; }

.homepage .app header nav .back,
.homepage .app header nav .home {
	display: none;
}

#menu-toggle {
	display: none;
	position: absolute;
	top: 1rem;
	right: 2rem;
	color: #FFF;
	font-size: 3rem;
}

.sectionLink span::after{
	content:"";
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	display: inline-block;
}
.sectionLink span.section1Icon::after{
	background-image: url('../img/home_page/icon_4@2x.png');
}
.sectionLink span.section2Icon::after{
	background-image: url('../img/home_page/icon_5@2x.png');
}
.sectionLink span.section3Icon::after{
	background-image: url('../img/home_page/icon_6@2x.png');
}
.sectionLink span.section4Icon::after{
	background-image: url('../img/home_page/icon_7@2x.png');
}
.sectionLink span.section5Icon::after{
	background-image: url('../img/home_page/icon_8@2x.png');
}

#desktop-nav { display: none; }
#quick-nav-container { display: none; }

.card-icon-position, .card-body { display: none; }

.svg-icon {
    width: 100px;
    height: 100px;
}

.svg-icon .cls-1 {
    fill: #e2e2e2;
}

.svg-icon .cls-2 {
    fill: #491d6d;
    transition: fill 0.3s;
}

.svg-icon .cls-3,
.svg-icon .cls-4 { 
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3px;
    stroke-miterlimit: 10;
}

/* ################################################################################# Branch */
.branch {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding-bottom: 5em;
	background: white;
}
.branch:first-child { left: 0; }
.branch.previous { left: -100%; }

.branch h2 {
	margin-top: 5rem;
	padding: 2rem;
	font-size: 2.2rem;
	line-height: 1.18;
}

.nodeCollection .node {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
	position: relative;
	margin: 0;
	padding: 1.4em 1em 1.4em 2em;
	font-size: 20px;
	line-height: 1.00;
	color: #15191E;
	border-bottom: 1px solid #E2E2E2;
}

.nodeCollection .svg-icon {
    width: 50px;
    height: 50px;
}

.branch:nth-child(1n+2) .nodeCollection .hasDescendants {
	padding: 1.5rem 1.3em;
	font-weight: normal;
	color: #ffffff;
	line-height: 1.4;
	cursor: pointer;
	background-color: #491d6d;
}

.branch:nth-child(1n+2) .nodeCollection[branchid="1"] .hasDescendants {
    background-color: transparent;
}


.nodeCollection .next {
    margin-left: auto;
	display: block;
	right: 2rem;
	width: 1.2rem;
	height: 2.4rem;
	margin-top: -0.1em;
    min-width: 1.2rem;
}

.nodeCollection .next svg {
	width: 100%;
	height: 100%;
}

.branch:nth-child(1) .nodeCollection .next .cls-1 {
	stroke: #491D6D;
}

.nodeCollection .next .cls-1 {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nodeCollection .hasDescendants { font-weight: bold; }
.nodeCollection .hasDescendants:active { background-color: #E5E5E5; }
.nodeCollection .hasDescendants div { 
	color: #FFF;
	padding-right: 1em;
	line-height: 1.2;
    padding-top: 0.3em;
}
.nodeCollection .hasDescendants div p {
	color: inherit;
}

.nodeCollection p { margin-bottom: 1.2em; }
.nodeCollection p:last-child { margin-bottom: 0; }

/* ################################################################################# First screen styles */
.parent_nodeId_0 h2 { display: none; }
.parent_nodeId_0 .nodeCollection > .node {
	background-color: #ffffff;
	color: #491d6d;
}
.parent_nodeId_0 .inner-branch-container { display: none; }

.parent_nodeId_0 .nodeCollection > .node > div { 
	padding-left: 2rem;
	color: #491D6D;
}


/* ########### Quick footer navigation */
#footer-quick-nav-container {
	display: none;
	visibility: hidden;
}

/* ################################################################################# Outcome styles */

.outcome-info .node {
	padding: 1.1em 1.2em;
}

.outcome-info .node a {
	overflow-wrap: break-word;
	word-break: break-word;
}

.outcome-info .node h3 {
	font-size: 25px;
	font-weight: 600;
	color: #2D3035;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #E2E2E2;
	margin-bottom: 0.4em;
}

.outcome-info .node p {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 1.5em;
	color: #2D3035;
}

.outcome-info .node p + h3 {
	margin-top: 2.1em;
}

.outcome-info .node p a {
	position: relative;
	display: inline-block;
}

.outcome-info .node p a::after {
	content: ' ';
	display: inline-block;
	width: 1em;
	height: 1em;
	top: 0;
	right: 0;
	background: transparent no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADMAAAAzCAMAAAANf8AYAAAAM1BMVEUAAACKjI6KjI6KjI6KjI6KjI6KjI6KjI6KjI6KjI6KjI6KjI6KjI6KjI6KjI6KjI6KjI5FC1TEAAAAEHRSTlMAwEBgL/EQ4LAgUIVw7ZjQc+KMEwAAAM5JREFUSMft1skOgyAAhGEG2cSlvP/TNpTYiUDSOfTof1Q/WQ4EI5TBoj+cQNZy7xCM64w3QribWJ+FHWMpENnW1gzq2L7MSqZrKS2Q9GEgfJHKvGVGtmZKbbd964ws9mMs/zk0EEMDlciGRDYksiHRDUnN0SikBe6eQlp2NTQa4aoEohkS2ZDohkQ3JLoBiW5IZHMCHclIoTPK2Zh0wy8f85jH/MHEoJhcDW8zLwE5zxnFiiJ+VknZePap+Ws+p26yudqjJuBu67NC3316A6wRJiBMMqxXAAAAAElFTkSuQmCC) center center;
	background-size: contain;
	margin-left: 0.5em;
}

/* ################################################################################# Reactive styles */

/* Device specifics */
.BlackBerry .app header {
	position: absolute;
}

/* ########################################################## MKG081018 Service Worker App Update Page */
#notificationSW {
    position: fixed;
    z-index: 100;
    height: 100vh;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    text-align: center;
    flex-direction: column;
}
#notificationMsg{
    padding: 20px;
}
.promptBtn{
    margin-top: 20px;
    padding: 20px;
    font-size: 25px;
    font-weight: bold;
    border: 1px solid #000;
    width: 200px;
}
.promptBtn:hover{
    cursor: pointer;
}
.promptBtn::before{
    content:"";
    width: 24px;
    height: 24px;
    display: inline-block;
    background-repeat: no-repeat;
    float: left;
}
#reloadBtn, #addToHomeScreenBtn{
    background-color: #491D6D;
    border-color: #491D6D;
    color: white;
}
#reloadBtn::before{
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path style="fill: white" d="M256.455 8c66.269.119 126.437 26.233 170.859 68.685l35.715-35.715C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.75c-30.864-28.899-70.801-44.907-113.23-45.273-92.398-.798-170.283 73.977-169.484 169.442C88.764 348.009 162.184 424 256 424c41.127 0 79.997-14.678 110.629-41.556 4.743-4.161 11.906-3.908 16.368.553l39.662 39.662c4.872 4.872 4.631 12.815-.482 17.433C378.202 479.813 319.926 504 256 504 119.034 504 8.001 392.967 8 256.002 7.999 119.193 119.646 7.755 256.455 8z"/></svg>');
}
#addToHomeScreenBtn::before{
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path style="fill: white" d="M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z"/></svg>');
}
#cancelBtn {
    background-color: white;
    color: black;
    border: 1px solid black;
}
#cancelBtn::before{
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"/></svg>');
}

/* ####################################### End of MKG081018 Service Worker App Update Page */

#languageBar {
	background-color: rgb(14, 66, 128);
	padding: 10px 0 8px 0;
}

#languageBar .container {
	display: flex;
	flex-direction: row;
	justify-content: end;
}

#languageSelector {
	display: inline-block;
	background-color: transparent;
	color: #FFF;
	font-weight: bold;
	font-size: 18px;
	border:none;
	appearance: base-select;
	line-height: 1.3;
}
#languageSelector::picker(select) {
	appearance: base-select;
  border: none;
	padding: 12px;
}

#masthead {
	position: relative;
	background: #15191e;
	padding-bottom: 0;
}

#masthead::before {
	position: absolute;
	right: 0;
	top: 0;
	content: ' ';
	height: 100%;
	width: 50%;
	background-color: #491D6D;
}

#masthead .headerContainer {
	position: relative;
	width: 100%;
	height: calc(100vw / 3.75);
	padding: 0;
	background: transparent no-repeat url(../img/header_mobile_notched@2x.png) bottom center;
	background-size: cover;
}

/* Notched devices */
@supports(padding:max(0px)) {
    #masthead .headerContainer {
        height: calc(100vw / 3.75 + (env(safe-area-inset-top) / 2));
    }
}

#masthead .headerContainer .home {
	float: left;
	width: 30%;
	height: 100%;
}

#masthead .headerContainer .ibe {
	float: right;
	width: 20%;
	height: 100%;
}

.custom-navbar.navbar, #masthead{
	position: relative;
	z-index: 1;
}

#main-navbar {
	position: sticky;
	top: 0;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	width: 100%;
	padding: 0.6em 1em;
}

.frontpage #main-navbar {
    display: none;
}

#main-navbar:not(.collapse) {
    height: 100vh;
    padding-bottom: 0;
}

#main-navbar .mobile-back {
	width: 1.2rem;
	height: 2.4rem;
	margin: 2px 0 0 8px;
}

#main-navbar .mobile-back .cls-1{
	fill: none;
	stroke: #FFFFFF;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.back-button {
	display: none;
}

#main-navbar .mobile-main-section-title {
	font-size: 1.8rem;
	font-weight: 600;
	color: #FFF;
	flex-grow: 2;
	margin-left: 0.7em;
}

#main-navbar .mobile-main-section-title > div {
	color: #FFF;
}

#main-navbar .navbar-toggler {
	border: none;
	font-size: 2rem;
}

#main-navbar .navbar-toggler:focus,
#main-navbar .navbar-toggler:active {
	outline: none;
}

#main-navbar .navbarContainer {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#main-navbar .navbarContainer .back{
	font-size: 2.3rem;
    color: white;
    padding-left: 5px;
}

#main-navbar:not(.collapse) .container .back,
.homepage #main-navbar .navbarContainer .back {
	visibility: hidden;
}

#navbarText {
	width: 100vw;
	margin: 0.65em 0 0 0;
}

#navbarText ul li {
	border-bottom: 1px solid #2D3035;
	margin-left: -1em;
	margin-right: -1em;
}

.custom-navbar.navbar-expand-lg .navbar-nav .nav-link {
	position: relative;
	padding: 0.9em 2em 1.2em 1.2em;
	font-size: 16px;
	font-weight: 500;
	color: #FFF;
	background-color: #44474B;
}
.custom-navbar.navbar-expand-lg .navbar-nav .nav-link span {
	color: #FFF;
}

.custom-navbar.navbar-expand-lg .navbar-nav .nav-link svg {
	width: 0.75em;
	height: 1.5em;
	position: absolute;
	right: 1.2em;
	top: 0.8em;
}

.custom-navbar.navbar-expand-lg .navbar-nav .nav-link svg .cls-1 {
	fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Breadcrumbs */
/* Breadcrumbs */
.breadcrumbs {
	display: block;
	padding: 1em 1.2em;
}

.breadcrumbs h1 {
	display: none;
	font-size: 20px;
	font-weight: 600;
	color: #491D6D;
	margin-bottom: 0.9em;
}
.breadcrumbs h1 a {
	color: #491D6D;
	text-decoration: none;
}
.breadcrumbs h1 a:hover {
	color: #491D6D;
}
.breadcrumbs li {
	display: block;
	margin-bottom: 0.7em;
}

.breadcrumbs li:nth-child(2) { margin-left: 2.1em; }
.breadcrumbs li:nth-child(3) { margin-left: 4.2em; }
.breadcrumbs li:nth-child(4) { margin-left: 6.3em; }
.breadcrumbs li:nth-child(5) { margin-left: 8.4em; }

.breadcrumbs li a {
	display: inline;
	position: relative;
	font-size: 16px;
	color: #8A8C8E;
	transition: color 0.3s;
	padding: 0.4em 0 0 1.2em;
}
.breadcrumbs li a svg {
	display: block;
	position: absolute;
	top: 6px;
	left: 1px;
	width: 13px;
	height: 18px;
}
.breadcrumbs li a:hover {
	text-decoration: none;
	color: #2D3035;
}
.breadcrumbs li a .cls-1,
.breadcrumbs li a .cls-2 {
	stroke: #8a8c8e;
	transition: stroke 0.3s;
}
.breadcrumbs li a:hover .cls-1,
.breadcrumbs li a:hover .cls-2 {
	stroke: #2D3035;
}
.breadcrumbs li a > p,
.breadcrumbs li a > div {
	color: inherit;
	display: inline;
}

.branch:nth-child(5) .breadcrumbs li:last-child {
	display: block;
}

.outcome_info_container .branch-title {
    display: none;
}

.branch-title {
	font-size: 16px;
	color: #2D3035;
	padding: 1em 1.2em;
}

.img-ibe-institute {
    width: 55px;
    margin-top: 59px;
    float: right;
    margin-right: 55px;
    position: relative;
}

.list-group.custom-list-group {
	width: 16%;
	margin-bottom: 20px;
	margin-top: 0;
}

.custom-list-group {
    margin-left: 15px;
	text-align: center;
	float: left;
	margin-right: 23px;
}

.list-group-flush:first-child .list-group-item:first-child.border-new {
	border-top: 1px solid rgba(0,0,0,.125);
}

.list-group-flush:last-child .list-group-item:last-child.list-group-border {
	border-bottom: 1px solid rgba(0,0,0,.125);
}

.arrow-text {
	margin-left: 10px;
	color: #8a8c8e;
}

.custom-navbar-footer {
	background-color: #8a8c8e;
    height: 100px;
}

.label-concern {
    width: 100%;
    font-size: 22px;
    text-align: center;
}

.bottom-pane {
	text-align: center;
    width: 100%;
}

/* landing page */
.custom-navbar.landing-hidden > .container {
	visibility: hidden; /* removed by JS after Get Started clicked */
}

#wrap.landing-hidden {
	display: none;
}

#landingPage{
	position: relative;
	top:0;
	padding-left: 0;
	padding-right: 0;
	transition: all 0.5s ease-in-out;
}

.welcome-header {
	width: 100%;
	text-align: left;
	margin-top: 0px;
}
.welcome-click-header {
   display: none;
}
.welcome-top-header {
	margin-top: 0;
	background-color: #2d3035;
	color: #ffffff;
	font-size: 16px;
	padding: 1.1em 1.2em;
}

#landingPage .landingPageSection {
	display: none;
	opacity: 0;
	width: 100%;
    padding-top: 2em;
}

#landingPage #landing-using {
    padding-top: 0;
}

#landingPage #landing-main {
    padding: 0;
    margin: 0;
}

#landingPage .landingPageSection.active {
    display: block;
    opacity: 1;
    min-height: 60vh;
    overflow-x: hidden;
}

#landingPage .landingPageSection h1 {
    display: none;
}

#landingPage #landing-using table {
    margin: 0 1em 1em 1em;
}

#landingPage #landing-using tr {
    border-bottom: 1px solid #d2d2d2;
}

#landingPage #landing-using td,
#landingPage #landing-using th {
    padding: 20px 0 0 0;
}

#landingPage #landing-using td p {
    padding: 10px 0 30px 0;
    margin: 0;
}

#landingPage .landingPageSection p,
#landingPage .landingPageSection th,
#landingPage .landingPageSection td {
	font-size: 15px;
	line-height: 1.3;
    margin: 0 1em 1em 1em;
}

#landingPage #landing-cookies.landingPageSection th,
#landingPage #landing-cookies.landingPageSection td {
    border: 1px solid #EEE;
    padding: 0.5em 1em;
}

#landingPage #landing-cookies.landingPageSection th {
    background-color: #EEE;
    font-weight: bold;
}

#landingPage #landing-cookies.landingPageSection ul {
    margin-left: 2em;
}

#landingPage #landing-cookies.landingPageSection li {
    list-style: disc;
    font-size: 15px;
    line-height: 1.3;
    margin: 0 1em 1em 1em;
}

#landingPage #landing-cookies.landingPageSection h3 {
    font-size: 17px;
    font-weight: bold;
    margin: 0 1em 1em 1em;
}

#landingPage #landing-cookies.landingPageSection h4 {
    font-size: 15px;
    font-weight: bold;
}

#landingPage #landing-using img {
	width: 4em;
	height: 4em;
	margin-right: 1em;
}

#landingPage .landingPageSection p a,
#landingPage .landingPageSection p a:hover,
#landingPage .landingPageSection li a,
#landingPage .landingPageSection li a:hover {
	text-decoration: underline;
	font-weight: 600;
	color: inherit;
}

#landingPage .landingPageSection h4 {
	font-size: 22px;
	font-weight: 600;
	color: #491D6D;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #E2E2E2;
    margin: 0.6em 1em 1em 1em;
}

#landingPage .landing-icons-bx h4 {
	position: relative;
	width: 63vw;
	font-size: 20px;
	font-weight: 600;
	text-align: left;
	margin-top: 0px;
	color: #491d6d;
}

#landingPage .landing-icons-bx h4::after {
	content: ' ';
	position: absolute;
	right: 1.1em;
	top: -0.3em;
	background: transparent no-repeat url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAwCAYAAADgvwGgAAAACXBIWXMAABYlAAAWJQFJUiTwAAABkElEQVRYhb3Y0W2DMBAG4L+o7+kEUTdoR+CZl44QsgDqCB0BsUDICH3hmRHaDSomSCagcnRNiTkb29zl3ohMPp1tzgcP4zii2FY1gGcAH93QfEEpMvpbA70B6Itt9aqNlQC+AWw0wQvWDc0JQK4N/mV2FzCbXmiDmf2DAyxnd0pgFngk8CABXp4zXxTbqgWwoyH7bmhaz3BvsJlZWZaUIdZmuIhJgkGYFBiMOcCo9YvCJuCeLncxYDRGYJsCJmGpYDKWAi4+1CFBO/NAQ80GeqcqJI/hH6ypvJm6mtugGEagOSF6F7hqzeyg/sUU8DOAFzoxnlQwLICi0zgNbkrVMDCg+DT6Qg3jplEF4yDzCIhjLgjS0+iDRDEqV05IDJsU4g0V4hlk4nF2Zzpk4kgnORurMouBsAaLhZKxFAgpa2a148EQYjNj+v6oRjUYYyBvc8NFECb1JrOISb4yOTcIHeW1FOTECOqphzhTH7gKYjEGyqW++tysmSZ0g2lDV+we0BUDYBZfFZpiPwA+NSEA+AUWsAiufpXyAgAAAABJRU5ErkJggg==') center center;
	background-size: contain;
	width: 0.8em;
	height: 1.6em;
}

#landingPage #landing-main h4 {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

#landingPage #landing-using svg {
    width: 4em;
    height: 4em;
    margin-right: 2em;
}

#landingPage .landing-icons-bx {
	display: flex;
	justify-content: space-between;
	position: relative;
	width: 100vw;
	height: 20vh;
	max-height: 180px;
	border-bottom: 1px solid #8a8c8e;
	align-items: center;
	padding: 0 0 0 1.2em;
}

/* footer */
.frontpage #footer-quick-nav-container {
    display: none !important;
}

.footer {
	position: sticky;
	bottom: -20rem;
	width: 100%;
	background-color: #2d3035;
}

.footer > div {
	position: relative;
	max-width: 1200px;
	margin: 0 1.8rem;
    padding: 0;
}

.footer > div.new-desktop-footer {
	border-bottom: 1px solid #676767;
	padding-top: 4.5em;
	padding-bottom: 1.8em;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
}

.font-bold {
	font-weight: 600;
}

.footer > div.new-desktop-footer ul {
	justify-content: flex-start;
    margin-bottom: 2em;
    flex-direction: column;
}

.footer ul {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.footer ul:last-child {
    margin-bottom: 0;
}

.footer li {
	position: relative;
	font-size: 14px;
	color: #c7c7c7;
}

.footer li:first-child {
	padding-left: 0;
	margin-left: 0;
    margin-bottom: 1.5em;
}

.footer li.new-li-right {
	text-align: right;
}

.footer li.phone {
	margin-right: 2em;
	padding-left: 2.3em;
}

.footer li.phone::before {
	content: ' ';
	position: absolute;
	top: -0.3em;
	left: 0;
	width: 17px;
	height: 24px;
	background: transparent no-repeat url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAwCAMAAABDh1hgAAAAflBMVEUAAACJi46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji44OR03aAAAAKXRSTlMA+AYl50jL4NqXgjIPnZBlPx4a03JrVSwK7cCqfHgU88WIXrOkTzevtr643OgAAAGKSURBVDjLjZPpkoJADIQJDDcKch8Cgqtuv/8L7sCAWwKpsn+YFH6VDknQvpL+8AavTbPR1DnkjlU3hjFRRcUzeuShjccx0iBdsiuux4jAZckynI8RVGs2wmWQ5L+rO4PUa2YgYZDbe0Ag1miVjfgYEWsWCwYh6LNLmkB57uXAmMIZ6E/xMfJCrorxW/TgzQhprEzUyq9gkQA0ObiyGCsLpvyN4PDIFa7aeMQiBYQiX3wZZ3bqCAaLtPiZgguXRWJQJ8MFdGGZRr3wCT8s8kRVTmUIPsvU6vYHWCwSoQ9kKG2kLPOLs9oXGfz4qFAdW+xJnNW+A5v53NR/2RR9Qq6+mO7gbPrZKgQ95TQT4FTurZJSRcoNB4JgbYetW2jm6ELKCiRWmRvmUi2HlznClQWDuzQLNgMkhB8PUoLYrGQExo8HRr071xSbOrqN/XWh/eiPoG2VAadlBewJ5QTLePdyvFbfRr821DDn3DWAFc00KGZ2mgsJZb5/w6BxKluBSXag8dL90BvCTvtOfxZXIezA3jxRAAAAAElFTkSuQmCC') center center;
	background-size: contain;
}

.footer li.email {
    padding-left: 2.3em;
    margin-left: 0;
}

.footer li.email::before {
	content: ' ';
	position: absolute;
	top: 0;
	left: 0;
	width: 23px;
	height: 17px;
	background: transparent no-repeat url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAAAiCAMAAAAXpRt+AAAAaVBMVEUAAACJi46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46Ji46JA0FrAAAAInRSTlMAig2QVEAH9+IqE3fyyMCtRzEY6raln5hN25p7cGteISAF3aJXdwAAAO1JREFUOMvt0Mt2gjAUheGN0hMgaoKAeL/s93/IIu3qWRQa0pkD/yF8LLIDcW0SV+sEuDG+G7AgmSXzZSQXT14bbgqEKzY09RdflhUPeVDnB1bl8ptju+bKB7Rfcb3FD4c05PlPfSYbgfKuE7mTSSw78gQMOVIdPBqZYsRRZszy8cjuaYkJ3g/eY9i+H/mb6yntQFtdpHzwuhEd2ejnU1x/rocLcJ2m00NcL04vNswhR7JOavIoCHDtYkiaCxDHUVzttUAM1978tbiL5O7JHzR5lM4NHwBaVtZ/zOVtxRZd4hiXE/TdfTqfv+P/fQKmtyNu8MG59gAAAABJRU5ErkJggg==') center center;
	background-size: contain;
}

.footer li a {
	text-decoration: none;
	color: #c7c7c7;
}

.footer .footer-second-line {
	border: 0;
	padding: 2.3em 0 4.2em 0;
}

.footer .footer-second-line ul {
    flex-direction: column;
}

.footer .footer-second-line li {
	font-size: 12px;
    padding-left: 0;
    margin-left: 0;
}

#iOSinstallInstructions {
    position: fixed;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    z-index: 10;
    bottom: 0;
    left: 0;
    width: 100vw;
    padding: 0 1em;
}
#iOSinstallInstructions.active {
    display: flex;
}

#iOSinstallInstructions .close {
    position: absolute;
    z-index: 101;
    opacity: 1;
    top: -1em;
    right: 0;
    font-weight: 200;
    font-size: 1.8rem;
    padding: 0.4em 0.6em 0.5em 0.6em;
    border-radius: 2rem;
    background-color: #333;
    color: #FFF;
}

#iOSinstallInstructions::after {
    content: ' ';
    display: block;
    width: 3em;
    height: 3em;
    z-index: 90;
    transform: rotate(45deg);
    bottom: 0.5em;
    left: 50%;
    position: absolute;
    margin-left: -2.12em;
    background-color: #f1f7fe;
}

#iOSinstallInstructions .inner {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 1em 1.2em 1.4em 1.2em;
    background-color: #f1f7fe;
    border-radius: 10px;
    margin-bottom: 2em;
    z-index: 100;
}

#iOSinstallInstructions .inner::before {
    content: ' ';
    width: 3em;
    height: 2.6em;
    background: #999 no-repeat center center url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjAQMAAAAkFyEaAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAABhJREFUCNdjYGB4AMS0I/8DwQNkktY2AgB5PyqV/KPKTAAAAABJRU5ErkJggg==');
    background-size: 18px 18px;
    border-radius: 3px;
    margin-right: 1em;
    margin-top: 0.4em;
}

#iOSinstallInstructions p {
    font-size: 1em;
    color: #333;
    line-height: 1.4;
}

#iOSinstallInstructions .inner span {
    display: inline-block;
    width: 19px;
    height: 26.5px;
    background: transparent no-repeat center center url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACYAAAA1BAMAAADfUYSoAAAALVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADBoCg+AAAADnRSTlMAj/lN/HGJfXZfV1Egg3jAueEAAABvSURBVDjLY4ADUQYMwPiuAUNM7t0LDGWP3r0rQFem/G7Kc3RlBu84/S6gKWN4x7DkGZoyoBiXXwKqMqAYw6aHSGJBBmAxblUkMR4GsBjDATTXvAMRlIu9gwAgA87GLoahd1SMamIMo2JUE8MAWMUAK1up/pyH8hUAAAAASUVORK5CYII=');
    background-size: contain;
    margin-bottom: -0.5em;
}

#version {
    position: absolute;
    bottom: 0.5em;
    right: 0;
    font-size: 0.5em;
    color: #FFF;
    opacity: 0.5;
}

#cookieContainer {
    display: none;
    background-color: #000;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

body.cookieNotice {
    overflow: hidden;
}

body.cookieNotice #cookieContainer {
    display: flex;
}

#cookieContainer .container {
    width: 100%;
    height: 100%;
    max-width: 700px;
    background-color: #FFF;
    padding: 2em 2.5em;
}

#cookieContainer h1 {
    font-weight: bold;
    font-size: 2.4rem;
    margin-bottom: 1em;
}

#cookieContainer th,
#cookieContainer td,
#cookieContainer p {
    font-size: 1.6rem;
    margin-bottom: 1em;
    line-height: 1.35;
}

#cookieContainer p:last-child {
    margin-bottom: 0;
}

#cookieContainer footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 3em;
}

#cookieContainer .btn {
    border-radius: 0;
    background-color: #898b8d;
    margin-right: 1em;
    font-size: 1.6rem;
    border: none;
    padding: 0.8em 1.5em 1em 1.5em;
    margin-bottom: 2em;
}

#cookieContainer .btn::last-child {
    margin-right: 0;
}

#cookieContainer .btn-primary {
    background-color: #491d6d;
}

#cookieContainer .container .panel {
    display: none;
}

#cookieContainer .infoPanel #cookieViewInfo {
    display: block;
}

#cookieContainer .settingsPanel #cookieViewSettings {
    display: block;
}

.toggle {
    position: relative;
    width: 4em;
    height: 2em;
    border: 1px solid #333;
    border-radius: 2em;
    background-color: #EEE;
    transition: background-color 0.3s;
    overflow: hidden;
    cursor: pointer;
}

.toggle::before {
    position: absolute;
    content: ' ';
    display: block;
    width: 2em;
    height: 2em;
    top: -1px;
    left: -1px;
    background-color: #333;
    border-radius: 2em;
    transition: left 0.3s;
}

.toggle[data-state="active"] {
    background-color: rgba(0, 237, 67, 0.6);
}

.toggle[data-state="active"]::before {
    left: calc(2em + 1px);
}

body .en {
	display: none;
}

body .fr {
	display: none;
}

body.en .en {
	display: block;
}

body.fr .fr {
	display: block;
}

@media screen and (max-width:992px) {
	.mobile-hidden {
		display: none !important;
	}
}